You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pipes/WDL/tasks/tasks_assembly.wdl
+67Lines changed: 67 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -648,3 +648,70 @@ task refine_2x_and_plot {
648
648
dx_instance_type: "mem1_ssd1_v2_x8"
649
649
}
650
650
}
651
+
652
+
taskrun_discordance{
653
+
meta {
654
+
description: "This step evaluates discordance between sequencing runs of the same sample. The input is a merged, aligned BAM file for a single sample. If multiple runs (read groups) exist, we split the aligned reads by read group and separately evaluate consensus calls per read group using bcftools mpileup and call. A VCF is emitted that describes variation between runs."
655
+
}
656
+
657
+
input {
658
+
Filereads_aligned_bam
659
+
Filereference_fasta
660
+
Stringout_basename = "run"
661
+
662
+
Stringdocker="quay.io/broadinstitute/viral-core"
663
+
}
664
+
665
+
command {
666
+
set-ex-opipefail
667
+
668
+
read_utils.py--version | teeVERSION
669
+
670
+
# create 2-col table with read group ids in both cols
0 commit comments