Skip to content

Commit

Permalink
Merge pull request #293 from ypriverol/dev
Browse files Browse the repository at this point in the history
updating percolator for testing
  • Loading branch information
ypriverol committed Sep 27, 2023
2 parents acdf2f3 + 222d976 commit 93f1bf8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions modules/local/openms/extractpsmfeatures/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ process EXTRACTPSMFEATURES {
label 'process_single'
label 'openms'

conda "bioconda::openms=2.9.1"
conda "openms::openms-thirdparty=3.1.0"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/openms:2.9.1--h135471a_0' :
'quay.io/biocontainers/openms:2.9.1--h135471a_0' }"
'ghcr.io/openms/openms-executables-sif:latest' :
'ghcr.io/openms/openms-executables:latest' }"

input:
tuple val(meta), path(id_file)
Expand Down
8 changes: 4 additions & 4 deletions modules/local/openms/thirdparty/percolator/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ process PERCOLATOR {
tag "$meta.mzml_id"
label 'process_medium'

conda "bioconda::openms-thirdparty=2.9.1"
conda "openms::openms-thirdparty=3.1.0"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/openms-thirdparty:2.9.1--h9ee0642_1' :
'quay.io/biocontainers/openms-thirdparty:2.9.1--h9ee0642_1' }"
'ghcr.io/openms/openms-executables-sif:latest' :
'ghcr.io/openms/openms-executables:latest' }"

input:
tuple val(meta), path(id_file)
Expand Down Expand Up @@ -33,7 +33,7 @@ process PERCOLATOR {
cat <<-END_VERSIONS > versions.yml
"${task.process}":
PercolatorAdapter: \$(PercolatorAdapter 2>&1 | grep -E '^Version(.*)' | sed 's/Version: //g')
PercolatorAdapter: \$(PercolatorAdapter 2>&1 | grep -E '^Version(.*)' | sed 's/Version: //g' | cut -d ' ' -f 1)
percolator: \$(percolator -h 2>&1 | grep -E '^Percolator version(.*)' | sed 's/Percolator version //g')
END_VERSIONS
"""
Expand Down

0 comments on commit 93f1bf8

Please sign in to comment.