nf-core_modules/tests/config/nextflow.config

18 lines
456 B
Text
Raw Normal View History

2020-08-07 09:06:45 +00:00
params {
2020-08-07 14:05:25 +00:00
outdir = "output/"
publish_dir_mode = "copy"
2020-10-15 09:47:15 +00:00
enable_conda = false
singularity_pull_docker_container = false
2020-08-07 09:06:45 +00:00
}
if("$PROFILE" == "docker") {
docker.enabled = true
docker.runOptions = '-u \$(id -u):\$(id -g)'
} else if ("$PROFILE" == "singularity") {
singularity.enabled = true
singularity.autoMounts = true
singularity.runOptions = '-B /tmp/'
} else if ("$PROFILE" == "conda") {
params.enable_conda = true
2020-08-07 09:06:45 +00:00
}