Add nextflow.config

This commit is contained in:
drpatelh 2020-08-07 10:06:45 +01:00
parent 7efd46b489
commit 4f76bb6b03
2 changed files with 19 additions and 5 deletions

View file

@ -2,10 +2,6 @@
nextflow.enable.dsl = 2
params.outdir = "output/"
params.publish_dir_mode = "copy"
params.conda = false
include { FASTQC } from '../main.nf'
/*

View file

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