forked from getwilds/ww-vc-trio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ww-vc-trio.wdl
772 lines (694 loc) · 20.1 KB
/
ww-vc-trio.wdl
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
version 1.0
## Consensus variant calling workflow for human panel/PCR-based targeted DNA sequencing.
## Input requirements:
## - Pair-end sequencing data in unmapped BAM (uBAM) format that comply with the following requirements:
## - - filenames all have the same suffix (we use ".unmapped.bam")
## - - files must pass validation by ValidateSamFile (a Picard tool)
## - - reads are provided in query-sorted order (not 100% sure if this is required as of 6/24/2019)
## - - all reads must have an RG tag
##
## Output Files:
## - recalibrated bam and it's index
## - GATK vcf
## - samtools/bcftools vcf
## - Annovar annotated vcfs and tabular variant list for each variant caller
## - Basic QC stats from bedtools for mean coverage over regions in panel
##
workflow ww_vc_trio {
input {
File batchFile
File bedLocation
String ref_name
File ref_fasta
File ref_fasta_index
File ref_dict
# This is the .alt file from bwa-kit (https://github.com/lh3/bwa/tree/master/bwakit),
# listing the reference contigs that are "alternative". Leave blank in JSON for legacy
# references such as b37 and hg19.
File? ref_alt
File ref_amb
File ref_ann
File ref_bwt
File ref_pac
File ref_sa
File dbSNP_vcf
File dbSNP_vcf_index
Array[File] known_indels_sites_VCFs
Array[File] known_indels_sites_indices
File af_only_gnomad
File af_only_gnomad_index
# Note: For Annovar, please reference: Wang K, Li M, Hakonarson H. ANNOVAR: Functional annotation of genetic variants from next-generation sequencing data Nucleic Acids Research, 38:e164, 2010
String annovar_protocols
String annovar_operation
}
Array[Object] batchInfo = read_objects(batchFile)
# Docker containers this workflow has been designed for
String GATKDocker = "ghcr.io/getwilds/gatk:4.3.0.0"
String bwaDocker = "ghcr.io/getwilds/bwa:0.7.17"
String bedtoolsDocker = "ghcr.io/getwilds/bedtools:2.31.1"
String bcftoolsDocker = "ghcr.io/getwilds/bcftools:1.19"
String annovarDocker = "ghcr.io/getwilds/annovar:~{ref_name}"
String RDocker = "ghcr.io/getwilds/consensus:0.1.1"
Int bwaThreads = 16
# Prepare bed file and check sorting
call SortBed {
input:
unsorted_bed = bedLocation,
ref_dict = ref_dict,
docker = GATKDocker
}
scatter (job in batchInfo){
String sampleName = job.omics_sample_name
String molecularID = job.molecular_id
File sampleBam = job.bamLocation
String base_file_name = sampleName + "_" + molecularID + "." + ref_name
String bam_basename = basename(sampleBam, ".unmapped.bam")
# Convert unmapped bam to interleaved fastq
call SamToFastq {
input:
input_bam = sampleBam,
base_file_name = base_file_name,
docker = GATKDocker
}
# Map reads to reference
call BwaMem {
input:
input_fastq = SamToFastq.output_fastq,
base_file_name = base_file_name,
ref_fasta = ref_fasta,
ref_fasta_index = ref_fasta_index,
ref_dict = ref_dict,
ref_alt = ref_alt,
ref_amb = ref_amb,
ref_ann = ref_ann,
ref_bwt = ref_bwt,
ref_pac = ref_pac,
ref_sa = ref_sa,
threads = bwaThreads,
docker = bwaDocker
}
# Merge original uBAM and BWA-aligned BAM
call MergeBamAlignment {
input:
unmapped_bam = sampleBam,
aligned_bam = BwaMem.output_bam,
base_file_name = base_file_name,
ref_fasta = ref_fasta,
ref_fasta_index = ref_fasta_index,
ref_dict = ref_dict,
docker = GATKDocker
}
# Aggregate aligned+merged flowcell BAM files and mark duplicates
call MarkDuplicates {
input:
input_bam = MergeBamAlignment.output_bam,
output_bam_basename = base_file_name + ".aligned.duplicates_marked",
metrics_filename = base_file_name + ".duplicate_metrics",
docker = GATKDocker
}
# Generate the recalibration model by interval and apply it
call ApplyBaseRecalibrator {
input:
input_bam = MarkDuplicates.output_bam,
input_bam_index = MarkDuplicates.output_bai,
base_file_name = base_file_name,
intervals = SortBed.intervals,
dbSNP_vcf = dbSNP_vcf,
dbSNP_vcf_index = dbSNP_vcf_index,
known_indels_sites_VCFs = known_indels_sites_VCFs,
known_indels_sites_indices = known_indels_sites_indices,
ref_dict = ref_dict,
ref_fasta = ref_fasta,
ref_fasta_index = ref_fasta_index,
docker = GATKDocker
}
call bedToolsQC {
input:
input_bam = ApplyBaseRecalibrator.recalibrated_bam,
genome_sort_order = ApplyBaseRecalibrator.sortOrder,
bed_file = SortBed.sorted_bed,
base_file_name = base_file_name,
docker = bedtoolsDocker
}
call CollectHsMetrics {
input:
input_bam = ApplyBaseRecalibrator.recalibrated_bam,
base_file_name = base_file_name,
ref_fasta = ref_fasta,
ref_fasta_index = ref_fasta_index,
intervals = SortBed.intervals,
docker = GATKDocker
}
# Generate haplotype caller vcf
call HaplotypeCaller {
input:
input_bam = ApplyBaseRecalibrator.recalibrated_bam,
input_bam_index = ApplyBaseRecalibrator.recalibrated_bai,
intervals = SortBed.intervals,
base_file_name = base_file_name,
ref_dict = ref_dict,
ref_fasta = ref_fasta,
ref_fasta_index = ref_fasta_index,
dbSNP_vcf = dbSNP_vcf,
dbSNP_index = dbSNP_vcf_index,
docker = GATKDocker
}
# Generate mutect2 vcf
call Mutect2TumorOnly {
input:
input_bam = ApplyBaseRecalibrator.recalibrated_bam,
input_bam_index = ApplyBaseRecalibrator.recalibrated_bai,
intervals = SortBed.intervals,
base_file_name = base_file_name,
ref_dict = ref_dict,
ref_fasta = ref_fasta,
ref_fasta_index = ref_fasta_index,
genomeReference = af_only_gnomad,
genomeReferenceIndex = af_only_gnomad_index,
docker = GATKDocker
}
# Generate bcftools vcf
call bcftoolsMpileup {
input:
input_bam = ApplyBaseRecalibrator.recalibrated_bam,
input_bam_index = ApplyBaseRecalibrator.recalibrated_bai,
sorted_bed = SortBed.sorted_bed,
base_file_name = base_file_name,
ref_dict = ref_dict,
ref_fasta = ref_fasta,
ref_fasta_index = ref_fasta_index,
dbSNP_vcf = dbSNP_vcf,
docker = bcftoolsDocker
}
# Annotate variants
call annovar as annotateSAM {
input:
input_vcf = bcftoolsMpileup.output_vcf,
ref_name = ref_name,
annovar_operation = annovar_operation,
annovar_protocols = annovar_protocols,
docker = annovarDocker
}
# Annotate variants
call annovar as annotateMutect {
input:
input_vcf = Mutect2TumorOnly.output_vcf,
ref_name = ref_name,
annovar_operation = annovar_operation,
annovar_protocols = annovar_protocols,
docker = annovarDocker
}
# Annotate variants
call annovar as annotateHaplotype {
input:
input_vcf = HaplotypeCaller.output_vcf,
ref_name = ref_name,
annovar_operation = annovar_operation,
annovar_protocols = annovar_protocols,
docker = annovarDocker
}
call consensusProcessingR {
input:
GATKVars = annotateHaplotype.output_annotated_table,
MutectVars = annotateMutect.output_annotated_table,
SAMVars = annotateSAM.output_annotated_table,
base_file_name = base_file_name,
docker = RDocker
}
} # End scatter
# Outputs that will be retained when execution is complete
output {
Array[File] analysis_ready_bam = ApplyBaseRecalibrator.recalibrated_bam
Array[File] analysis_ready_bai = ApplyBaseRecalibrator.recalibrated_bai
Array[File] GATK_vcf = HaplotypeCaller.output_vcf
Array[File] SAM_vcf = bcftoolsMpileup.output_vcf
Array[File] Mutect_Vcf = Mutect2TumorOnly.output_vcf
Array[File] Mutect_VcfIndex = Mutect2TumorOnly.output_vcf_index
Array[File] Mutect_AnnotatedVcf = annotateMutect.output_annotated_vcf
Array[File] Mutect_AnnotatedTable = annotateMutect.output_annotated_table
Array[File] GATK_annotated_vcf = annotateHaplotype.output_annotated_vcf
Array[File] GATK_annotated = annotateHaplotype.output_annotated_table
Array[File] SAM_annotated_vcf = annotateSAM.output_annotated_vcf
Array[File] SAM_annotated = annotateSAM.output_annotated_table
Array[File] panelQC = bedToolsQC.meanQC
Array[File] PicardQC = CollectHsMetrics.picardMetrics
Array[File] PicardQCpertarget = CollectHsMetrics.picardPerTarget
Array[File] consensusVariants = consensusProcessingR.consensusTSV
}
} # End workflow
#### TASK DEFINITIONS
# annotate with annovar
task annovar {
input {
File input_vcf
String ref_name
String annovar_protocols
String annovar_operation
String docker
}
String base_vcf_name = basename(input_vcf, ".vcf.gz")
command <<<
set -eo pipefail
perl /annovar/table_annovar.pl "~{input_vcf}" /annovar/humandb/ \
-buildver "~{ref_name}" \
-outfile "~{base_vcf_name}" \
-remove \
-protocol "~{annovar_protocols}" \
-operation "~{annovar_operation}" \
-nastring . -vcfinput
sed -i "s/Otherinfo1\tOtherinfo2\tOtherinfo3\tOtherinfo4\tOtherinfo5\tOtherinfo6\tOtherinfo7\tOtherinfo8\tOtherinfo9\tOtherinfo10\tOtherinfo11\tOtherinfo12\tOtherinfo13/Otherinfo/g" "~{base_vcf_name}.~{ref_name}_multianno.txt"
>>>
output {
File output_annotated_vcf = "~{base_vcf_name}.~{ref_name}_multianno.vcf"
File output_annotated_table = "~{base_vcf_name}.~{ref_name}_multianno.txt"
}
runtime {
docker: docker
cpu: 1
memory: "2GB"
}
}
# Generate Base Quality Score Recalibration (BQSR) model and apply it
task ApplyBaseRecalibrator {
input {
File input_bam
File intervals
File input_bam_index
String base_file_name
File dbSNP_vcf
File dbSNP_vcf_index
Array[File] known_indels_sites_VCFs
Array[File] known_indels_sites_indices
File ref_dict
File ref_fasta
File ref_fasta_index
String docker
}
command <<<
set -eo pipefail
gatk --java-options "-Xms8g" \
BaseRecalibrator \
-R "~{ref_fasta}" \
-I "~{input_bam}" \
-O "~{base_file_name}.recal_data.csv" \
--known-sites "~{dbSNP_vcf}" \
--known-sites ~{sep=" --known-sites " known_indels_sites_VCFs} \
--intervals ~{intervals} \
--interval-padding 100 \
--verbosity WARNING
gatk --java-options "-Xms48g" \
ApplyBQSR \
-bqsr "~{base_file_name}.recal_data.csv" \
-I "~{input_bam}" \
-O "~{base_file_name}.recal.bam" \
-R "~{ref_fasta}" \
--intervals ~{intervals} \
--interval-padding 100 \
--verbosity WARNING
# finds the current sort order of this bam file
samtools view -H "~{base_file_name}.recal.bam" | grep @SQ|sed 's/@SQ\tSN:\|LN://g' > "~{base_file_name}.sortOrder.txt"
>>>
output {
File recalibrated_bam = "~{base_file_name}.recal.bam"
File recalibrated_bai = "~{base_file_name}.recal.bai"
File sortOrder = "~{base_file_name}.sortOrder.txt"
}
runtime {
memory: "36 GB"
cpu: 1
docker: docker
}
}
# bcftools Mpileup variant calling
task bcftoolsMpileup {
input {
File input_bam
File input_bam_index
String base_file_name
File sorted_bed
File ref_dict
File ref_fasta
File ref_fasta_index
File dbSNP_vcf
String docker
}
command <<<
set -eo pipefail
bcftools mpileup \
--max-depth 10000 \
--max-idepth 10000 \
--annotate "FORMAT/AD,FORMAT/DP" \
--fasta-ref "~{ref_fasta}" \
--regions-file "~{sorted_bed}" \
--ignore-RG \
--no-BAQ \
"~{input_bam}" | bcftools call -Oz -mv \
-o "~{base_file_name}.SAM.vcf.gz"
>>>
output {
File output_vcf = "~{base_file_name}.SAM.vcf.gz"
}
runtime {
docker: docker
memory: "8 GB"
cpu: 2
}
}
# use bedtools to find basic QC data
task bedToolsQC {
input {
File input_bam
File bed_file
File genome_sort_order
String base_file_name
String docker
}
command <<<
set -eo pipefail
bedtools sort -g "~{genome_sort_order}" -i "~{bed_file}" > correctly.sorted.bed
bedtools coverage -mean -sorted -g "~{genome_sort_order}" -a correctly.sorted.bed \
-b "~{input_bam}" > "~{base_file_name}.bedtoolsQCMean.txt"
>>>
output {
File meanQC = "~{base_file_name}.bedtoolsQCMean.txt"
}
runtime {
docker: docker
memory: "4 GB"
cpu: 1
}
}
# align to genome
task BwaMem {
input {
File input_fastq
String base_file_name
File ref_fasta
File ref_fasta_index
File ref_dict
File? ref_alt
File ref_amb
File ref_ann
File ref_bwt
File ref_pac
File ref_sa
Int threads
String docker
}
command <<<
set -eo pipefail
bwa mem \
-p -v 2 -t ~{threads - 1} \
"~{ref_fasta}" "~{input_fastq}" | samtools view -1b > "~{base_file_name}.aligned.bam"
>>>
output {
File output_bam = "~{base_file_name}.aligned.bam"
}
runtime {
docker: docker
memory: "32GB"
cpu: "~{threads}"
}
}
# get hybrid capture based QC metrics via Picard
task CollectHsMetrics {
input {
File input_bam
String base_file_name
File ref_fasta
File ref_fasta_index
File intervals
String docker
}
command <<<
set -eo pipefail
gatk --java-options "-Xms2g" \
CollectHsMetrics \
--INPUT "~{input_bam}" \
--OUTPUT "~{base_file_name}.picard.metrics.txt" \
--REFERENCE_SEQUENCE "~{ref_fasta}" \
--ALLELE_FRACTION 0.01 \
--BAIT_INTERVALS "~{intervals}" \
--TARGET_INTERVALS "~{intervals}" \
--PER_TARGET_COVERAGE "~{base_file_name}.picard.pertarget.txt" \
--VERBOSITY WARNING
>>>
output {
File picardMetrics = "~{base_file_name}.picard.metrics.txt"
File picardPerTarget = "~{base_file_name}.picard.pertarget.txt"
}
runtime {
docker: docker
cpu: 1
memory: "4 GB"
}
}
task consensusProcessingR {
input {
File GATKVars
File SAMVars
File MutectVars
String base_file_name
String docker
}
command <<<
set -eo pipefail
Rscript /consensus-trio-unpaired.R "~{GATKVars}" "~{SAMVars}" "~{MutectVars}" "~{base_file_name}"
>>>
output {
File consensusTSV = "~{base_file_name}.consensus.tsv"
}
runtime {
cpu: 1
memory: "2 GB"
docker: docker
}
}
# HaplotypeCaller per-sample
task HaplotypeCaller {
input {
File input_bam
File input_bam_index
String base_file_name
File intervals
File ref_dict
File ref_fasta
File ref_fasta_index
File dbSNP_vcf
File dbSNP_index
String docker
}
command <<<
set -eo pipefail
gatk --java-options "-Xms8g" \
HaplotypeCaller \
-R "~{ref_fasta}" \
-I "~{input_bam}" \
-O "~{base_file_name}.GATK.vcf.gz" \
--dbsnp "~{dbSNP_vcf}" \
--intervals "~{intervals}" \
--interval-padding 100 \
--verbosity WARNING
>>>
output {
File output_vcf = "~{base_file_name}.GATK.vcf.gz"
File output_vcf_index = "~{base_file_name}.GATK.vcf.gz.tbi"
}
runtime {
docker: docker
memory: "12 GB"
cpu: 1
}
}
# Merge original input uBAM file with BWA-aligned BAM file
task MergeBamAlignment {
input {
File unmapped_bam
File aligned_bam
String base_file_name
File ref_fasta
File ref_fasta_index
File ref_dict
String docker
}
command <<<
set -eo pipefail
gatk --java-options "-Dsamjdk.compression_level=5 -XX:-UseGCOverheadLimit -Xms12g" \
MergeBamAlignment \
--ALIGNED_BAM "~{aligned_bam}" \
--UNMAPPED_BAM "~{unmapped_bam}" \
--OUTPUT "~{base_file_name}.merged.bam" \
--REFERENCE_SEQUENCE "~{ref_fasta}" \
--PAIRED_RUN true \
--CREATE_INDEX false \
--CLIP_ADAPTERS true \
--MAX_RECORDS_IN_RAM 5000000 \
--VERBOSITY WARNING
>>>
output {
File output_bam = "~{base_file_name}.merged.bam"
}
runtime {
docker: docker
memory: "16 GB"
cpu: 1
}
}
# Mutect 2 calling
task Mutect2TumorOnly {
input {
File input_bam
File input_bam_index
String base_file_name
File intervals
File ref_dict
File ref_fasta
File ref_fasta_index
File genomeReference
File genomeReferenceIndex
String docker
}
command <<<
set -eo pipefail
gatk --java-options "-Xms16g" \
Mutect2 \
-R "~{ref_fasta}" \
-I "~{input_bam}" \
-O preliminary.vcf.gz \
--intervals "~{intervals}" \
--interval-padding 100 \
--germline-resource "~{genomeReference}" \
--verbosity WARNING
gatk --java-options "-Xms16g" \
FilterMutectCalls \
-V preliminary.vcf.gz \
-O "~{base_file_name}.mutect2.vcf.gz" \
-R "~{ref_fasta}" \
--stats preliminary.vcf.gz.stats \
--verbosity WARNING
>>>
output {
File output_vcf = "~{base_file_name}.mutect2.vcf.gz"
File output_vcf_index = "~{base_file_name}.mutect2.vcf.gz.tbi"
}
runtime {
docker: docker
memory: "24 GB"
cpu: 1
}
}
# Read unmapped BAM, convert to FASTQ
task SamToFastq {
input {
File input_bam
String base_file_name
String docker
}
# this now sorts first in case the original bam is not queryname sorted or mark dup spark will complain
command <<<
set -eo pipefail
gatk --java-options "-Dsamjdk.compression_level=5 -Xms12g" \
SortSam \
--INPUT "~{input_bam}" \
--OUTPUT sorted.bam \
--SORT_ORDER queryname \
--VERBOSITY WARNING
gatk --java-options "-Dsamjdk.compression_level=5 -Xms8g" \
SamToFastq \
--INPUT sorted.bam \
--FASTQ "~{base_file_name}.fastq" \
--INTERLEAVE true \
--INCLUDE_NON_PF_READS true \
--VERBOSITY WARNING
>>>
output {
File output_fastq = "~{base_file_name}.fastq"
}
runtime {
docker: docker
memory: "16 GB"
cpu: 1
}
}
# Prepare bed file and check sorting
task SortBed {
input {
File unsorted_bed
File ref_dict
String docker
}
command <<<
set -eo pipefail
sort -k1,1V -k2,2n -k3,3n "~{unsorted_bed}" > sorted.bed
gatk --java-options "-Dsamjdk.compression_level=5 -Xms4g" \
BedToIntervalList \
--INPUT sorted.bed \
--OUTPUT sorted.interval_list \
--SEQUENCE_DICTIONARY "~{ref_dict}"
>>>
output {
File intervals = "sorted.interval_list"
File sorted_bed = "sorted.bed"
}
runtime {
docker: docker
memory: "8 GB"
cpu: 1
}
}
task MarkDuplicates {
input {
File input_bam
String output_bam_basename
String metrics_filename
String docker
}
# Task is assuming query-sorted input so that the Secondary and Supplementary reads get marked correctly.
# This works because the output of BWA is query-grouped and therefore, so is the output of MergeBamAlignment.
# While query-grouped isn't actually query-sorted, it's good enough for MarkDuplicates with ASSUME_SORT_ORDER="queryname"
command <<<
gatk --java-options "-Dsamjdk.compression_level=5 -Xms16g" \
MarkDuplicates \
--INPUT "~{input_bam}" \
--OUTPUT "~{output_bam_basename}.bam" \
--METRICS_FILE "~{metrics_filename}" \
--OPTICAL_DUPLICATE_PIXEL_DISTANCE 2500 \
--VERBOSITY WARNING
samtools index "~{output_bam_basename}.bam"
>>>
output {
File output_bam = "~{output_bam_basename}.bam"
File output_bai = "~{output_bam_basename}.bam.bai"
File duplicate_metrics = "~{metrics_filename}"
}
runtime {
docker: docker
memory: "24 GB"
cpu: 1
}
}
# Sort to queryname when needed for a dataset so that markduplicatesSpark can be used.
task SortSam {
input {
File input_bam
String base_file_name
String docker
}
command <<<
set -eo pipefail
gatk --java-options "-Dsamjdk.compression_level=5 -Xms12g" \
SortSam \
--INPUT "~{input_bam}" \
--OUTPUT "~{base_file_name}.sorted.bam" \
--SORT_ORDER queryname \
--VERBOSITY WARNING
>>>
output {
File output_bam = "~{base_file_name}.sorted.bam"
}
runtime {
docker: docker
memory: "16 GB"
cpu: 1
}
}