Skip to content

Commit

Permalink
Fixing annovar command in vc WDL
Browse files Browse the repository at this point in the history
  • Loading branch information
tefirman committed Dec 13, 2024
1 parent 5967601 commit 084b0cd
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions variantCalling/variantCalling.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -500,18 +500,16 @@ task annovar {

command <<<
set -eo pipefail

# Convert VCF and preserve all info columns
convert2annovar.pl -format vcf4 -includeinfo "~{input_vcf}" > "~{base_vcf_name}.avinput"

# Run ANNOVAR annotation
perl /annovar/table_annovar.pl "~{base_vcf_name}.avinput" /annovar/humandb/ \
perl /annovar/table_annovar.pl "~{input_vcf}" /annovar/humandb/ \
-buildver "~{ref_name}" \
-outfile "~{base_vcf_name}" \
-remove \
-protocol "~{annovar_protocols}" \
-operation "~{annovar_operation}" \
-nastring . -vcfinput -otherinfo
-nastring . \
-vcfinput \
-otherinfo \
-polish
>>>

output {
Expand Down

0 comments on commit 084b0cd

Please sign in to comment.