Skip to content

Commit

Permalink
fix wdl syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
DavyCats committed Mar 17, 2023
1 parent f734dff commit db67088
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WGSinCancerDiagnostics.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -929,14 +929,14 @@ task MakeVafTable {
String dockerImage = "quay.io/biocontainers/bcftools:1.10.2--h4f4756c_2"
}

command {
command <<<
set -eo pipefail
bcftools query \
-i 'FILTER="PASS"' \
-f '%CHROM\t%POS\t%INFO/PURPLE_AF\n' \
~{purpleSomaticVcf} | \
{ grep -v '^MT' > ~{outputPath} || true; }
}
>>>

output {
File vafTable = outputPath
Expand Down

0 comments on commit db67088

Please sign in to comment.