Skip to content
Snippets Groups Projects
Commit c80eea59 authored by Olivier Langella's avatar Olivier Langella
Browse files

debug message

parent 06d9237d
No related branches found
No related tags found
No related merge requests found
......@@ -28,8 +28,8 @@ SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Xml_EXECUTABLE_COMPILE_FLAGS} ${Qt5
#sudo apt-get install libpappsomspp-dev
#FIND_PACKAGE( Pappsomspp REQUIRED )
# SET (PAPPSOMSPP_DIR "/home/olivier/eclipse/git/pappsomspp")
SET (PAPPSOMSPP_DIR "/home/langella/developpement/git/pappsomspp")
SET (PAPPSOMSPP_DIR "/home/olivier/eclipse/git/pappsomspp")
# SET (PAPPSOMSPP_DIR "/home/langella/developpement/git/pappsomspp")
SET (PAPPSOMSPP_INCLUDE_DIR "${PAPPSOMSPP_DIR}/src")
SET (PAPPSOMSPP_QT4_LIBRARY "${PAPPSOMSPP_DIR}/cbuild/src/libpappsomspp-qt4.so")
......
......@@ -116,12 +116,14 @@ unsigned int IdentificationGroup::countProteinMatch(ValidationState state) const
}
void IdentificationGroup::updateAutomaticFilters(const AutomaticFilterParameters & automatic_filter_parameters) {
qDebug() << "IdentificationGroup::updateAutomaticFilters begin" ;
for (auto & p_protein_match : _protein_match_list) {
p_protein_match->updateAutomaticFilters(automatic_filter_parameters);
}
if (_p_grp_experiment != nullptr) {
}
qDebug() << "IdentificationGroup::updateAutomaticFilters end" ;
}
ProteinMatch * IdentificationGroup::getProteinMatchInstance(const QString accession) {
......
......@@ -64,7 +64,7 @@ bool ProteinMatch::contains(PeptideMatch * peptide_match) const {
}
void ProteinMatch::updateAutomaticFilters(const AutomaticFilterParameters & automatic_filter_parameters) {
//qDebug() <<"ProteinMatch::updateAutomaticFilters begin " ;
qDebug() <<"ProteinMatch::updateAutomaticFilters begin " ;
_proxy_valid = false;
unsigned int number_of_valid_peptides =0;
bool cross_sample = automatic_filter_parameters.getFilterCrossSamplePeptideNumber();
......@@ -91,6 +91,7 @@ void ProteinMatch::updateAutomaticFilters(const AutomaticFilterParameters & auto
}
}
qDebug() <<"ProteinMatch::updateAutomaticFilters begin 2" ;
if (number_of_valid_peptides == 0) {
_proxy_valid = false;
......@@ -104,7 +105,7 @@ void ProteinMatch::updateAutomaticFilters(const AutomaticFilterParameters & auto
}
}
}
//qDebug() <<"ProteinMatch::updateAutomaticFilters end " << number_of_valid_peptides ;
qDebug() <<"ProteinMatch::updateAutomaticFilters end " << number_of_valid_peptides ;
}
const ProteinXtpSp & ProteinMatch::getProteinXtpSp() const {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment