-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
47 lines (43 loc) · 946 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
41
42
43
44
45
46
47
/*
* -------------------------------------------------
* Nextflow config file for kWIP pipeline
* -------------------------------------------------
* Default config options for all environments.
* Cluster-specific config options should be saved
* in the conf folder and imported under a profile
* name here.
*/
manifest {
homePage = 'https://github.com/Gregor-Mendel-Institute/kWIP-nf'
description = "A nextflow pipeline to estimate sample (dis)similarity using kWIP"
mainScript = 'main.nf'
nextflowVersion = '>=19.01.0'
}
env {
PAR_TEMP = "${PWD}/work"
PAR_GLOBAL_TMPDIR = "${PWD}/work"
}
profiles {
cbe {
includeConfig 'conf/base.config'
includeConfig 'conf/cbe.config'
}
conda {
process.conda = "$baseDir/environment.yaml"
}
singularity {
singularity.enabled = true
}
}
timeline {
enabled = true
}
report {
enabled = true
}
trace {
enabled = true
}
dag {
enabled = true
}