Skip to content

Commit 15bff40

Browse files
authored
Merge pull request #694 from ypriverol/feat/biosaur2-seeding
feat: expose Biosaur2 as alternative feature seeding algorithm for LFQ
2 parents 8427ac3 + 831eb6b commit 15bff40

3 files changed

Lines changed: 9 additions & 0 deletions

File tree

modules/local/openms/proteomicslfq/main.nf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ process PROTEOMICSLFQ {
4848
${feature_with_id_min_score} \\
4949
${feature_without_id_min_score} \\
5050
-mass_recalibration ${params.mass_recalibration} \\
51+
-Seeding:algorithm ${params.lfq_seeding_algorithm} \\
5152
-Seeding:intThreshold ${params.lfq_intensity_threshold} \\
5253
-protein_quantification ${params.protein_quant} \\
5354
-alignment_order ${params.alignment_order} \\

nextflow.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,7 @@ params {
185185
protein_inference_method = 'aggregation'
186186
protein_quant = 'unique_peptides'
187187
quantification_method = 'feature_intensity'
188+
lfq_seeding_algorithm = 'multiplex' // Feature seeding: 'multiplex' (default) or 'biosaur2'
188189
mass_recalibration = false
189190
alignment_order = 'star'
190191
quantify_decoys = false

nextflow_schema.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1064,6 +1064,13 @@
10641064
"enum": ["feature_intensity", "spectral_counting"],
10651065
"fa_icon": "fas fa-list-ol"
10661066
},
1067+
"lfq_seeding_algorithm": {
1068+
"type": "string",
1069+
"description": "Feature detection seeding algorithm for ProteomicsLFQ. 'multiplex' uses FeatureFinderMultiplex (default), 'biosaur2' uses the Biosaur2 algorithm.",
1070+
"default": "multiplex",
1071+
"enum": ["multiplex", "biosaur2"],
1072+
"fa_icon": "fas fa-seedling"
1073+
},
10671074
"mass_recalibration": {
10681075
"type": "boolean",
10691076
"description": "Recalibrates masses based on precursor mass deviations to correct for instrument biases. (default: 'false')",

0 commit comments

Comments
 (0)