mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
b96f2d6a5e
Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
20 lines
357 B
Text
20 lines
357 B
Text
|
|
params {
|
|
outdir = "output/"
|
|
publish_dir_mode = "copy"
|
|
enable_conda = false
|
|
}
|
|
|
|
profiles {
|
|
conda {
|
|
params.enable_conda = true
|
|
}
|
|
docker {
|
|
docker.enabled = true
|
|
docker.runOptions = '-u \$(id -u):\$(id -g)'
|
|
}
|
|
singularity {
|
|
singularity.enabled = true
|
|
singularity.autoMounts = true
|
|
}
|
|
}
|