-
Notifications
You must be signed in to change notification settings - Fork 5
/
nextflow.config
184 lines (139 loc) · 4.02 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
manifest {
name = "DEN-IM"
mainScript = "DEN-IM.nf"
version = "2.1"
}
params {
platformHTTP = null
reportHTTP = null
// Settings this option to true, will trigger the removal of temporary
// data (usually fastq reads) at particular checkpoint processes that
// modify that data. These checkpoint processes include 'trimmomatic',
// 'spades' and 'skesa'.
// WARNING: This will remove temporary fastq files that are not necessary
// for the completion of the pipeline but, consequently, will disable
// the resume functionality of the pipeline. However, it is often necessary
// for very large pipelines and whenever disk space is critical.
// More precisely, these checkpoint components will check whether the
// putative temporary files are inside the nextflow work directory by
// matching the regex: ".*/work/.{2}/.{30}/.*"
// If it is a match, then the file is assumed to be a temporary one and
// will be removed.
clearAtCheckpoint = false
}
env {
PYTHONPATH = "$baseDir/templates:\$PYTHONPATH"
PATH = "$baseDir/templates:\$PATH"
}
process {
cpus = 1
memory = "1GB"
errorStrategy = { task.attempt <= 7 ? "retry" : "ignore" }
maxRetries = 7
container = "flowcraft/flowcraft_base:1.0.0-1"
}
docker {
// Added default docker option to avoid docker permission errors. See issue
// #142
runOptions = "-u \$(id -u):\$(id -g)"
}
executor {
$local {
cpus = 4
}
}
singularity {
cacheDir = "$HOME/.singularity_cache"
autoMounts = true
}
trace {
enabled = true
file = "pipeline_stats.txt"
fields = "task_id,\
hash,\
process,\
tag,\
status,\
exit,\
start,\
container,\
cpus,\
time,\
disk,\
memory,\
duration,\
realtime,\
queue,\
%cpu,\
%mem,\
rss,\
vmem,\
rchar,\
wchar"
}
// PROFILE OPTIONS //
///////////////////////////////////////////////////////////////////////////////
profiles {
oneida {
process.executor = "slurm"
docker.enabled = true
process{
// MEMORY USAGE PER PROCESS //
// general memory usage
memory = "4GB"
}
}
// INCD PROFILE
incd {
process.executor = "slurm"
singularity.enabled = true
singularity {
cacheDir = "/mnt/singularity_cache"
autoMounts = true
}
// Error and retry strategies
process.errorStrategy = "retry"
maxRetries = 3
process.$chewbbaca.queue = "chewBBACA"
process {
// MEMORY USAGE PER PROCESS //
// general memory usage
memory = "4GB"
}
}
// SLURM PROFILE
slurm {
// Change executor for SLURM
process.executor = "slurm"
// Change container engine for Shifter
shifter.enabled = true
process {
clusterOptions = "--qos=oneida"
errorStrategy = "retry"
maxRetries = 5
// MEMORY USAGE PER PROCESS //
// general memory usage
memory = "4GB"
}
}
// SLURM PROFILE
slurmOneida {
// Change executor for SLURM
process.executor = "slurm"
// Change container engine for Shifter
shifter.enabled = true
process {
clusterOptions = "--qos=oneida"
// MEMORY USAGE PER PROCESS //
// general memory usage
memory = "4GB"
// Set QOS for chewbbaca in order to run a single job
$chewbbaca.clusterOptions = "--qos=chewbbaca"
}
}
}
includeConfig "profiles.config"
includeConfig "resources.config"
includeConfig "containers.config"
includeConfig "params.config"
includeConfig "user.config"