-
Notifications
You must be signed in to change notification settings - Fork 0
/
bulk_rna_seq_nextflow_pipeline.nf
599 lines (483 loc) · 27.9 KB
/
bulk_rna_seq_nextflow_pipeline.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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
#!/usr/bin/env nextflow
// Bulk RNA-seq pipeline is a sequential pipeline that generates counts from the provided fastq data
// Here are the steps involved in the Bulk RNA-seq Analysis:
// 1. Quality Control - Generate FastQC and MultiQC reports
// 2. Genome Alignment - Map reads to the reference genome using STAR
// 2_1. Mapping Metrics - Generate mapping statistics and quality reports
// 3. Post-Alignment Processing - Filter, deduplicate, and index aligned reads
// 3_1. Quality Assessment - Generate Qualimap reports for aligned reads
// 4. Transcript Assembly and Quantification - Generate counts using StringTie
// 5. Raw Count Generation - Generate raw counts using HTSeq && Feature Counts - Generate counts using Rsubread's featureCounts
println "Bulk RNA-seq Pipeline"
println " "
println "Here are the steps involved in the Bulk RNA-seq Analysis:"
println "1. Quality Control - Generate FastQC and MultiQC reports"
println "2. Genome Alignment - Map reads to the reference genome using STAR"
println "2_1. Mapping Metrics - Generate mapping statistics and quality reports"
println "3. Post-Alignment Processing - Filter, deduplicate, and index aligned reads"
println "3_1. Quality Assessment - Generate Qualimap reports for aligned reads"
println "4. Transcript Assembly and Quantification - Generate counts using StringTie"
println "5. Raw Count Generation - Generate raw counts using HTSeq && Feature Counts - Generate counts using Rsubread's featureCounts"
process generate_fastqc_multiqc_reports {
// Process to generate FastQC and MultiQC reports
debug true
errorStrategy 'terminate'
input:
val config_directory
val fastq_files
val fastqc_cores
output:
val "${config_directory}/fastqc_and_multiqc_reports", emit: fastqc_output
script:
"""
mkdir -p "${config_directory}/0_nextflow_logs"
echo "[INFO] Starting FastQC and MultiQC at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/fastqc_multiqc.log
if [ ! -d "${fastq_files}" ]; then
echo "[ERROR] FASTQ files directory not found: ${fastq_files}" | tee -a ${config_directory}/0_nextflow_logs/fastqc_multiqc.log
exit 1
fi
echo '${config_directory}/generate_fastqc_reports.sh ${fastq_files} ${fastqc_cores} ${config_directory}'
bash ${config_directory}/generate_fastqc_reports.sh ${fastq_files} ${fastqc_cores} ${config_directory}
if [ "\$?" -ne 0 ]; then
echo "[ERROR] FastQC failed on files in ${fastq_files}" | tee -a ${config_directory}/0_nextflow_logs/fastqc_multiqc.log
exit 1
fi
echo "[INFO] FastQC completed successfully for all FASTQ files" | tee -a ${config_directory}/0_nextflow_logs/fastqc_multiqc.log
"""
}
process star_mapping {
// Process to perform STAR alignment for RNA-seq data
debug true
errorStrategy 'terminate'
input:
val config_directory
val samples_file
val fastq_files
val is_paired_end
val read1_suffix
val read2_suffix
val num_threads
val clip5_num
val clip3_num
val index_path
output:
val "${config_directory}/2_star_mapping_output", emit: mapped_files
script:
def map_output_fpath = "${config_directory}/2_star_mapping_output"
def map_log_fpath = "${map_output_fpath}/log"
"""
mkdir -p "${config_directory}/0_nextflow_logs"
echo "[INFO] Starting STAR mapping at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/star_mapping.log
if [ ! -f "${samples_file}" ]; then
echo "[ERROR] Samples file not found: ${samples_file}" | tee -a ${config_directory}/0_nextflow_logs/star_mapping.log
exit 1
fi
if [ ! -d "${fastq_files}" ]; then
echo "[ERROR] FASTQ files directory not found: ${fastq_files}" | tee -a ${config_directory}/0_nextflow_logs/star_mapping.log
exit 1
fi
if [ ! -d "${index_path}" ]; then
echo "[ERROR] STAR index directory not found: ${index_path}" | tee -a ${config_directory}/0_nextflow_logs/star_mapping.log
exit 1
fi
mkdir -p ${map_output_fpath} ${map_log_fpath}
for sample_name in \$(cat ${samples_file})
do
echo "Running STAR for sample: \$sample_name"
if [ "${is_paired_end}" = true ]; then
star_cmd="STAR --runThreadN ${num_threads} \\
--runMode alignReads \\
--genomeDir ${index_path} \\
--readFilesIn ${fastq_files}/\${sample_name}${read1_suffix}.fastq.gz ${fastq_files}/\${sample_name}${read2_suffix}.fastq.gz \\
--readFilesCommand zcat \\
--clip5pNbases ${clip5_num} ${clip5_num} \\
--clip3pNbases ${clip3_num} ${clip3_num} \\
--outFileNamePrefix ${map_output_fpath}/\${sample_name} \\
--outSAMtype BAM SortedByCoordinate --quantMode GeneCounts 2> ${map_log_fpath}/\${sample_name}_mapping_step.log"
echo "Executing STAR command: \${star_cmd}"
eval \${star_cmd}
else
star_cmd="STAR --runThreadN ${num_threads} \\
--runMode alignReads \\
--genomeDir ${index_path} \\
--readFilesIn ${fastq_files}/\${sample_name}${read1_suffix}.fastq.gz \\
--readFilesCommand zcat \\
--clip5pNbases ${clip5_num} \\
--clip3pNbases ${clip3_num} \\
--outFileNamePrefix ${map_output_fpath}/\${sample_name} \\
--outSAMtype BAM SortedByCoordinate --quantMode GeneCounts 2> ${map_log_fpath}/\${sample_name}_mapping_step.log"
echo "Executing STAR command: \${star_cmd}" | tee -a ${config_directory}/\${sample_name}_mapping_step.log
eval \${star_cmd}
fi
if [ "\$?" -ne 0 ]; then
echo "[ERROR] STAR mapping failed for sample: \${sample_name}" | tee -a ${config_directory}/0_nextflow_logs/star_mapping.log
exit 1
fi
index_cmd="samtools index ${map_output_fpath}/\${sample_name}Aligned.sortedByCoord.out.bam"
echo "Executing samtools index command: \${index_cmd}" tee -a ${config_directory}/\${sample_name}_mapping_step.log
eval \${index_cmd}
done
echo "[INFO] STAR mapping process completed at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/star_mapping.log
"""
}
process filter_samples {
// Process to filter and deduplicate aligned samples
debug true
errorStrategy 'terminate'
input:
val config_directory
val num_threads
val blist_bed_file
val exclude_bed_file
val filter_samples
output:
val "${config_directory}/3_filter_output", emit: filtered_files
script:
"""
echo "[INFO] Starting filtering and deduplication at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/filtering.log
if [ ! -f "${config_directory}/dedup_and_filtering.sh" ]; then
echo "[ERROR] Deduplication and filtering script not found: ${config_directory}/dedup_and_filtering.sh" | tee -a ${config_directory}/0_nextflow_logs/filtering.log
exit 1
fi
if [ ! -f "${blist_bed_file}" ] && [ ! -f "${exclude_bed_file}" ]; then
echo "[ERROR] Both blacklist and exclude BED files are missing." | tee -a ${config_directory}/0_nextflow_logs/filtering.log
exit 1
fi
echo "[INFO] Running deduplication and filtering with the following parameters:" | tee -a ${config_directory}/0_nextflow_logs/filtering.log
echo " Config directory: ${config_directory}" | tee -a ${config_directory}/0_nextflow_logs/filtering.log
echo " Number of threads: ${num_threads}" | tee -a ${config_directory}/0_nextflow_logs/filtering.log
echo " Blacklist BED file: ${blist_bed_file}" | tee -a ${config_directory}/0_nextflow_logs/filtering.log
echo " Exclude BED file: ${exclude_bed_file}" | tee -a ${config_directory}/0_nextflow_logs/filtering.log
echo '${config_directory}/dedup_and_filtering.sh $config_directory $num_threads $blist_bed_file $exclude_bed_file' | tee -a ${config_directory}/0_nextflow_logs/filtering.log
bash ${config_directory}/dedup_and_filtering.sh $config_directory $num_threads $blist_bed_file $exclude_bed_file | tee -a ${config_directory}/0_nextflow_logs/filtering.log
if [ "\$?" -ne 0 ]; then
echo "[ERROR] Filtering and deduplication failed" | tee -a ${config_directory}/0_nextflow_logs/filtering.log
exit 1
else
echo "[INFO] Filtering and deduplication completed successfully at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/filtering.log
fi
echo "[INFO] Filtering process completed at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/filtering.log
"""
}
process generate_stringtie_counts {
// Process to generate counts using StringTie
debug true
errorStrategy 'terminate'
input:
val config_directory
val num_threads
val reference_gtf
val strand_st
val species
val filtered_files
output:
val "${config_directory}/4_stringtie_counts_output", emit: counts_files
script:
"""
echo "[INFO] Starting StringTie counts generation at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/stringtie_counts.log
if [ ! -f "${config_directory}/generate_stringtie_counts.sh" ]; then
echo "[ERROR] StringTie counts script not found: ${config_directory}/generate_stringtie_counts.sh" | tee -a ${config_directory}/0_nextflow_logs/stringtie_counts.log
exit 1
fi
if [ ! -f "${reference_gtf}" ]; then
echo "[ERROR] Reference GTF file not found: ${reference_gtf}" | tee -a ${config_directory}/0_nextflow_logs/stringtie_counts.log
exit 1
fi
echo "[INFO] Running StringTie with the following parameters:" | tee -a ${config_directory}/0_nextflow_logs/stringtie_counts.log
echo " Config directory: ${config_directory}" | tee -a ${config_directory}/0_nextflow_logs/stringtie_counts.log
echo " Number of threads: ${num_threads}" | tee -a ${config_directory}/0_nextflow_logs/stringtie_counts.log
echo " Reference GTF: ${reference_gtf}" | tee -a ${config_directory}/0_nextflow_logs/stringtie_counts.log
echo " Strand-specific: ${strand_st}" | tee -a ${config_directory}/0_nextflow_logs/stringtie_counts.log
echo " Species: ${species}" | tee -a ${config_directory}/0_nextflow_logs/stringtie_counts.log
echo 'bash ${config_directory}/generate_stringtie_counts.sh $config_directory $num_threads $reference_gtf $strand_st $species' | tee -a ${config_directory}/0_nextflow_logs/stringtie_counts.log
bash ${config_directory}/generate_stringtie_counts.sh $config_directory $num_threads $reference_gtf $strand_st $species | tee -a ${config_directory}/0_nextflow_logs/stringtie_counts.log
if [ "\$?" -ne 0 ]; then
echo "[ERROR] StringTie counts generation failed" | tee -a ${config_directory}/0_nextflow_logs/stringtie_counts.log
exit 1
else
echo "[INFO] StringTie counts generated successfully at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/stringtie_counts.log
fi
echo "[INFO] StringTie counts process completed at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/stringtie_counts.log
"""
}
process generate_raw_counts {
// Process to generate raw counts using HTSeq-count
debug true
errorStrategy 'terminate'
input:
val config_directory
val reference_gtf
val is_paired_end
val strand_hts
val paired_hts
val species
val feature_counts_files
output:
val "${config_directory}/5_raw_counts_output", emit: raw_counts_files
script:
"""
echo "[INFO] Starting raw counts generation with HTSeq at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/htseq_counts.log
if [ ! -f "${config_directory}/generate_raw_counts.sh" ]; then
echo "[ERROR] HTSeq-count script not found: ${config_directory}/generate_raw_counts.sh" | tee -a ${config_directory}/0_nextflow_logs/htseq_counts.log
exit 1
fi
if [ ! -f "${reference_gtf}" ]; then
echo "[ERROR] Reference GTF file not found: ${reference_gtf}" | tee -a ${config_directory}/0_nextflow_logs/htseq_counts.log
exit 1
fi
echo "[INFO] Running HTSeq-count with the following parameters:" | tee -a ${config_directory}/0_nextflow_logs/htseq_counts.log
echo " Config directory: ${config_directory}" | tee -a ${config_directory}/0_nextflow_logs/htseq_counts.log
echo " Reference GTF: ${reference_gtf}" | tee -a ${config_directory}/0_nextflow_logs/htseq_counts.log
echo " Paired-end: ${is_paired_end}" | tee -a ${config_directory}/0_nextflow_logs/htseq_counts.log
echo " Strand: ${strand_hts}" | tee -a ${config_directory}/0_nextflow_logs/htseq_counts.log
echo " Paired HTSeq option: ${paired_hts}" | tee -a ${config_directory}/0_nextflow_logs/htseq_counts.log
echo 'bash ${config_directory}/generate_raw_counts.sh $config_directory $reference_gtf $is_paired_end $strand_hts $paired_hts $species' | tee -a ${config_directory}/0_nextflow_logs/htseq_counts.log
bash ${config_directory}/generate_raw_counts.sh $config_directory $reference_gtf $is_paired_end $strand_hts $paired_hts $species | tee -a ${config_directory}/0_nextflow_logs/htseq_counts.log
if [ "\$?" -ne 0 ]; then
echo "[ERROR] HTSeq-count generation failed" | tee -a ${config_directory}/0_nextflow_logs/htseq_counts.log
exit 1
else
echo "[INFO] HTSeq-count generated successfully at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/htseq_counts.log
fi
echo "[INFO] Raw counts process completed at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/htseq_counts.log
"""
}
process generate_feature_counts {
// Process to generate feature counts using Rsubread's featureCounts
debug true
errorStrategy 'terminate'
input:
val config_directory
val reference_gtf
val is_paired_end
val filtered_files
output:
val "${config_directory}/5_raw_counts_output", emit: feature_counts_files
script:
"""
echo "[INFO] Starting feature counts generation at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/feature_counts.log
if [ ! -f "${config_directory}/rsubread_featurecount_script.R" ]; then
echo "[ERROR] Rsubread feature counts script not found: ${config_directory}/rsubread_featurecount_script.R" | tee -a ${config_directory}/0_nextflow_logs/feature_counts.log
exit 1
fi
if [ ! -f "${reference_gtf}" ]; then
echo "[ERROR] Reference GTF file not found: ${reference_gtf}" | tee -a ${config_directory}/0_nextflow_logs/feature_counts.log
exit 1
fi
cd "${config_directory}"
mkdir -p "${config_directory}/temp_feature_counts_dir"
cp -r "${config_directory}/3_filter_output"/*.filt.bam "${config_directory}/temp_feature_counts_dir"
echo "[INFO] Running featureCounts with the following parameters:" | tee -a ${config_directory}/0_nextflow_logs/feature_counts.log
echo " Config directory: ${config_directory}" | tee -a ${config_directory}/0_nextflow_logs/feature_counts.log
echo " Reference GTF: ${reference_gtf}" | tee -a ${config_directory}/0_nextflow_logs/feature_counts.log
echo " Paired-end: ${is_paired_end}" | tee -a ${config_directory}/0_nextflow_logs/feature_counts.log
echo " Filtered files directory: ${config_directory}/temp_feature_counts_dir" | tee -a ${config_directory}/0_nextflow_logs/feature_counts.log
echo 'Rscript ${config_directory}/rsubread_featurecount_script.R "${config_directory}/temp_feature_counts_dir" $reference_gtf $is_paired_end "${config_directory}/5_raw_counts_output/raw_feature_counts.csv"' | tee -a ${config_directory}/0_nextflow_logs/feature_counts.log
Rscript ${config_directory}/rsubread_featurecount_script.R "${config_directory}/temp_feature_counts_dir" $reference_gtf $is_paired_end "${config_directory}/5_raw_counts_output/raw_feature_counts.csv" | tee -a ${config_directory}/0_nextflow_logs/feature_counts.log
rm -r "${config_directory}/temp_feature_counts_dir"
if [ "\$?" -ne 0 ]; then
echo "[ERROR] Feature counts generation failed" | tee -a ${config_directory}/0_nextflow_logs/feature_counts.log
exit 1
else
echo "[INFO] Feature counts generated successfully at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/feature_counts.log
fi
echo "[INFO] Feature counts process completed at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/feature_counts.log
"""
}
process generate_mapping_metrics {
// Process to generate mapping metrics and MultiQC report on the mapped files
debug true
errorStrategy 'terminate'
input:
val config_directory
val mapped_files
output:
val "${config_directory}/5_raw_counts_output", emit: map_metric_files
script:
"""
echo "[INFO] Starting mapping metrics generation at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/mapping_metrics.log
if [ ! -f "${config_directory}/generate_map_metrics.py" ]; then
echo "[ERROR] Mapping metrics script not found: ${config_directory}/generate_map_metrics.py" | tee -a ${config_directory}/0_nextflow_logs/mapping_metrics.log
exit 1
fi
if [ ! -d "${config_directory}/2_star_mapping_output" ]; then
echo "[ERROR] STAR mapping output directory not found: ${config_directory}/2_star_mapping_output" | tee -a ${config_directory}/0_nextflow_logs/mapping_metrics.log
exit 1
fi
echo "[INFO] Running mapping metrics with the following parameters:" | tee -a ${config_directory}/0_nextflow_logs/mapping_metrics.log
echo " Config directory: ${config_directory}" | tee -a ${config_directory}/0_nextflow_logs/mapping_metrics.log
echo " Mapped files directory: ${config_directory}/2_star_mapping_output" | tee -a ${config_directory}/0_nextflow_logs/mapping_metrics.log
echo 'python "${config_directory}/generate_map_metrics.py" "${config_directory}" "${config_directory}/2_star_mapping_output"' | tee -a ${config_directory}/0_nextflow_logs/mapping_metrics.log
python "${config_directory}/generate_map_metrics.py" "${config_directory}" "${config_directory}/2_star_mapping_output" | tee -a ${config_directory}/0_nextflow_logs/mapping_metrics.log
cd "${config_directory}/2_star_mapping_output"
multiqc . | tee -a ${config_directory}/0_nextflow_logs/mapping_metrics.log
mkdir -p "${config_directory}/2_1_map_metrics_output_qc"
scp -pr multiqc_report.html multiqc_data "${config_directory}/2_1_map_metrics_output_qc" | tee -a ${config_directory}/0_nextflow_logs/mapping_metrics.log
rm -r multiqc_report.html multiqc_data | tee -a ${config_directory}/0_nextflow_logs/mapping_metrics.log
"""
}
process generate_qualimap_reports {
// Process to generate Qualimap reports for quality control of BAM files
debug true
errorStrategy 'terminate'
input:
val config_directory
val reference_gtf
val is_paired_end
val filtered_files
output:
val "${config_directory}/3_1_qualimap_filter_output_qc", emit: qualimap_files
script:
"""
echo "[INFO] Starting Qualimap report generation at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/qualimap_report.log
if [ ! -f "${config_directory}/generate_qualimap_report.sh" ]; then
echo "[ERROR] Qualimap script not found: ${config_directory}/generate_qualimap_report.sh" | tee -a ${config_directory}/0_nextflow_logs/qualimap_report.log
exit 1
fi
if [ ! -f "${reference_gtf}" ]; then
echo "[ERROR] GTF file not found: ${reference_gtf}" | tee -a ${config_directory}/0_nextflow_logs/qualimap_report.log
exit 1
fi
echo "[INFO] Running Qualimap with the following parameters:" | tee -a ${config_directory}/0_nextflow_logs/qualimap_report.log
echo " Config directory: ${config_directory}" | tee -a ${config_directory}/0_nextflow_logs/qualimap_report.log
echo " GTF file: ${reference_gtf}" | tee -a ${config_directory}/0_nextflow_logs/qualimap_report.log
echo " Paired-end: ${is_paired_end}" | tee -a ${config_directory}/0_nextflow_logs/qualimap_report.log
echo " Filtered BAM files: ${filtered_files}" | tee -a ${config_directory}/0_nextflow_logs/qualimap_report.log
echo "bash "${config_directory}/generate_qualimap_report.sh" "${config_directory}" "${reference_gtf}" "${is_paired_end}"" | tee -a ${config_directory}/0_nextflow_logs/qualimap_report.log
bash "${config_directory}/generate_qualimap_report.sh" "${config_directory}" "${reference_gtf}" "${is_paired_end}" | tee -a ${config_directory}/0_nextflow_logs/qualimap_report.log
if [ "\$?" -ne 0 ]; then
echo "[ERROR] Qualimap report generation failed" | tee -a ${config_directory}/0_nextflow_logs/qualimap_report.log
exit 1
else
echo "[INFO] Qualimap report generation completed successfully at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/qualimap_report.log
fi
"""
}
process generate_stats {
// Process to generate stats about the pipeline
debug true
errorStrategy 'terminate'
input:
val config_directory
val fastq_files
val is_paired_end
val clip5_num
val clip3_num
val feature_counts_files
script:
"""
echo "[INFO] Starting stats generation at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/6_pipeline_stats.log
if [ ! -f "${config_directory}/generate_stats.sh" ]; then
echo "[ERROR] generate_stats.sh script not found in ${config_directory}" | tee -a ${config_directory}/0_nextflow_logs/6_pipeline_stats.log
exit 1
fi
echo "[INFO] Running stats with the following inputs:" | tee -a ${config_directory}/0_nextflow_logs/6_pipeline_stats.log
echo " Fastq files: ${fastq_files}" | tee -a ${config_directory}/0_nextflow_logs/6_pipeline_stats.log
echo " Paired end: ${is_paired_end}" | tee -a ${config_directory}/0_nextflow_logs/6_pipeline_stats.log
echo " 5' clipping: ${clip5_num}" | tee -a ${config_directory}/0_nextflow_logs/6_pipeline_stats.log
echo " 3' clipping: ${clip3_num}" | tee -a ${config_directory}/0_nextflow_logs/6_pipeline_stats.log
echo "bash ${config_directory}/generate_stats.sh ${config_directory} ${fastq_files} ${is_paired_end} ${clip5_num} ${clip3_num}" | tee -a ${config_directory}/0_nextflow_logs/6_pipeline_stats.log
bash ${config_directory}/generate_stats.sh ${config_directory} ${fastq_files} ${is_paired_end} ${clip5_num} ${clip3_num} | tee -a ${config_directory}/0_nextflow_logs/6_pipeline_stats.log
if [ "\$?" -ne 0 ]; then
echo "[ERROR] Stats generation failed" | tee -a ${config_directory}/0_nextflow_logs/6_pipeline_stats.log
exit 1
else
echo "[INFO] Stats generation completed successfully at \$(date)" | tee -a ${config_directory}/0_nextflow_logs/6_pipeline_stats.log
fi
"""
}
workflow {
// input parameters
config_directory = params.config_directory
fastq_files = params.fastq_files
samples_file = params.samples_file
fastqc_cores = params.fastqc_cores
is_paired_end = params.paired_end
read1_suffix = params.read1_suffix
read2_suffix = params.read2_suffix
// star variables
clip5_num = params.clip5_num
clip3_num = params.clip3_num ?: 0
index_path = params.star_index
// filtering variables
blist_bed_file = params.blacklist_bed_file_path
exclude_bed_file = params.exclude_bed_file_path
// reference file and variables used for stringtie / raw-counts
reference_gtf = params.reference_gtf
strand_st = params.strand_st
strand_hts = params.strand_hts
paired_hts = params.paired_hts
species = params.species
// logging
log.info " "
log.info "Config directory: ${config_directory}"
log.info "Fastq files directory: ${fastq_files}"
log.info " "
// Assertions to ensure that critical parameters are set
assert config_directory != null : "ERROR: 'config_directory' must be defined!"
assert fastq_files != null : "ERROR: 'fastq_files' must be defined!"
assert samples_file != null : "ERROR: 'samples_file' must be defined!"
assert fastqc_cores != null : "ERROR: 'fastqc_cores' must be defined!"
assert is_paired_end != null : "ERROR: 'is_paired_end' must be defined!"
assert read1_suffix != null : "ERROR: 'read1_suffix' must be defined!"
// Running FastQC and MultiQC Reports
if (params.run_fastqc) {
log.info "Running FastQC and MultiQC"
println "FastQC and MultiQC output directory: ${config_directory}/fastqc_and_multiqc_reports"
println "No. of cores to be used for generating FastQC reports: ${fastqc_cores}"
fastqc_output = generate_fastqc_multiqc_reports(config_directory, fastq_files, fastqc_cores)
// fastqc_output.view()
}
if (params.run_rna_pipeline) {
assert clip5_num != null : "ERROR: 'clip5_num' must be defined!"
assert clip3_num != null : "ERROR: 'clip3_num' must be defined!"
assert index_path != null : "ERROR: 'index_path' must be defined!"
assert reference_gtf != null : "ERROR: 'reference_gtf' must be defined!"
assert strand_st != null : "ERROR: 'strand_st' must be defined!"
assert strand_hts != null : "ERROR: 'strand_hts' must be defined!"
assert paired_hts != null : "ERROR: 'paired_hts' must be defined!"
}
// Running STAR Mapping
if (params.run_rna_pipeline) {
// assert params.is_paired_end != null : "is_paired_end is required!"
// assert params.read1_suffix != null : "read1_suffix is required!"
// read2_suffix = params.read2_suffix ?: ""
// assert params.clip5_num != null : "clip5_num is required!"
// assert params.clip3_num != null : "clip3_num is required!"
// assert params.index_path != null : "index_path is required!"
log.info "Running STAR Mapping"
println "STAR mapping output directory: ${config_directory}/2_star_mapping_output"
mapped_files = star_mapping(
config_directory, samples_file, fastq_files, is_paired_end, read1_suffix, read2_suffix,
fastqc_cores, clip5_num, clip3_num, index_path
)
// generating mapping metrics
log.info "Generating Mapping Metrics"
map_metric_files = generate_mapping_metrics(config_directory, mapped_files.mapped_files)
// Filtering, deduplication and indexing
log.info "Running Filtering and Deduplication"
println "Filtering, deduplication and sorting output directory: ${config_directory}/3_filter_output"
filtered_files = filter_samples(config_directory, fastqc_cores, blist_bed_file, exclude_bed_file, mapped_files.mapped_files)
// executes rest of the steps right after filtering
// filtered_files.branch {
// stringtie: true
// rawcounts: true
// featurecounts: true
// qualimap: true
// }.set { branched_filtered_files }
// Generate Qualimap reports
log.info "Running Qualimap for quality control"
println "Generating qualimap reports for filtered BAM files: ${config_directory}/3_1_qualimap_filter_output_qc"
qualimap_files = generate_qualimap_reports(config_directory, reference_gtf, is_paired_end, filtered_files.filtered_files)
// Generating stringtie and raw-counts
log.info "Running StringTie and Raw Counts Generation"
println "Generating StringTie and raw counts in: ${config_directory}/4_stringtie_counts_output and ${config_directory}/5_raw_counts_output"
stringtie_files = generate_stringtie_counts(config_directory, fastqc_cores, reference_gtf, strand_st, species, filtered_files.filtered_files)
feature_count_files = generate_feature_counts(config_directory, reference_gtf, is_paired_end, filtered_files.filtered_files)
raw_count_files = generate_raw_counts(config_directory, reference_gtf, is_paired_end, strand_hts, paired_hts, species, feature_count_files.feature_counts_files)
// Generate Stats
log.info "Generating Pipeline Stats"
println "Generating Stats for the current run: ${config_directory}/6_pipeline_stats_<TIMESTAMP>.log"
generate_stats(config_directory, fastq_files, is_paired_end, clip5_num, clip3_num, feature_count_files.feature_counts_files)
}
}