Skip to content

Commit

Permalink
Use correct python
Browse files Browse the repository at this point in the history
  • Loading branch information
Allison Regier committed Sep 4, 2019
1 parent ff1e13b commit d386a43
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions svtools/vcfpaste.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@ def write_variants(self, output_handle=sys.stdout):
qual = float(out_v[5])
format = None # column 9, VCF format field.

genotype_file_count = len(self.vcf_files)-1
for index in 1:genotype_file_count:
for index in range(1, len(self.vcf_files)):
vcf = self.vcf_files[index]
line = vcf.readline()
if not line:
Expand Down

0 comments on commit d386a43

Please sign in to comment.