forked from bigbio/quantms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.config
More file actions
29 lines (24 loc) · 1.42 KB
/
Copy pathdev.config
File metadata and controls
29 lines (24 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Nextflow config file for running with nightly dev. containers (mainly for OpenMS)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Only overwrites the used containers. E.g., uses the OpenMS nightly
executable and thirdparty containers.
Use as follows:
nextflow run bigbio/quantms -profile dev,<docker/singularity> [--outdir <OUTDIR>]
-------------------------------------------------------------------------------------------
*/
params {
config_profile_name = 'Development profile'
config_profile_description = 'To use nightly development containers'
}
process {
withLabel: openms {
// Conda is no longer supported
container = {"${ ( workflow.containerEngine == 'singularity' || workflow.containerEngine == 'apptainer' ) && !task.ext.singularity_pull_docker_container ? 'oras://ghcr.io/bigbio/openms-tools-thirdparty-sif:2026.07.02' : 'ghcr.io/bigbio/openms-tools-thirdparty:2026.07.02' }"}
}
// ONSITE uses its own container (not OpenMS thirdparty)
withName: '.*:PHOSPHO_SCORING:ONSITE' {
container = {"${ ( workflow.containerEngine == 'singularity' || workflow.containerEngine == 'apptainer' ) && !task.ext.singularity_pull_docker_container ? 'oras://ghcr.io/bigbio/pyonsite-sif:0.0.5' : 'ghcr.io/bigbio/pyonsite:0.0.5' }"}
}
}