nf-core_modules/software/samtools/stats/test/nextflow.config

21 lines
357 B
Text
Raw Normal View History

2020-08-07 14:23:39 +00:00
params {
outdir = "output/"
publish_dir_mode = "copy"
2020-10-15 09:47:15 +00:00
enable_conda = false
2020-08-07 14:23:39 +00:00
}
profiles {
conda {
2020-10-15 09:47:15 +00:00
params.enable_conda = true
2020-08-07 14:23:39 +00:00
}
docker {
docker.enabled = true
docker.runOptions = '-u \$(id -u):\$(id -g)'
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
}
}