Skip to content

Commit a58aeb3

Browse files
Dom LaetschDom Laetsch
authored andcommitted
Fixed error in BtIO.readCov
1 parent 7335fd9 commit a58aeb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/BtIO.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def readCov(infile, set_of_blobs):
145145
progress_unit = int(len(set_of_blobs)/100)
146146
with open(infile) as fh:
147147
for line in fh:
148-
BtLog.progress(i, 10, len(set_of_blobs))
148+
BtLog.progress(seqs_parsed, 10, len(set_of_blobs))
149149
match = cov_line_re.search(line)
150150
if match:
151151
seqs_parsed += 1

0 commit comments

Comments
 (0)