Skip to content

Commit

Permalink
adjust to new args in idfilter
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasscheid committed Feb 19, 2025
1 parent 1d83d7a commit ecb3b48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ process {
"-remove_decoys",
"-precursor:length '${params.peptide_min_length}:${params.peptide_max_length}'",
"-delete_unreferenced_peptide_hits",
(params.fdr_threshold == '0.01') ? "-score:pep 0.05" : "-score:pep " + params.fdr_threshold
(params.fdr_threshold == '0.01') ? "-score:peptide 0.05" : "-score:peptide " + params.fdr_threshold
].join(' ').trim()
publishDir = [
path: {"${params.outdir}/intermediate_results/rescoring"},
Expand Down Expand Up @@ -190,7 +190,7 @@ process {
"-remove_decoys",
"-precursor:length '${params.peptide_min_length}:${params.peptide_max_length}'",
"-delete_unreferenced_peptide_hits",
(params.fdr_threshold == '0.01') ? "-score:pep 0.05" : "-score:pep " + params.fdr_threshold
(params.fdr_threshold == '0.01') ? "-score:peptide 0.05" : "-score:peptide " + params.fdr_threshold
].join(' ').trim()
publishDir = [
path: {"${params.outdir}/intermediate_results/rescoring"},
Expand Down

0 comments on commit ecb3b48

Please sign in to comment.