nf-core_modules/software/fastqc/test/nextflow.config

21 lines
343 B
Text
Raw Normal View History

2020-08-07 08:59:19 +00:00
2020-08-07 09:06:45 +00:00
params {
2020-08-07 14:05:25 +00:00
outdir = "output/"
publish_dir_mode = "copy"
conda = false
2020-08-07 09:06:45 +00:00
}
profiles {
2020-08-07 14:05:25 +00:00
conda {
params.conda = true
}
docker {
docker.enabled = true
docker.runOptions = '-u \$(id -u):\$(id -g)'
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
}
2020-08-07 09:06:45 +00:00
}