Skip to content

Commit

Permalink
Minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
standage committed Nov 10, 2018
1 parent d61db75 commit ffdeb21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kevlar/assemble.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ def assemble(partstream, maxreads=10000, logstream=sys.stderr):
pn += 1

# Status update intervals on a log scale :-)
if pn in [100, 1000, 10000]:
if pn in [100, 1000, 10000]: # pragma: no cover
upint = pn
if pn >= upthreshold:
if pn >= upthreshold: # pragma: no cover
upthreshold += upint
message = 'processed {} read partitions'.format(pn)
print('[kevlar::assemble]', message, file=logstream)
Expand Down

0 comments on commit ffdeb21

Please sign in to comment.