-
Notifications
You must be signed in to change notification settings - Fork 1
/
sim.nf
360 lines (262 loc) · 6.9 KB
/
sim.nf
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
#!/usr/local/bin nextflow
/*
* INPUT OPTIONS AND PARAMETERS
*/
// Print parameters
log.info """
===== DIRECTORIES AND PATHS =====
base = ${baseDir}
bin = ${params.bin}
out = ${params.out}
trace = ${params.trace}
mode = ${params.mode}
seq = ${params.seq}
xml = ${params.xml}
"""
// Define parameters for S3_param_sweep
if (params.mode == 'performance') {
mutrate = Channel.from(0, 1e-5, 1e-4, 1e-3, 1e-2, 1e-1)
recrate = Channel.from(0, 0.001, 0.005, 0.01, 0.05, 0.1)
dualinf = Channel.from(0, 1)
seqnum = Channel.from(100)
}
else if (params.mode == 'scalability') {
mutrate = Channel.from(0, 1e-5, 1e-4, 1e-3, 1e-2, 1e-1)
recrate = Channel.from(0, 0.1)
dualinf = Channel.from(1)
seqnum = Channel.from(1000)
}
else {
println "ERROR: Please specify either --mode 'performance' or 'scalability'"
}
def helpMessage() {
log.info"""
===== GENERATING SIMULATION DATASETS =====
Simulate .fasta files across different evolutionary parameters using SANTA-SIM
Usage:
nextflow run sim.nf [options]
Options:
--mode [str] 'performance' or 'scalability'
--seq [.fasta] Path to input .fasta file
--xml [.xml] SANTA-SIM configuration file
--out [path] Path to working directory
""".stripIndent()
}
if (params.help) {
// Show help message
helpMessage()
exit 0
}
/*
* SEQUENCE SIMULATION
*/
process S1_filter_fasta {
// Retain full-length sequences only as SANTA-SIM can't handle gaps
conda 'python=3.7.3 matplotlib=3.1.0'
publishDir "${params.out}/S1_filter_fasta"
input:
path seq from params.seq
output:
path 'seqLength*.png' optional true
path '*_m'
path '*_n'
path '*_n_filtered' into seq_path
path '*_removed'
path '*_log.txt'
script:
"""
python3 ${params.bin}/S1_filter_fasta.py $seq
"""
}
process S2_santa_xml {
// Add path of input .fasta to santa.xml
input:
path xml_in from params.xml
val seq_path from seq_path
output:
path '*_out.xml' into xml_out
script:
"""
sed 's|'SEQPATH'|'${seq_path}'|g' ${xml_in} > ${xml_in}_out.xml
"""
}
process S3_param_sweep {
// Generate .xml files across specified evolutionary parameters
publishDir "${params.out}/S3_param_sweep"
input:
path xml_out from xml_out
each mutrate from mutrate
each recrate from recrate
each seqnum from seqnum
each dualinf from dualinf
output:
path '*.xml' into santa_in
script:
"""
sed 's|'MUTRATE'|'$mutrate'|g; s|'RECRATE'|'$recrate'|g; \
s|'SEQNUM'|'$seqnum'|g; s|'DUALRATE'|'$dualinf'|g' \
$xml_out > xml_m${mutrate}_rc${recrate}_n${seqnum}_n${dualinf}.xml
"""
}
process S4_santa {
// Simulate sequences over time, based on .xml files generated
executor 'slurm'
cpus 2
memory { 8.GB * task.attempt }
time '24h'
errorStrategy 'retry'
conda 'bioconda::java-jdk=8.0.92'
publishDir "${params.out}/S4_santa", mode: 'copy'
input:
path santa_in from santa_in
output:
path 'stats_*.csv'
path 'tree_*.trees'
path 'msa_*.fasta' into fasta_ch
script:
"""
java -jar -Xmx512M -XX:ParallelGCThreads=2 ${params.bin}/santa_bp.jar \
$santa_in
"""
}
fasta_ch
.flatten()
.into { phi_fa; tseq_fa; gc_fa; uchime_fa; gmos_fa; rdp_fa; maxchi_fa; chimaera_fa }
/*
process B1_phi_profile {
label "sim_benchmark"
tag "$seq"
publishDir "${params.out}/B1_phi_profile",
saveAs: { filename -> "${seq}_$filename" }
conda 'bioconda::phipack=1.1'
input:
path seq from phi_fa
output:
path 'Profile.csv'
path 'Profile.log'
script:
"""
Profile -f ${seq}
"""
}
process B2_3seq {
label "sim_benchmark"
tag "$seq"
publishDir "${params.out}/B2_3seq"
input:
path seq from tseq_fa
output:
path '*.3s.log'
path '*3s.pvalHist' optional true
path '*s.rec' optional true
path '*3s.longRec' optional true
script:
"""
echo "Y" |
3seq_elf -f ${seq} -d -id ${seq}
"""
}
process B3_geneconv {
label "sim_benchmark"
tag "$seq"
publishDir "${params.out}/B3_geneconv"
input:
path seq from gc_fa
output:
path '*.tab'
script:
"""
geneconv ${seq} -inputpath=${params.out}/S4_santa \
-nolog -Dumptab -Fancy
"""
}
process B4_uchime_derep {
label "sim_benchmark"
tag "$seq"
publishDir "${params.out}/B4_uchime/derep"
conda 'bioconda::vsearch=2.14'
input:
path seq from uchime_fa
output:
path 'derep_*' into uchime_in
script:
"""
vsearch --derep_fulllength ${seq} \
--output derep_${seq} \
--sizeout
"""
}
process B4_uchime {
label "sim_benchmark"
tag "$seq"
publishDir "${params.out}/B4_uchime"
conda 'bioconda::vsearch=2.14'
input:
path seq from uchime_in
output:
path '*.rc'
path '*.nonrc'
path '*.log'
script:
"""
vsearch --uchime_denovo ${seq} \
--chimeras ${seq}.rc \
--nonchimeras ${seq}.nonrc \
--log ${seq}.log
"""
}
process B5_gmos {
label "sim_benchmark"
tag "$seq"
publishDir "${params.out}/B5_gmos",
saveAs: { filename -> "${seq}_$filename" }
input:
path seq from gmos_fa
output:
path '*.fasta'
path '*.len'
path '*.txt'
script:
"""
gmos -i ${seq} -j ${seq} -o gmos.txt -t
"""
*/
process rdp {
label "slurm"
tag "$seq"
publishDir "${params.out}/rdp"
input:
path seq from rdp_fa
output:
path "$seq.baseName"
script:
"""
openrdp $seq -o $seq.baseName -m rdp
"""
}
process maxchi {
label "slurm"
tag "$seq"
publishDir "${params.out}/maxchi"
input:
path seq from maxchi_fa
output:
path "$seq.baseName"
script:
"""
openrdp $seq -o $seq.baseName -m maxchi
"""
}
process chimaera {
label "slurm"
tag "$seq"
publishDir "${params.out}/chimaera"
input:
path seq from chimaera_fa
output:
path "$seq.baseName"
script:
"""
openrdp $seq -o $seq.baseName -m chimaera
"""
}