nf-core_modules/tests/config/nextflow.config
2021-03-18 12:00:32 +01:00

26 lines
495 B
Text

params {
outdir = "output/"
publish_dir_mode = "copy"
enable_conda = false
singularity_pull_docker_container = false
}
process {
cpus = 2
memory = 6.GB
time = 48.h
}
if ("$PROFILE" == "singularity") {
singularity.enabled = true
singularity.autoMounts = true
} else if ("$PROFILE" == "conda") {
params.enable_conda = true
} else {
docker.enabled = true
docker.runOptions = '-u \$(id -u):\$(id -g)'
}
manifest {
nextflowVersion = '!>=20.11.0-edge'
}