-
Notifications
You must be signed in to change notification settings - Fork 719
/
Copy pathmain.nf
991 lines (869 loc) · 35.1 KB
/
main.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
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
#!/usr/bin/env nextflow
/*
vim: syntax=groovy
-*- mode: groovy;-*-
========================================================================================
N G I - R N A S E Q B E S T P R A C T I C E
========================================================================================
New RNA-Seq Best Practice Analysis Pipeline. Started March 2016.
#### Homepage / Documentation
https://github.com/SciLifeLab/NGI-RNAseq
#### Authors
Phil Ewels @ewels <phil.ewels@scilifelab.se>
Rickard Hammarén @Hammarn <rickard.hammaren@scilifelab.se>
Docker and AWS integration by
Denis Moreno @Galithil <denis.moreno@scilifelab.se>
----------------------------------------------------------------------------------------
*/
/*
* SET UP CONFIGURATION VARIABLES
*/
// Pipeline version
version = '1.1'
// Configurable variables
params.name = false
params.project = false
params.genome = false
params.forward_stranded = false
params.reverse_stranded = false
params.unstranded = false
params.star_index = params.genome ? params.genomes[ params.genome ].star ?: false : false
params.fasta = params.genome ? params.genomes[ params.genome ].fasta ?: false : false
params.gtf = params.genome ? params.genomes[ params.genome ].gtf ?: false : false
params.bed12 = params.genome ? params.genomes[ params.genome ].bed12 ?: false : false
params.hisat2_index = params.genome ? params.genomes[ params.genome ].hisat2 ?: false : false
params.multiqc_config = "$baseDir/conf/multiqc_config.yaml"
params.splicesites = false
params.download_hisat2index = false
params.download_fasta = false
params.download_gtf = false
params.hisatBuildMemory = 200 // Required amount of memory in GB to build HISAT2 index with splice sites
params.saveReference = false
params.saveTrimmed = false
params.saveAlignedIntermediates = false
params.reads = "data/*{1,2}.fastq.gz"
params.outdir = './results'
params.email = false
// R library locations
params.rlocation = false
if (params.rlocation){
nxtflow_libs = file(params.rlocation)
nxtflow_libs.mkdirs()
}
multiqc_config = file(params.multiqc_config)
params.sampleLevel = false
// Custom trimming options
params.clip_r1 = 0
params.clip_r2 = 0
params.three_prime_clip_r1 = 0
params.three_prime_clip_r2 = 0
// Define regular variables so that they can be overwritten
clip_r1 = params.clip_r1
clip_r2 = params.clip_r2
three_prime_clip_r1 = params.three_prime_clip_r1
three_prime_clip_r2 = params.three_prime_clip_r2
forward_stranded = params.forward_stranded
reverse_stranded = params.reverse_stranded
unstranded = params.unstranded
// Preset trimming options
params.pico = false
if (params.pico){
clip_r1 = 3
clip_r2 = 0
three_prime_clip_r1 = 0
three_prime_clip_r2 = 3
forward_stranded = true
reverse_stranded = false
unstranded = false
}
// Choose aligner
params.aligner = 'star'
if (params.aligner != 'star' && params.aligner != 'hisat2'){
exit 1, "Invalid aligner option: ${params.aligner}. Valid options: 'star', 'hisat2'"
}
// Validate inputs
if( params.star_index && params.aligner == 'star' ){
star_index = Channel
.fromPath(params.star_index)
.ifEmpty { exit 1, "STAR index not found: ${params.star_index}" }
}
else if ( params.hisat2_index && params.aligner == 'hisat2' ){
hs2_indices = Channel
.fromPath("${params.hisat2_index}*")
.ifEmpty { exit 1, "HISAT2 index not found: ${params.hisat2_index}" }
}
else if ( params.fasta ){
fasta = file(params.fasta)
if( !fasta.exists() ) exit 1, "Fasta file not found: ${params.fasta}"
}
else if ( ( params.aligner == 'hisat2' && !params.download_hisat2index ) && !params.download_fasta ){
exit 1, "No reference genome specified!"
}
if( params.gtf ){
Channel
.fromPath(params.gtf)
.ifEmpty { exit 1, "GTF annotation file not found: ${params.gtf}" }
.into { gtf_makeSTARindex; gtf_makeHisatSplicesites; gtf_makeHISATindex; gtf_makeBED12;
gtf_star; gtf_dupradar; gtf_featureCounts; gtf_stringtieFPKM }
}
else if ( !params.download_gtf ){
exit 1, "No GTF annotation specified!"
}
if( params.bed12 ){
bed12 = Channel
.fromPath(params.bed12)
.ifEmpty { exit 1, "BED12 annotation file not found: ${params.bed12}" }
}
if( params.aligner == 'hisat2' && params.splicesites ){
Channel
.fromPath(params.bed12)
.ifEmpty { exit 1, "HISAT2 splice sites file not found: $alignment_splicesites" }
.into { indexing_splicesites; alignment_splicesites }
}
if( workflow.profile == 'standard' && !params.project ) exit 1, "No UPPMAX project ID found! Use --project"
// Has the run name been specified by the user?
// this has the bonus effect of catching both -name and --name
custom_runName = params.name
if( !(workflow.runName ==~ /[a-z]+_[a-z]+/) ){
custom_runName = workflow.runName
}
/*
* Create a channel for input read files
*/
params.singleEnd = false
Channel
.fromFilePairs( params.reads, size: params.singleEnd ? 1 : 2 )
.ifEmpty { exit 1, "Cannot find any reads matching: ${params.reads}\nIf this is single-end data, please specify --singleEnd on the command line." }
.into { read_files_fastqc; read_files_trimming }
// Header log info
log.info "========================================="
log.info " NGI-RNAseq : RNA-Seq Best Practice v${version}"
log.info "========================================="
def summary = [:]
summary['Run Name'] = custom_runName ?: workflow.runName
summary['Reads'] = params.reads
summary['Data Type'] = params.singleEnd ? 'Single-End' : 'Paired-End'
summary['Genome'] = params.genome
if( params.pico ) summary['Library Prep'] = "SMARTer Stranded Total RNA-Seq Kit - Pico Input"
summary['Strandedness'] = ( unstranded ? 'None' : forward_stranded ? 'Forward' : reverse_stranded ? 'Reverse' : 'None' )
summary['Trim R1'] = clip_r1
summary['Trim R2'] = clip_r2
summary["Trim 3' R1"] = three_prime_clip_r1
summary["Trim 3' R2"] = three_prime_clip_r2
if(params.aligner == 'star'){
summary['Aligner'] = "STAR"
if(params.star_index) summary['STAR Index'] = params.star_index
else if(params.fasta) summary['Fasta Ref'] = params.fasta
else if(params.download_fasta) summary['Fasta URL'] = params.download_fasta
} else if(params.aligner == 'hisat2') {
summary['Aligner'] = "HISAT2"
if(params.hisat2_index) summary['HISAT2 Index'] = params.hisat2_index
else if(params.download_hisat2index) summary['HISAT2 Index'] = params.download_hisat2index
else if(params.fasta) summary['Fasta Ref'] = params.fasta
else if(params.download_fasta) summary['Fasta URL'] = params.download_fasta
if(params.splicesites) summary['Splice Sites'] = params.splicesites
}
if(params.gtf) summary['GTF Annotation'] = params.gtf
else if(params.download_gtf) summary['GTF URL'] = params.download_gtf
if(params.bed12) summary['BED Annotation'] = params.bed12
summary['Save Reference'] = params.saveReference
summary['Save Trimmed'] = params.saveTrimmed
summary['Save Intermeds'] = params.saveAlignedIntermediates
summary['Output dir'] = params.outdir
summary['Working dir'] = workflow.workDir
summary['Current home'] = "$HOME"
summary['Current user'] = "$USER"
summary['Current path'] = "$PWD"
summary['R libraries'] = params.rlocation
summary['Script dir'] = workflow.projectDir
summary['Config Profile'] = (workflow.profile == 'standard' ? 'UPPMAX' : workflow.profile)
if(params.project) summary['UPPMAX Project'] = params.project
if(params.email) summary['E-mail Address'] = params.email
log.info summary.collect { k,v -> "${k.padRight(15)}: $v" }.join("\n")
log.info "========================================="
/*
* PREPROCESSING - Download Fasta
*/
if(((params.aligner == 'star' && !params.star_index) || (params.aligner == 'hisat2' && !params.hisat2_index)) && !params.fasta && params.download_fasta){
process downloadFASTA {
tag "${params.download_fasta}"
publishDir path: { params.saveReference ? "${params.outdir}/reference_genome" : params.outdir },
saveAs: { params.saveReference ? it : null }, mode: 'copy'
output:
file "*.{fa,fasta}" into fasta
script:
"""
curl -O -L ${params.download_fasta}
if [ -f *.tar.gz ]; then
tar xzf *.tar.gz
elif [ -f *.gz ]; then
gzip -d *.gz
fi
"""
}
}
/*
* PREPROCESSING - Download GTF
*/
if(!params.gtf && params.download_gtf){
process downloadGTF {
tag "${params.download_gtf}"
publishDir path: { params.saveReference ? "${params.outdir}/reference_genome" : params.outdir },
saveAs: { params.saveReference ? it : null }, mode: 'copy'
output:
file "*.gtf" into gtf_makeSTARindex, gtf_makeHisatSplicesites, gtf_makeHISATindex, gtf_makeBED12, gtf_star, gtf_dupradar, gtf_featureCounts, gtf_stringtieFPKM
script:
"""
curl -O -L ${params.download_gtf}
if [ -f *.tar.gz ]; then
tar xzf *.tar.gz
elif [ -f *.gz ]; then
gzip -d *.gz
fi
"""
}
}
/*
* PREPROCESSING - Download HISAT2 Index
*/
if( params.aligner == 'hisat2' && params.download_hisat2index && !params.hisat2_index){
process downloadHS2Index {
tag "${params.download_hisat2index}"
publishDir path: { params.saveReference ? "${params.outdir}/reference_genome" : params.outdir },
saveAs: { params.saveReference ? it : null }, mode: 'copy'
output:
file "*/*.ht2" into hs2_indices
script:
"""
curl -O -L ${params.download_hisat2index}
if [ -f *.tar.gz ]; then
tar xzf *.tar.gz
elif [ -f *.gz ]; then
gzip -d *.gz
fi
"""
}
}
/*
* PREPROCESSING - Build STAR index
*/
if(params.aligner == 'star' && !params.star_index && fasta){
process makeSTARindex {
tag fasta
publishDir path: { params.saveReference ? "${params.outdir}/reference_genome" : params.outdir },
saveAs: { params.saveReference ? it : null }, mode: 'copy'
input:
file fasta from fasta
file gtf from gtf_makeSTARindex
output:
file "star" into star_index
script:
"""
mkdir star
STAR \\
--runMode genomeGenerate \\
--runThreadN ${task.cpus} \\
--sjdbGTFfile $gtf \\
--sjdbOverhang 149 \\
--genomeDir star/ \\
--genomeFastaFiles $fasta
"""
}
}
/*
* PREPROCESSING - Build HISAT2 splice sites file
*/
if(params.aligner == 'hisat2' && !params.splicesites){
process makeHisatSplicesites {
tag "$gtf"
publishDir path: { params.saveReference ? "${params.outdir}/reference_genome" : params.outdir },
saveAs: { params.saveReference ? it : null }, mode: 'copy'
input:
file gtf from gtf_makeHisatSplicesites
output:
file "${gtf.baseName}.hisat2_splice_sites.txt" into indexing_splicesites, alignment_splicesites
script:
"""
hisat2_extract_splice_sites.py $gtf > ${gtf.baseName}.hisat2_splice_sites.txt
"""
}
}
/*
* PREPROCESSING - Build HISAT2 index
*/
if(params.aligner == 'hisat2' && !params.hisat2_index && !params.download_hisat2index && fasta){
process makeHISATindex {
tag "$fasta"
publishDir path: { params.saveReference ? "${params.outdir}/reference_genome" : params.outdir },
saveAs: { params.saveReference ? it : null }, mode: 'copy'
input:
file fasta from fasta
file indexing_splicesites from indexing_splicesites
file gtf from gtf_makeHISATindex
output:
file "${fasta.baseName}.*.ht2" into hs2_indices
script:
if( task.memory == null ){
log.info "[HISAT2 index build] Available memory not known - defaulting to 0. Specify process memory requirements to change this."
avail_mem = 0
} else {
log.info "[HISAT2 index build] Available memory: ${task.memory}"
avail_mem = task.memory.toGiga()
}
if( avail_mem > params.hisatBuildMemory ){
log.info "[HISAT2 index build] Over ${params.hisatBuildMemory} GB available, so using splice sites and exons in HISAT2 index"
extract_exons = "hisat2_extract_exons.py $gtf > ${gtf.baseName}.hisat2_exons.txt"
ss = "--ss $indexing_splicesites"
exon = "--exon ${gtf.baseName}.hisat2_exons.txt"
} else {
log.info "[HISAT2 index build] Less than ${params.hisatBuildMemory} GB available, so NOT using splice sites and exons in HISAT2 index."
log.info "[HISAT2 index build] Use --hisatBuildMemory [small number] to skip this check."
extract_exons = ''
ss = ''
exon = ''
}
"""
$extract_exons
hisat2-build -p ${task.cpus} $ss $exon $fasta ${fasta.baseName}.hisat2_index
"""
}
}
/*
* PREPROCESSING - Build BED12 file
*/
if(!params.bed12){
process makeBED12 {
tag "$gtf"
publishDir path: { params.saveReference ? "${params.outdir}/reference_genome" : params.outdir },
saveAs: { params.saveReference ? it : null }, mode: 'copy'
input:
file gtf from gtf_makeBED12
output:
file "${gtf.baseName}.bed" into bed12
script: // This script is bundled with the pipeline, in NGI-RNAseq/bin/
"""
gtf2bed $gtf > ${gtf.baseName}.bed
"""
}
}
/*
* STEP 1 - FastQC
*/
process fastqc {
tag "$name"
publishDir "${params.outdir}/fastqc", mode: 'copy',
saveAs: {filename -> filename.indexOf(".zip") > 0 ? "zips/$filename" : "$filename"}
input:
set val(name), file(reads) from read_files_fastqc
output:
file "*_fastqc.{zip,html}" into fastqc_results
script:
"""
fastqc -q $reads
"""
}
/*
* STEP 2 - Trim Galore!
*/
process trim_galore {
tag "$name"
publishDir "${params.outdir}/trim_galore", mode: 'copy',
saveAs: {filename ->
if (filename.indexOf("_fastqc") > 0) "FastQC/$filename"
else if (filename.indexOf("trimming_report.txt") > 0) "logs/$filename"
else params.saveTrimmed ? filename : null
}
input:
set val(name), file(reads) from read_files_trimming
output:
file "*fq.gz" into trimmed_reads
file "*trimming_report.txt" into trimgalore_results
file "*_fastqc.{zip,html}" into trimgalore_fastqc_reports
script:
c_r1 = clip_r1 > 0 ? "--clip_r1 ${clip_r1}" : ''
c_r2 = clip_r2 > 0 ? "--clip_r2 ${clip_r2}" : ''
tpc_r1 = three_prime_clip_r1 > 0 ? "--three_prime_clip_r1 ${three_prime_clip_r1}" : ''
tpc_r2 = three_prime_clip_r2 > 0 ? "--three_prime_clip_r2 ${three_prime_clip_r2}" : ''
if (params.singleEnd) {
"""
trim_galore --fastqc --gzip $c_r1 $tpc_r1 $reads
"""
} else {
"""
trim_galore --paired --fastqc --gzip $c_r1 $c_r2 $tpc_r1 $tpc_r2 $reads
"""
}
}
/*
* STEP 3 - align with STAR
*/
// Function that checks the alignment rate of the STAR output
// and returns true if the alignment passed and otherwise false
def check_log(logs) {
def percent_aligned = 0;
logs.eachLine { line ->
if ((matcher = line =~ /Uniquely mapped reads %\s*\|\s*([\d\.]+)%/)) {
percent_aligned = matcher[0][1]
}
}
logname = logs.getBaseName() - 'Log.final'
if(percent_aligned.toFloat() <= '5'.toFloat() ){
log.info "#################### VERY POOR ALIGNMENT RATE! IGNORING FOR FURTHER DOWNSTREAM ANALYSIS! ($logname) >> ${percent_aligned}% <<"
return false
} else {
log.info " Passed alignment > star ($logname) >> ${percent_aligned}% <<"
return true
}
}
if(params.aligner == 'star'){
process star {
tag "$prefix"
publishDir "${params.outdir}/STAR", mode: 'copy',
saveAs: {filename ->
if (filename.indexOf(".bam") == -1) "logs/$filename"
else params.saveAlignedIntermediates ? filename : null
}
input:
file reads from trimmed_reads
file index from star_index.collect()
file gtf from gtf_star.collect()
output:
set file("*Log.final.out"), file ('*.bam') into star_aligned
file "*.out" into alignment_logs
file "*SJ.out.tab"
script:
prefix = reads[0].toString() - ~/(_R1)?(_trimmed)?(_val_1)?(\.fq)?(\.fastq)?(\.gz)?$/
"""
STAR --genomeDir $index \\
--sjdbGTFfile $gtf \\
--readFilesIn $reads \\
--runThreadN ${task.cpus} \\
--twopassMode Basic \\
--outWigType bedGraph \\
--outSAMtype BAM SortedByCoordinate \\
--readFilesCommand zcat \\
--runDirPerm All_RWX \\
--outFileNamePrefix $prefix
"""
}
// Filter removes all 'aligned' channels that fail the check
star_aligned
.filter { logs, bams -> check_log(logs) }
.flatMap { logs, bams -> bams }
.into { bam_count; bam_rseqc; bam_preseq; bam_markduplicates; bam_featurecounts; bam_stringtieFPKM }
}
/*
* STEP 3 - align with HISAT2
*/
if(params.aligner == 'hisat2'){
process hisat2Align {
tag "$prefix"
publishDir "${params.outdir}/HISAT2", mode: 'copy',
saveAs: {filename ->
if (filename.indexOf("_log.txt") > 0) "logs/$filename"
else params.saveAlignedIntermediates ? filename : null
}
input:
file reads from trimmed_reads
file hs2_indices from hs2_indices.collect()
file alignment_splicesites from alignment_splicesites.collect()
output:
file "${prefix}.bam" into hisat2_bam
file "${prefix}.hisat2_log.txt" into alignment_logs
script:
index_base = hs2_indices[0].toString() - ~/.\d.ht2/
prefix = reads[0].toString() - ~/(_R1)?(_trimmed)?(_val_1)?(\.fq)?(\.fastq)?(\.gz)?$/
def rnastrandness = ''
if (forward_stranded && !unstranded){
rnastrandness = params.singleEnd ? '--rna-strandness F' : '--rna-strandness FR'
} else if (reverse_stranded && !unstranded){
rnastrandness = params.singleEnd ? '--rna-strandness R' : '--rna-strandness RF'
}
if (params.singleEnd) {
"""
set -o pipefail # Capture exit codes from HISAT2, not samtools
hisat2 -x $index_base \\
-U $reads \\
$rnastrandness \\
--known-splicesite-infile $alignment_splicesites \\
-p ${task.cpus} \\
--met-stderr \\
| samtools view -bS -F 4 -F 256 - > ${prefix}.bam
2> ${prefix}.hisat2_log.txt
"""
} else {
"""
set -o pipefail # Capture exit codes from HISAT2, not samtools
hisat2 -x $index_base \\
-1 ${reads[0]} \\
-2 ${reads[1]} \\
$rnastrandness \\
--known-splicesite-infile $alignment_splicesites \\
--no-mixed \\
--no-discordant \\
-p ${task.cpus} \\
--met-stderr \\
| samtools view -bS -F 4 -F 8 -F 256 - > ${prefix}.bam
2> ${prefix}.hisat2_log.txt
"""
}
}
process hisat2_sortOutput {
tag "${hisat2_bam.baseName}"
publishDir "${params.outdir}/HISAT2", mode: 'copy',
saveAs: {filename -> params.saveAlignedIntermediates ? "aligned_sorted/$filename" : null }
input:
file hisat2_bam
output:
file "${hisat2_bam.baseName}.sorted.bam" into bam_count, bam_rseqc, bam_preseq, bam_markduplicates, bam_featurecounts, bam_stringtieFPKM
script:
def avail_mem = task.memory == null ? '' : "-m ${task.memory.toBytes() / task.cpus}"
"""
samtools sort \\
$hisat2_bam \\
-@ ${task.cpus} $avail_mem \\
-o ${hisat2_bam.baseName}.sorted.bam
"""
}
}
/*
* STEP 4 - RSeQC analysis
*/
process rseqc {
tag "${bam_rseqc.baseName - '.sorted'}"
publishDir "${params.outdir}/rseqc" , mode: 'copy',
saveAs: {filename ->
if (filename.indexOf("bam_stat.txt") > 0) "bam_stat/$filename"
else if (filename.indexOf("infer_experiment.txt") > 0) "infer_experiment/$filename"
else if (filename.indexOf("read_distribution.txt") > 0) "read_distribution/$filename"
else if (filename.indexOf("read_duplication.DupRate_plot.pdf") > 0) "read_duplication/$filename"
else if (filename.indexOf("read_duplication.DupRate_plot.r") > 0) "read_duplication/rscripts/$filename"
else if (filename.indexOf("read_duplication.pos.DupRate.xls") > 0) "read_duplication/dup_pos/$filename"
else if (filename.indexOf("read_duplication.seq.DupRate.xls") > 0) "read_duplication/dup_seq/$filename"
else if (filename.indexOf("RPKM_saturation.eRPKM.xls") > 0) "RPKM_saturation/rpkm/$filename"
else if (filename.indexOf("RPKM_saturation.rawCount.xls") > 0) "RPKM_saturation/counts/$filename"
else if (filename.indexOf("RPKM_saturation.saturation.pdf") > 0) "RPKM_saturation/$filename"
else if (filename.indexOf("RPKM_saturation.saturation.r") > 0) "RPKM_saturation/rscripts/$filename"
else if (filename.indexOf("geneBodyCoverage.curves.pdf") > 0) "geneBodyCoverage/$filename"
else if (filename.indexOf("geneBodyCoverage.r") > 0) "geneBodyCoverage/rscripts/$filename"
else if (filename.indexOf("geneBodyCoverage.txt") > 0) "geneBodyCoverage/data/$filename"
else if (filename.indexOf("inner_distance.txt") > 0) "inner_distance/$filename"
else if (filename.indexOf("inner_distance_freq.txt") > 0) "inner_distance/data/$filename"
else if (filename.indexOf("inner_distance_plot.r") > 0) "inner_distance/rscripts/$filename"
else if (filename.indexOf("inner_distance_plot.pdf") > 0) "inner_distance/plots/$filename"
else if (filename.indexOf("junction_plot.r") > 0) "junction_annotation/rscripts/$filename"
else if (filename.indexOf("junction.xls") > 0) "junction_annotation/data/$filename"
else if (filename.indexOf("splice_events.pdf") > 0) "junction_annotation/events/$filename"
else if (filename.indexOf("splice_junction.pdf") > 0) "junction_annotation/junctions/$filename"
else if (filename.indexOf("junctionSaturation_plot.pdf") > 0) "junction_saturation/$filename"
else if (filename.indexOf("junctionSaturation_plot.r") > 0) "junction_saturation/rscripts/$filename"
else if (filename.indexOf("log.txt") > -1) false
else "$filename"
}
input:
file bam_rseqc
file bed12 from bed12.collect()
output:
file "*.{txt,pdf,r,xls}" into rseqc_results
script:
def strandRule = ''
if (forward_stranded && !unstranded){
strandRule = params.singleEnd ? '-d ++,--' : '-d 1++,1--,2+-,2-+'
} else if (reverse_stranded && !unstranded){
strandRule = params.singleEnd ? '-d +-,-+' : '-d 1+-,1-+,2++,2--'
}
"""
samtools index $bam_rseqc
infer_experiment.py -i $bam_rseqc -r $bed12 > ${bam_rseqc.baseName}.infer_experiment.txt
RPKM_saturation.py -i $bam_rseqc -r $bed12 $strandRule -o ${bam_rseqc.baseName}.RPKM_saturation
junction_annotation.py -i $bam_rseqc -o ${bam_rseqc.baseName}.rseqc -r $bed12
bam_stat.py -i $bam_rseqc 2> ${bam_rseqc.baseName}.bam_stat.txt
junction_saturation.py -i $bam_rseqc -o ${bam_rseqc.baseName}.rseqc -r $bed12 2> ${bam_rseqc.baseName}.junction_annotation_log.txt
inner_distance.py -i $bam_rseqc -o ${bam_rseqc.baseName}.rseqc -r $bed12
geneBody_coverage.py -i $bam_rseqc -o ${bam_rseqc.baseName}.rseqc -r $bed12
read_distribution.py -i $bam_rseqc -r $bed12 > ${bam_rseqc.baseName}.read_distribution.txt
read_duplication.py -i $bam_rseqc -o ${bam_rseqc.baseName}.read_duplication
echo "Filename $bam_rseqc RseQC version: "\$(read_duplication.py --version)
"""
}
/*
* STEP 5 - preseq analysis
*/
process preseq {
tag "${bam_preseq.baseName - '.sorted'}"
publishDir "${params.outdir}/preseq", mode: 'copy'
input:
file bam_preseq
output:
file "${bam_preseq.baseName}.ccurve.txt" into preseq_results
script:
"""
preseq lc_extrap -v -B $bam_preseq -o ${bam_preseq.baseName}.ccurve.txt
echo "File name: $bam_preseq preseq version: "\$(preseq)
"""
}
/*
* STEP 6 Mark duplicates
*/
process markDuplicates {
tag "${bam_markduplicates.baseName - '.sorted'}"
publishDir "${params.outdir}/markDuplicates", mode: 'copy',
saveAs: {filename -> filename.indexOf("_metrics.txt") > 0 ? "metrics/$filename" : "$filename"}
input:
file bam_markduplicates
output:
file "${bam_markduplicates.baseName}.markDups.bam" into bam_md
file "${bam_markduplicates.baseName}.markDups_metrics.txt" into picard_results
script:
if( task.memory == null ){
log.info "[Picard MarkDuplicates] Available memory not known - defaulting to 3GB. Specify process memory requirements to change this."
avail_mem = 3
} else {
avail_mem = task.memory.toGiga()
}
"""
java -Xmx${avail_mem}g -jar \$PICARD_HOME/picard.jar MarkDuplicates \\
INPUT=$bam_markduplicates \\
OUTPUT=${bam_markduplicates.baseName}.markDups.bam \\
METRICS_FILE=${bam_markduplicates.baseName}.markDups_metrics.txt \\
REMOVE_DUPLICATES=false \\
ASSUME_SORTED=true \\
PROGRAM_RECORD_ID='null' \\
VALIDATION_STRINGENCY=LENIENT
# Print version number to standard out
echo "File name: $bam_markduplicates Picard version "\$(java -Xmx2g -jar \$PICARD_HOME/picard.jar MarkDuplicates --version 2>&1)
"""
}
/*
* STEP 7 - dupRadar
*/
process dupradar {
tag "${bam_md.baseName - '.sorted.markDups'}"
publishDir "${params.outdir}/dupradar", mode: 'copy',
saveAs: {filename ->
if (filename.indexOf("_duprateExpDens.pdf") > 0) "scatter_plots/$filename"
else if (filename.indexOf("_duprateExpBoxplot.pdf") > 0) "box_plots/$filename"
else if (filename.indexOf("_expressionHist.pdf") > 0) "histograms/$filename"
else if (filename.indexOf("_dupMatrix.txt") > 0) "gene_data/$filename"
else if (filename.indexOf("_duprateExpDensCurve.txt") > 0) "scatter_curve_data/$filename"
else if (filename.indexOf("_intercept_slope.txt") > 0) "intercepts_slopes/$filename"
else "$filename"
}
input:
file bam_md
file gtf from gtf_dupradar.collect()
output:
file "*.{pdf,txt}" into dupradar_results
script: // This script is bundled with the pipeline, in NGI-RNAseq/bin/
def paired = params.singleEnd ? 'FALSE' : 'TRUE'
def rlocation = params.rlocation ?: ''
"""
dupRadar.r $bam_md $gtf $paired $rlocation
"""
}
/*
* STEP 8 Feature counts
*/
process featureCounts {
tag "${bam_featurecounts.baseName - '.sorted'}"
publishDir "${params.outdir}/featureCounts", mode: 'copy',
saveAs: {filename ->
if (filename.indexOf("_biotype_counts.txt") > 0) "biotype_counts/$filename"
else if (filename.indexOf("_gene.featureCounts.txt.summary") > 0) "gene_count_summaries/$filename"
else if (filename.indexOf("_gene.featureCounts.txt") > 0) "gene_counts/$filename"
else "$filename"
}
input:
file bam_featurecounts
file gtf from gtf_featureCounts.collect()
output:
file "${bam_featurecounts.baseName}_gene.featureCounts.txt" into geneCounts, featureCounts_to_merge
file "${bam_featurecounts.baseName}_gene.featureCounts.txt.summary" into featureCounts_logs
file "${bam_featurecounts.baseName}_biotype_counts.txt" into featureCounts_biotype
script:
def featureCounts_direction = 0
if (forward_stranded && !unstranded) {
featureCounts_direction = 1
} else if (reverse_stranded && !unstranded){
featureCounts_direction = 2
}
"""
featureCounts -a $gtf -g gene_id -o ${bam_featurecounts.baseName}_gene.featureCounts.txt -p -s $featureCounts_direction $bam_featurecounts
featureCounts -a $gtf -g gene_biotype -o ${bam_featurecounts.baseName}_biotype.featureCounts.txt -p -s $featureCounts_direction $bam_featurecounts
cut -f 1,7 ${bam_featurecounts.baseName}_biotype.featureCounts.txt > ${bam_featurecounts.baseName}_biotype_counts.txt
"""
}
/*
* STEP 9 - Merge featurecounts
*/
process merge_featureCounts {
tag "${input_files[0].baseName - '.sorted'}"
publishDir "${params.outdir}/featureCounts", mode: 'copy'
input:
file input_files from featureCounts_to_merge.collect()
output:
file 'merged_gene_counts.txt'
script:
"""
merge_featurecounts.py -o merged_gene_counts.txt -i $input_files
"""
}
/*
* STEP 10 - stringtie FPKM
*/
process stringtieFPKM {
tag "${bam_stringtieFPKM.baseName - '.sorted'}"
publishDir "${params.outdir}/stringtieFPKM", mode: 'copy',
saveAs: {filename ->
if (filename.indexOf("transcripts.gtf") > 0) "transcripts/$filename"
else if (filename.indexOf("cov_refs.gtf") > 0) "cov_refs/$filename"
else "$filename"
}
input:
file bam_stringtieFPKM
file gtf from gtf_stringtieFPKM.collect()
output:
file "${bam_stringtieFPKM.baseName}_transcripts.gtf"
file "${bam_stringtieFPKM.baseName}.gene_abund.txt"
file "${bam_stringtieFPKM}.cov_refs.gtf"
stdout into stringtie_log
script:
def st_direction = ''
if (forward_stranded && !unstranded){
st_direction = "--fr"
} else if (reverse_stranded && !unstranded){
st_direction = "--rf"
}
"""
stringtie $bam_stringtieFPKM \\
$st_direction \\
-o ${bam_stringtieFPKM.baseName}_transcripts.gtf \\
-v \\
-G $gtf \\
-A ${bam_stringtieFPKM.baseName}.gene_abund.txt \\
-C ${bam_stringtieFPKM}.cov_refs.gtf \\
-e \\
-b ${bam_stringtieFPKM.baseName}_ballgown
echo "File name: $bam_stringtieFPKM Stringtie version "\$(stringtie --version)
"""
}
def num_bams
bam_count.count().subscribe{ num_bams = it }
/*
* STEP 11 - edgeR MDS and heatmap
*/
process sample_correlation {
tag "${input_files[0].toString() - '.sorted_gene.featureCounts.txt' - 'Aligned'}"
publishDir "${params.outdir}/sample_correlation", mode: 'copy'
input:
file input_files from geneCounts.collect()
bam_count
output:
file "*.{txt,pdf}" into sample_correlation_results
when:
num_bams > 2 && (!params.sampleLevel)
script: // This script is bundled with the pipeline, in NGI-RNAseq/bin/
def rlocation = params.rlocation ?: ''
"""
edgeR_heatmap_MDS.r "rlocation=$rlocation" $input_files
"""
}
/*
* STEP 12 MultiQC
*/
process multiqc {
tag "$prefix"
publishDir "${params.outdir}/MultiQC", mode: 'copy'
echo true
input:
file multiqc_config
file (fastqc:'fastqc/*') from fastqc_results.collect()
file ('trimgalore/*') from trimgalore_results.collect()
file ('alignment/*') from alignment_logs.collect()
file ('rseqc/*') from rseqc_results.collect()
file ('preseq/*') from preseq_results.collect()
file ('dupradar/*') from dupradar_results.collect()
file ('featureCounts/*') from featureCounts_logs.collect()
file ('featureCounts_biotype/*') from featureCounts_biotype.collect()
file ('stringtie/*') from stringtie_log.collect()
file ('sample_correlation_results/*') from sample_correlation_results.collect()
output:
file "*multiqc_report.html" into multiqc_report
file "*_data"
val prefix into multiqc_prefix
script:
prefix = fastqc[0].toString() - '_fastqc.html' - 'fastqc/'
rtitle = custom_runName ? "--title \"$custom_runName\"" : ''
rfilename = custom_runName ? "--filename " + custom_runName.replaceAll('\\W','_').replaceAll('_+','_') + "_multiqc_report" : ''
"""
multiqc -f $rtitle $rfilename --config $multiqc_config . 2>&1
"""
}
/*
* STEP 13 - Output Description HTML
*/
process output_documentation {
tag "$prefix"
publishDir "${params.outdir}/Documentation", mode: 'copy'
input:
val prefix from multiqc_prefix
output:
file "results_description.html"
script:
def rlocation = params.rlocation ?: ''
"""
markdown_to_html.r $baseDir/docs/output.md results_description.html $rlocation
"""
}
/*
* Completion e-mail notification
*/
workflow.onComplete {
// Build the e-mail subject and header
def subject = "NGI-RNAseq Pipeline Complete: $workflow.runName"
subject += "\nContent-Type: text/html"
// Set up the e-mail variables
def email_fields = [:]
email_fields['version'] = version
email_fields['runName'] = custom_runName ?: workflow.runName
email_fields['success'] = workflow.success
email_fields['dateComplete'] = workflow.complete
email_fields['duration'] = workflow.duration
email_fields['exitStatus'] = workflow.exitStatus
email_fields['errorMessage'] = (workflow.errorMessage ?: 'None')
email_fields['errorReport'] = (workflow.errorReport ?: 'None')
email_fields['commandLine'] = workflow.commandLine
email_fields['projectDir'] = workflow.projectDir
email_fields['summary'] = summary
email_fields['summary']['Date Started'] = workflow.start
email_fields['summary']['Date Completed'] = workflow.complete
email_fields['summary']['Nextflow Version'] = workflow.nextflow.version
email_fields['summary']['Nextflow Build'] = workflow.nextflow.build
email_fields['summary']['Nextflow Compile Timestamp'] = workflow.nextflow.timestamp
email_fields['summary']['Pipeline script file path'] = workflow.scriptFile
email_fields['summary']['Pipeline script hash ID'] = workflow.scriptId
if(workflow.repository) email_fields['summary']['Pipeline repository Git URL'] = workflow.repository
if(workflow.commitId) email_fields['summary']['Pipeline repository Git Commit'] = workflow.commitId
if(workflow.revision) email_fields['summary']['Pipeline Git branch/tag'] = workflow.revision
if(workflow.container) email_fields['summary']['Docker image'] = workflow.container
// Render the e-mail HTML template
def f = new File("$baseDir/assets/summary_email.html")
def engine = new groovy.text.GStringTemplateEngine()
def template = engine.createTemplate(f).make(email_fields)
def email_html = template.toString()
// Send the HTML e-mail
if (params.email) {
[ 'mail', '-s', subject, params.email ].execute() << email_html
log.info "[NGI-RNAseq] Sent summary e-mail to $params.email"
}
// Write summary e-mail HTML to a file
def output_d = new File( "${params.outdir}/Documentation/" )
if( !output_d.exists() ) {
output_d.mkdirs()
}
def output_f = new File( output_d, "pipeline_report.html" )
output_f.withWriter { w ->
w << email_html
}
log.info "[NGI-RNAseq] Pipeline Complete"
}