forked from AndersenLab/NemaScan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
47 lines (35 loc) · 1008 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
process.cache = 'deep'
nextflowVersion = '>=20.0'
import java.time.*
Date now = new Date()
params {
day = now.format("yyyMMdd")
timestamp = now.format("yyyyMMdd-HH-mm-ss")
out = "Analysis_Results-${day}"
}
profiles {
mappings { includeConfig 'conf/mappings.config' }
standard { includeConfig 'conf/mappings.config' }
simulations { includeConfig 'conf/simulations.config' }
gcp { includeConfig 'conf/gcp.config' }
genomatrix { includeConfig 'conf/genomatrix.config' }
local { includeConfig 'conf/local.config' }
}
report {
enabled = true
file = "${params.out}/${params.timestamp}_report.html"
}
timeline {
enabled = true
file = "${params.out}/${params.timestamp}_timeline.html"
}
executor {
queueSize = 500
submitRateLimit = 5
}
process {
container = 'andersenlab/nemascan:20220407173056db3227'
withLabel: mediation {
container = 'andersenlab/mediation:20220407173046db3227'
}
}