-
Notifications
You must be signed in to change notification settings - Fork 8
/
nextflow.config
49 lines (44 loc) · 1.15 KB
/
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
41
42
43
44
45
46
47
48
49
// vim: syntax=groovy expandtab
// BACTpipe Nextflow configuration file
manifest {
homePage = 'https://bactpipe.readthedocs.io'
description = 'BACTpipe - whole genome assembly, species identification and annotation pipeline'
mainScript = 'bactpipe.nf'
nextflowVersion = '>=21.04.0'
version = '3.1.0'
}
report {
enabled = true
file = "BACTpipe_report.html"
}
timeline {
enabled = true
file = "BACTpipe_timeline.html"
}
profiles {
standard {
includeConfig 'conf/params.config'
includeConfig 'conf/local.config'
}
ctmr_nas {
includeConfig 'conf/params.config'
includeConfig 'conf/ctmr_nas.config'
}
ctmr_gandalf {
includeConfig 'conf/params.config'
includeConfig 'conf/ctmr_gandalf.config'
}
rackham {
includeConfig 'conf/params.config'
includeConfig 'conf/rackham.config'
}
docker {
includeConfig 'conf/params.config'
includeConfig 'conf/docker.config'
}
dardel {
includeConfig 'conf/params.config'
includeConfig 'conf/dardel.config'
}
}
params.profiles_that_require_project = ['rackham', 'dardel']