We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e450aa2 commit 0e23af3Copy full SHA for 0e23af3
wdl/tasks/VariantCalling/GLNexus.wdl
@@ -54,9 +54,10 @@ workflow JointCall {
54
call ShardVCFByRanges { input: gvcf = p.left, tbi = p.right, ranges = GetRanges.ranges }
55
}
56
57
+ Array[Array[File]] per_range_per_sample_gvcfs = transpose(ShardVCFByRanges.sharded_gvcfs)
58
# Joint-call in parallel over chromosomes
- scatter (i in range(length(ShardVCFByRanges.sharded_gvcfs[0]))) {
59
- Array[File] per_contig_gvcfs = transpose(ShardVCFByRanges.sharded_gvcfs)[i]
+ scatter (i in range(length(GetRanges.ranges))) {
60
+ Array[File] per_contig_gvcfs = per_range_per_sample_gvcfs[i]
61
62
call Call {
63
input:
0 commit comments