mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
21 lines
343 B
Text
21 lines
343 B
Text
|
|
||
|
params {
|
||
|
outdir = "output/"
|
||
|
publish_dir_mode = "copy"
|
||
|
conda = false
|
||
|
}
|
||
|
|
||
|
profiles {
|
||
|
conda {
|
||
|
params.conda = true
|
||
|
}
|
||
|
docker {
|
||
|
docker.enabled = true
|
||
|
docker.runOptions = '-u \$(id -u):\$(id -g)'
|
||
|
}
|
||
|
singularity {
|
||
|
singularity.enabled = true
|
||
|
singularity.autoMounts = true
|
||
|
}
|
||
|
}
|