nf-core_modules/tests/config/nextflow.config
Edmund Miller b96f2d6a5e test(config): One config to rule them all
Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
2020-11-24 20:26:04 +00:00

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
}
}