nf-core_modules/tests/config/nextflow.config
Jose Espinosa-Carrasco cdff9a056d
Increase conda build time (#489)
* Add module description to yml

* Increase conda build time
2021-05-10 12:23:52 +01:00

32 lines
669 B
Text

params {
outdir = "output/"
publish_dir_mode = "copy"
enable_conda = false
singularity_pull_docker_container = false
}
process {
cpus = 2
memory = 3.GB
time = 2.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)'
}
// Increase time available to build Conda environment
conda { createTimeout = "120 min" }
// Load test_data.config containing paths to test data
includeConfig 'test_data.config'
manifest {
nextflowVersion = '!>=21.04.0'
}