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
|
|
|
}
|
|
|
|
|
2021-02-16 08:18:29 -05:00
|
|
|
process {
|
2021-11-26 02:58:40 -05:00
|
|
|
cpus = 2
|
|
|
|
memory = 3.GB
|
|
|
|
time = 2.h
|
2021-02-16 08:18:29 -05:00
|
|
|
}
|
|
|
|
|
2021-02-02 18:32:21 -05:00
|
|
|
if ("$PROFILE" == "singularity") {
|
2021-02-02 12:55:41 -05:00
|
|
|
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
|
2021-05-27 13:29:17 -04:00
|
|
|
docker.userEmulation = true
|
2022-05-16 08:39:58 -04:00
|
|
|
docker.runOptions = "--platform linux/x86_64"
|
2020-08-07 05:06:45 -04:00
|
|
|
}
|
2021-03-18 07:00:32 -04:00
|
|
|
|
2021-05-10 07:23:52 -04:00
|
|
|
// Increase time available to build Conda environment
|
|
|
|
conda { createTimeout = "120 min" }
|
|
|
|
|
2021-03-24 09:07:37 -04:00
|
|
|
// Load test_data.config containing paths to test data
|
|
|
|
includeConfig 'test_data.config'
|
|
|
|
|
2021-03-18 07:00:32 -04:00
|
|
|
manifest {
|
2022-03-14 09:34:22 -04:00
|
|
|
nextflowVersion = '!>=21.10.0'
|
2021-03-18 07:00:32 -04:00
|
|
|
}
|