-
Notifications
You must be signed in to change notification settings - Fork 1
/
nextflow.config
40 lines (34 loc) · 894 Bytes
/
nextflow.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
params {
project = null
email = null
outdir = 'sample_sheet'
merge = false
}
profiles {
debug {
process.beforeScript = 'echo $HOSTNAME'
cleanup = false
}
conda {
conda.enabled = true
conda.createTimeout = '1 h'
}
docker {
docker.enabled = true
}
singularity {
singularity.enabled = true
singularity.autoMounts = true
}
}
// Load base.config by default for all pipelines
includeConfig 'conf/base.config'
manifest {
name = 'nf-irida'
author = 'Thanh Le Viet'
homePage = 'https://github.com/quadram-institute-bioscience/nf-irida'
description = 'Nextflow pipeline for generate IRIDA sample sheet'
mainScript = 'main.nf'
nextflowVersion = '!>=24.04.0'
version = '1.0.0'
}