mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
bdee7804ca
* build: Bump version to 21.04.0 Recent stable release https://github.com/nextflow-io/nextflow/releases/tag/v21.04.0 * Update README.md Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
29 lines
578 B
Text
29 lines
578 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)'
|
|
}
|
|
|
|
// Load test_data.config containing paths to test data
|
|
includeConfig 'test_data.config'
|
|
|
|
manifest {
|
|
nextflowVersion = '!>=21.04.0'
|
|
}
|