Add test nextflow.config

This commit is contained in:
drpatelh 2020-08-07 12:56:52 +01:00
parent f367f9ef69
commit 7604bd27fc

View file

@ -1,2 +1,20 @@
params {
outdir = "output/"
publish_dir_mode = "copy"
conda = false
}
profiles {
conda {
params.conda = true
}
docker {
docker.enabled = true
params.outdir = './results'
docker.runOptions = '-u \$(id -u):\$(id -g)'
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
}
}