Skip to content

Commit

Permalink
trgt merge does not have threads option and requires VCF indices for …
Browse files Browse the repository at this point in the history
…compressed VCFs.
  • Loading branch information
williamrowell committed Aug 13, 2024
1 parent a090420 commit a4c04ea
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion wdl/tasks/trgt.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,9 @@ task trgt_merge {
vcfs: {
name: "TRGT VCFs"
}
vcf_indices: {
name: "TRGT VCF indices"
}
ref_fasta: {
name: "Reference FASTA"
}
Expand All @@ -178,6 +181,7 @@ task trgt_merge {

input {
Array[File] vcfs
Array[File] vcf_indices

File ref_fasta
File ref_index
Expand All @@ -197,7 +201,6 @@ task trgt_merge {
trgt --version
trgt merge \
--threads ~{threads} \
--vcf ~{sep=" " vcfs} \
--genome ~{ref_fasta} \
--output ~{out_prefix}.vcf.gz
Expand Down

0 comments on commit a4c04ea

Please sign in to comment.