Skip to content

Commit

Permalink
addded missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Jun 18, 2023
1 parent e8c1f4e commit 3c3999b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/runNanoSeq.py
Original file line number Diff line number Diff line change
Expand Up @@ -1208,8 +1208,8 @@ def vcfHeader(args):
cmd = "cp %s merged.vcf.gz ;"% vcf2Merge.pop(0)
for ifile in vcf2Merge[1:]:
cmd += " bcftools concat --no-version -Oz -o tmp.xxx.vcf.gz merged.vcf.gz %s; mv tmp.xxx.vcf.gz merged.vcf.gz; "%ifile
cmd += "; bcftools sort -Oz -o %s/post/%s.indel.vcf.gz merged.vcf.gz" % (tmpDir, args.name)
cmd += ";bcftools index -t -f %s/post/%s.indel.vcf.gz " % (
cmd += "bcftools sort -Oz -o %s/post/%s.indel.vcf.gz merged.vcf.gz;" % (tmpDir, args.name)
cmd += "bcftools index -t -f %s/post/%s.indel.vcf.gz " % (
tmpDir, args.name)
runCommand(cmd)

Expand Down

0 comments on commit 3c3999b

Please sign in to comment.