@@ -234,6 +234,8 @@ class TOPPIsobaricWorkflow :
234234 registerSubsection_ (qm.second ->getMethodName (), String (" Algorithm parameters for " ) + quant_method_names_[qm.second ->getMethodName ()]);
235235 }
236236 Param pq_defaults = PeptideAndProteinQuant ().getDefaults ();
237+ pq_defaults.setValue (" top:include_all" , " true" );
238+ pq_defaults.addTag (" top:include_all" , " advanced" );
237239 Param bpi_defaults = BasicProteinInferenceAlgorithm ().getDefaults ();
238240 Param bayes_defaults = BayesianProteinInferenceAlgorithm ().getDefaults ();
239241
@@ -539,7 +541,7 @@ class TOPPIsobaricWorkflow :
539541 IDFilter::filterHitsByScore (prot_ids, pro_score);
540542 }
541543
542- if (! std::isnan (psm_score))
544+ if (!std::isnan (psm_score))
543545 {
544546 OPENMS_LOG_INFO << " Filtering by PSM score (better than " << psm_score << " )..." << endl;
545547 IDFilter::filterHitsByScore (pep_ids, psm_score);
@@ -766,7 +768,7 @@ class TOPPIsobaricWorkflow :
766768 " No proteins left after FDR filtering. Please check the log and adjust your settings." );
767769 }
768770
769- if (! greedy_group_resolution && ! groups)
771+ if (!greedy_group_resolution && !groups)
770772 {
771773 for (auto & f : cmap)
772774 {
@@ -775,7 +777,6 @@ class TOPPIsobaricWorkflow :
775777 IDFilter::keepUniquePeptidesPerProtein (cmap.getUnassignedPeptideIdentifications ());
776778 }
777779
778- // FileHandler().storeConsensusFeatures("workflow_tmp.consensusXML", cmap);
779780
780781 PeptideAndProteinQuant prot_quantifier;
781782 prot_quantifier.setParameters (pq_param);
0 commit comments