Skip to content

Commit

Permalink
Fix referencing HailMerge task instead of the workflow. (#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
VJalili authored Oct 12, 2022
1 parent ed21680 commit 09c618d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion wdl/CombineBatches.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ workflow CombineBatches {
#Merge PESR & RD VCFs
if (use_hail) {
call HailMerge.HailMergeTask as ConcatPesrDepthHail {
call HailMerge.HailMerge as ConcatPesrDepthHail {
input:
vcfs=[MergeDeletions.out, MergeDuplications.out, HarmonizeHeaders.out[2], HarmonizeHeaders.out[3], HarmonizeHeaders.out[4]],
prefix="~{cohort_name}.~{contig}.concat_pesr_depth",
Expand Down
4 changes: 2 additions & 2 deletions wdl/MergePesrDepth.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ workflow MergePesrDepth {
}
if (use_hail) {
call HailMerge.HailMergeTask as ConcatLargePesrDepthHail {
call HailMerge.HailMerge as ConcatLargePesrDepthHail {
input:
vcfs=[SubsetLarge.filtered_vcf, subtyped_depth_vcf],
prefix="~{prefix}.large_pesr_depth",
Expand Down Expand Up @@ -157,7 +157,7 @@ workflow MergePesrDepth {
}
if (use_hail) {
call HailMerge.HailMergeTask as ConcatShardsHail {
call HailMerge.HailMerge as ConcatShardsHail {
input:
vcfs=flatten([[SubsetSmall.filtered_vcf], SortVcf.out]),
prefix="~{prefix}.concat_shards",
Expand Down
2 changes: 1 addition & 1 deletion wdl/ShardedCluster.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ workflow ShardedCluster {
}
if (length(SvtkVcfCluster.out) > 0) {
if (use_hail) {
call HailMerge.HailMergeTask as ConcatVcfsHail {
call HailMerge.HailMerge as ConcatVcfsHail {
input:
vcfs=SortVcf.out,
prefix="~{prefix}.clustered",
Expand Down

0 comments on commit 09c618d

Please sign in to comment.