forked from DIPLOMICS-SA/Genome-Assembly-Pipeline-Nextflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main2.nf
312 lines (208 loc) · 5.98 KB
/
Main2.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
#!/usr/bin/env nextflow
nextflow.enable.dsl=2
/*
*
========================================================================================
GENASS: Genome Assembly Pipeline for Nanopore Sequencing Data
========================================================================================
# Homepage / Documentation
GitHub - DIPLOMICS [1KSA Genome Assembly project]
# Authors
Setshaba Taukobong <[email protected]> <[email protected]>
---------------------------------------------------------------------------------------
*
*/
params.pipelineVersion = "3.0.0"
def helpMessage(){
log.info"""
=========================================================
GENOME ASSEMBLY ~ version ${params.pipelineVersion}
=========================================================
Usage:
Command for running the pipeline is as follows:
nextflow run GenomeAssemblyPipeline.nf OPTIONS
OPTIONS:
NextFlow options [OPTIONAL]:
Produce an html report with useful metrics of the pipeline [FILE] -with-report
Produce a tabular file with tracings of each processes [FILE] -with-trace
Produce an html graphic of all process executed [FILE] -with-timeline
Resume running pipeline where it has left off after an error for example -resume
"""}
/*
========================================================================================
Define parameters, channels and processes
========================================================================================
*/
/*
* Define the default parameters
*/
params.outdir = 'results'
params.fastfiles = ''
fastfiles_ch = Channel.fromPath(params.fastfiles, checkIfExists: true)
/*
* Check quality of sequencing reads using FASTQC
*/
process FASTQC1 {
debug true
publishDir("${params.outdir}/fastqc_before_trim", mode: 'copy')
input:
path sample_id
output:
path 'NanoPlot_FASTQC_1', emit: fastqc_files
script:
"""
NanoPlot -t 15 --fastq $sample_id --tsv_stats -o NanoPlot_FASTQC_1
"""
}
/*
* Trim fastq files after base calling using Nanofilt
*/
process TRIM {
debug true
publishDir("${params.outdir}/trimmed_fastq", mode: 'copy')
input:
path sample_id
output:
path 'sample_id.trimmed.fastq', emit: trimmed_fastq
script:
"""
NanoFilt -q 10 $sample_id > sample_id.trimmed.fastq
"""
}
/*
* Check quality of sequencing reads using FASTQC
*/
process FASTQC2 {
debug true
publishDir("${params.outdir}/fastqc_trim", mode: 'copy')
input:
path sample_id
output:
path 'NanoPlot_FASTQC_2', emit: fastqc_files2
script:
"""
NanoPlot -t 15 --fastq $sample_id --tsv_stats -o NanoPlot_FASTQC_2
"""
}
/*
* Assemble the reads using FLYE
*/
process ASSEMBLY {
debug true
publishDir("${params.outdir}/Flye_results", mode: 'copy')
input:
path sample_id
output:
path 'assembly', emit: Assembly_files
script:
"""
flye --nano-raw $sample_id -o assembly --asm-coverage 40 -g 2.87g -t 15
"""
}
/*
* Genome assembly assessment using Busco
*/
process BUSCOstat1 {
debug true
publishDir("${params.outdir}/Busco_results", mode: 'copy')
input:
path lineage
output:
path 'Busco_outputs1'
script:
"""
busco -i assembly/assembly.fasta -o Busco_outputs1 -m genome -l eukaryota_odb10 --metaeuk_parameters METAEUK_PARAMETERS --offline
"""
}
/*
* Assembly evaluation using QUAST
*/
process assemblyStats1 {
debug true
publishDir("${params.outdir}/quast_report", mode: 'copy')
input:
path sample_id
output:
path 'Quast_output1'
script:
"""
quast.py -t 15 -o Quast_output1 --gene-finding --eukaryote assembly/assembly.fasta --fragmented
"""
}
/*
* Mapping the reads using minimap2
*/
process MAPPINGS {
debug true
publishDir("${params.outdir}/sam_file", mode: 'copy')
input:
path sample_id
output:
path 'sample_id.sam', emit: Mapped_files
script:
"""
minimap2 -ax map-ont -t 15 assembly/assembly.fasta sample_id.trimmed.fastq > sample_id.sam
"""
}
/*
* Polishing assembly using Racon
*/
process POLISH1 {
debug true
publishDir("${params.outdir}/Racon_results", mode: 'copy')
input:
path sample_id
output:
path 'Racon_polished.fasta', emit: Polished_files
script:
"""
racon -m 8 -x -8 -g -6 -t 15 sample_id.trimmed.fastq sample_id.sam assembly/assembly.fasta > Racon_polished.fasta
"""
}
/*
* Genome assembly assessment using Busco
*/
process BUSCOstat2 {
debug true
publishDir("${params.outdir}/Busco_results", mode: 'copy')
input:
path lineage
output:
path 'Busco_outputs2'
script:
"""
busco -i Racon_polished.fasta -o Busco_outputs2 -m genome -l eukaryota_odb10 --metaeuk_parameters METAEUK_PARAMETERS --offline
"""
}
/*
* Assembly evaluation using QUAST
*/
process assemblyStats2 {
debug true
publishDir("${params.outdir}/quast_report", mode: 'copy')
input:
path sample_id
output:
path 'Quast_output2'
script:
"""
quast.py -t 15 -o Quast_output2 --gene-finding --eukaryote Racon_polished.fasta --fragmented
"""
}
/*
========================================================================================
Create default workflow
========================================================================================
*/
workflow {
FASTQC1(fastfiles_ch)
TRIM(fastfiles_ch)
FASTQC2(TRIM.out.trimmed_fastq)
ASSEMBLY(TRIM.out.trimmed_fastq)
BUSCOstat1(ASSEMBLY.out.Assembly_files)
assemblyStats1(ASSEMBLY.out.Assembly_files)
MAPPINGS(TRIM.out.trimmed_fastq.combine(ASSEMBLY.out.Assembly_files))
POLISH1(TRIM.out.trimmed_fastq.combine(MAPPINGS.out.Mapped_files.combine(ASSEMBLY.out.Assembly_files)))
BUSCOstat2(POLISH1.out.Polished_files)
assemblyStats2(POLISH1.out.Polished_files)
}