-
Notifications
You must be signed in to change notification settings - Fork 2
/
nextflow.config
61 lines (49 loc) · 1.24 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
50
51
52
53
54
55
56
57
58
59
60
import java.time.*
Date now = new Date()
params {
day = now.format("yyyMMdd")
timestamp = now.format("yyyyMMdd-HH-mm-ss")
debug = false
help = false
cA = "#0080FF"
cB = "#FF8000"
transition = 1e-12
cross_obj = false
A = 'N2'
B = 'CB4856'
email = null
}
report {
enabled = true
file = "pipeline_info/${params.timestamp}_report.html"
}
timeline {
enabled = true
file = "pipeline_info/${params.timestamp}_timeline.html"
}
profiles {
standard { includeConfig 'conf/rockfish.config' }
rockfish { includeConfig 'conf/rockfish.config' }
local { includeConfig 'conf/local.config' }
quest { includeConfig 'conf/quest.config' }
}
process {
withLabel: alignment {
container = 'andersenlab/alignment:20220301155257db1119'
}
withLabel: annotation {
container = "andersenlab/annotation:202203071920250e7671"
}
withLabel: trim {
container = 'andersenlab/trim-fq:2022030115492810c8da'
}
withLabel: R {
container = 'andersenlab/r_packages:v0.7'
}
withLabel: bam {
container = "andersenlab/bam_toolbox:20240730174819d45c06"
}
withLabel: vcfkit {
container = "andersenlab/vcf-kit:20240805214643040b7a"
}
}