mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Add nextflow.config
This commit is contained in:
parent
7efd46b489
commit
4f76bb6b03
2 changed files with 19 additions and 5 deletions
|
@ -2,10 +2,6 @@
|
|||
|
||||
nextflow.enable.dsl = 2
|
||||
|
||||
params.outdir = "output/"
|
||||
params.publish_dir_mode = "copy"
|
||||
params.conda = false
|
||||
|
||||
include { FASTQC } from '../main.nf'
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,2 +1,20 @@
|
|||
|
||||
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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue