2020-08-07 09:06:45 +00:00
|
|
|
params {
|
2020-08-07 14:05:25 +00:00
|
|
|
outdir = "output/"
|
|
|
|
publish_dir_mode = "copy"
|
2020-10-15 09:47:15 +00:00
|
|
|
enable_conda = false
|
2021-02-04 01:18:52 +00:00
|
|
|
singularity_pull_docker_container = false
|
2020-08-07 09:06:45 +00:00
|
|
|
}
|
|
|
|
|
2021-02-16 13:18:29 +00:00
|
|
|
process {
|
|
|
|
cpus = 2
|
2021-03-22 22:27:30 +00:00
|
|
|
memory = 3.GB
|
2021-04-16 12:08:03 +00:00
|
|
|
time = 2.h
|
2021-02-16 13:18:29 +00:00
|
|
|
}
|
|
|
|
|
2021-02-02 23:32:21 +00:00
|
|
|
if ("$PROFILE" == "singularity") {
|
2021-02-02 17:55:41 +00:00
|
|
|
singularity.enabled = true
|
|
|
|
singularity.autoMounts = true
|
|
|
|
} else if ("$PROFILE" == "conda") {
|
|
|
|
params.enable_conda = true
|
2021-02-02 23:32:21 +00:00
|
|
|
} else {
|
|
|
|
docker.enabled = true
|
|
|
|
docker.runOptions = '-u \$(id -u):\$(id -g)'
|
2020-08-07 09:06:45 +00:00
|
|
|
}
|
2021-03-18 11:00:32 +00:00
|
|
|
|
2021-03-24 13:07:37 +00:00
|
|
|
// Load test_data.config containing paths to test data
|
|
|
|
includeConfig 'test_data.config'
|
|
|
|
|
2021-03-18 11:00:32 +00:00
|
|
|
manifest {
|
2021-05-03 23:38:29 +00:00
|
|
|
nextflowVersion = '!>=21.04.0'
|
2021-03-18 11:00:32 +00:00
|
|
|
}
|