-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathnextflow.config
More file actions
executable file
·74 lines (60 loc) · 1.31 KB
/
nextflow.config
File metadata and controls
executable file
·74 lines (60 loc) · 1.31 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
process.cache = 'deep'
import java.time.*
Date now = new Date()
workDir = '/projects/b1042/AndersenLab/work/'
params {
day = now.format("yyyMMdd")
timestamp = now.format("yyyyMMdd-HH-mm-ss")
out = "Analysis_Results-${day}"
tracedir = "${out}"
}
// set up profiles
profiles {
standard {
params.report = false
params.finemap = true
params.burden = true
executor {
queueSize=200
}
process {
maxRetries=3
}
}
reports {
params.report = true
params.finemap = true
params.burden = true
process {
maxRetries=3
}
executor {
queueSize=200
}
}
manplot {
params.report = false
params.finemap = false
params.burden = false
process {
errorStrategy='ignore'
}
executor {
queueSize=500
submitRateLimit=10
}
}
}
report {
enabled = true
file = "${params.tracedir}/${params.timestamp}_report.html"
}
timeline {
enabled = true
file = "${params.tracedir}/${params.timestamp}_timeline.html"
}
process {
conda = "/projects/b1059/software/conda_envs/cegwas2-nf_env"
module = 'R/3.6.0'
beforeScript = "module purge; module load singularity"
}