nf-core_modules/tests/config/nextflow.config

27 lines
495 B
Text
Raw Normal View History

2020-08-07 05:06:45 -04:00
params {
2020-08-07 10:05:25 -04:00
outdir = "output/"
publish_dir_mode = "copy"
2020-10-15 05:47:15 -04:00
enable_conda = false
2021-02-03 20:18:52 -05:00
singularity_pull_docker_container = false
2020-08-07 05:06:45 -04:00
}
process {
cpus = 2
memory = 6.GB
time = 48.h
}
2021-02-02 18:32:21 -05:00
if ("$PROFILE" == "singularity") {
singularity.enabled = true
singularity.autoMounts = true
} else if ("$PROFILE" == "conda") {
params.enable_conda = true
2021-02-02 18:32:21 -05:00
} else {
docker.enabled = true
docker.runOptions = '-u \$(id -u):\$(id -g)'
2020-08-07 05:06:45 -04:00
}
2021-03-18 07:00:32 -04:00
manifest {
nextflowVersion = '!>=20.11.0-edge'
}