You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/topp/IsobaricWorkflow.cpp
+57-9Lines changed: 57 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@
31
31
#include<OpenMS/FORMAT/ExperimentalDesignFile.h>
32
32
#include<OpenMS/FORMAT/FileHandler.h>
33
33
#include<OpenMS/FORMAT/MzMLFile.h>
34
+
#include<OpenMS/FORMAT/MzTabFile.h>
34
35
#include<OpenMS/KERNEL/MSExperiment.h>
35
36
#include<OpenMS/PROCESSING/ID/IDFilter.h>
36
37
@@ -190,18 +191,27 @@ class TOPPIsobaricWorkflow :
190
191
setValidFormats_("in_id", {"idXML"});
191
192
registerInputFile_("exp_design", "<file>", "", "experimental design file (optional). If not given, the design is assumed to be unfractionated.", false);
192
193
setValidFormats_("exp_design", {"tsv"});
193
-
registerOutputFile_("out", "<file>", "", "output consensusXML or mzTab file with quantitative information");
registerOutputFile_("out_mzTab", "<file>", "", "output mzTab file with quantitative information");
197
+
setValidFormats_("out_mzTab", {"mzTab"});
195
198
registerFlag_("calculate_id_purity", "Calculate the purity of the precursor ion based on the MS1 spectrum. Only used for MS3, otherwise it is the same as the quant. precursor purity.");
196
199
registerIntOption_("max_parallel_files", "<num>", 1, "Maximum number of files to load in parallel.", false);
197
200
registerFlag_("protein_inference", "Infer and group proteins");
198
201
registerFlag_("protein_quant", "Quantify proteins from the peptide quantification. Implies protein inference.");
199
-
registerDoubleOption_("peptide_score", "<score>", NAN, "The score which should be reached by a peptide hit to be kept. (use 'NAN' to disable this filter)", false);
202
+
registerDoubleOption_("psm_score", "<score>", NAN, "The score which should be reached by a peptide hit to be kept. (use 'NAN' to disable this filter)", false);
200
203
registerDoubleOption_("protein_score", "<score>", NAN, "The score which should be reached by a protein hit to be kept. All proteins are filtered based on their singleton scores irrespective of grouping. Use in combination with 'delete_unreferenced_peptide_hits' to remove affected peptides. (use 'NAN' to disable this filter)", false);
201
204
registerFlag_("delete_unreferenced_peptide_hits", "Peptides not referenced by any protein are deleted in the IDs.");
202
205
// registerFlag_("remove_decoys", "Remove decoys according to the information in the user parameters.");
203
206
registerStringOption_("inference_method", "<option>", "aggregation", "Methods used for protein inference", false);
registerStringOption_("picked_decoy_string", "<decoy_string>", "", "If using picked protein FDRs, which decoy string was used? Leave blank for auto-detection.", false, true);
211
+
registerStringOption_("picked_decoy_prefix", "<option>", "prefix", "If using picked protein FDRs, was the decoy string a prefix or suffix? Ignored during auto-detection.", false, true);
0 commit comments