-
Notifications
You must be signed in to change notification settings - Fork 2
/
nextflow.config
40 lines (34 loc) · 988 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
//author: Ye Wang <[email protected]>, Mike Sauria <[email protected]>
import java.time.*
Date now = new Date()
//params.email = "[email protected]"
profiles {
standard { includeConfig 'conf/rockfish.config' }
rockfish { includeConfig 'conf/rockfish.config' }
local { includeConfig 'conf/local.config' }
quest { includeConfig 'conf/quest.config' }
gcp { includeConfig 'conf/gcp.config' }
}
params {
tracedir = "pipeline_info"
timestamp = now.format("yyyyMMdd-HH-mm-ss")
debug = false
help = false
}
timeline {
enabled = true
file = "${params.tracedir}/${params.timestamp}_timeline.html"
}
report {
enabled = true
file = "${params.tracedir}/${params.timestamp}_report.html"
}
trace {
enabled = true
file = "${params.tracedir}/${params.timestamp}_trace.txt"
}
dag {
enabled = true
file = "${params.tracedir}/${params.timestamp}_dag.svg"
}
process.container = 'andersenlab/concordance:20220307191145eae926'