Browse Source

first commit

master
YaqingLiu 5 years ago
parent
commit
e7d4293f9e
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      tasks/bcftools.wdl

+ 2
- 1
tasks/bcftools.wdl View File

@@ -13,9 +13,10 @@ task bcftools {
if [ ${PONmode} ]; then
mkdir -p /cromwell_root/tmp/bcftools/
cp ${pon_vcf}/*.vcf /cromwell_root/tmp/bcftools/
#for i in ${sep=" " pon_vcf}
#do
for i in ${pon_vcf}/*.vcf
for i in /cromwell_root/tmp/bcftools/*.vcf
do
bcftools view $i -Oz -o /cromwell_root/tmp/bcftools/$i.gz
done

Loading…
Cancel
Save