Skip to content

Commit

Permalink
Included idx in concordance wdl
Browse files Browse the repository at this point in the history
  • Loading branch information
kjaisingh committed Feb 20, 2025
1 parent 0981e4d commit a2f8587
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion wdl/SVConcordanceSimple.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ version 1.0
workflow SVConcordanceSimple {
input {
File eval_vcf
File eval_vcf_idx
File truth_vcf
File truth_vcf_idx

String output_prefix

Float depth_interval_overlap
Expand All @@ -16,7 +19,9 @@ workflow SVConcordanceSimple {
call SVConcordanceTask {
input:
eval_vcf=eval_vcf,
eval_vcf_idx=eval_vcf_idx,
truth_vcf=truth_vcf,
truth_vcf_idx=truth_vcf_idx,
output_prefix=output_prefix,
reference_dict=reference_dict,
additional_args="--depth-interval-overlap ~{depth_interval_overlap}",
Expand All @@ -31,8 +36,11 @@ workflow SVConcordanceSimple {

task SVConcordanceTask {
input {
File truth_vcf
File eval_vcf
File eval_vcf_idx
File truth_vcf
File truth_vcf_idx

String output_prefix

File reference_dict
Expand Down

0 comments on commit a2f8587

Please sign in to comment.