Skip to content

Commit

Permalink
Merge pull request #315 from jonasscheid/bump-ms2rescore-container
Browse files Browse the repository at this point in the history
Bump ms2rescore container with new timsTOF model
  • Loading branch information
jonasscheid committed Mar 12, 2024
2 parents daa4826 + 142fb98 commit fec2a66
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/ms2rescore_cli.py
Expand Up @@ -135,7 +135,7 @@ def filter_out_artifact_psms(
"-o", "--output_path", help="Path and stem for output file names (default: derive from identification file)"
)
@click.option("-l", "--log_level", help="Logging level (default: `info`)", default="info")
@click.option("-n", "--processes", help="Number of parallel processes available to MS²Rescore", type=int, default=1)
@click.option("-n", "--processes", help="Number of parallel processes available to MS²Rescore", type=int, default=16)
@click.option("-f", "--fasta_file", help="Path to FASTA file")
@click.option(
"-fg",
Expand Down
6 changes: 3 additions & 3 deletions modules/local/ms2rescore.nf
Expand Up @@ -2,10 +2,10 @@ process MS2RESCORE {
tag "$meta.id"
label 'process_high'

conda "bioconda::ms2rescore=3.0.0"
conda "bioconda::ms2rescore=3.0.1"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/ms2rescore:3.0.0--pyhdfd78af_0':
'biocontainers/ms2rescore:3.0.0--pyhdfd78af_0' }"
'https://depot.galaxyproject.org/singularity/ms2rescore:3.0.1--pyhdfd78af_2':
'biocontainers/ms2rescore:3.0.1--pyhdfd78af_2' }"

// userEmulation settings when docker is specified
containerOptions = (workflow.containerEngine == 'docker') ? '-u $(id -u) -e "HOME=${HOME}" -v /etc/passwd:/etc/passwd:ro -v /etc/shadow:/etc/shadow:ro -v /etc/group:/etc/group:ro -v $HOME:$HOME' : ''
Expand Down

0 comments on commit fec2a66

Please sign in to comment.