Skip to content

Commit

Permalink
fix tot_time
Browse files Browse the repository at this point in the history
  • Loading branch information
cursecatcher committed Oct 2, 2020
1 parent 593f941 commit b5531b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sequencing.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ def __init__(self, chromosome, target_regions=list()):

tot_time = format_time(timer() - start)

#sommo dimensioni intervalli
self.__stats.increment_bps(sum([e-b for _, b, e in self.__fragments]))
print("{} fragments found: {} bp. Elapsed time {}".format(len(self.__fragments), self.__stats.nbases, tot_time), flush=True)
#sommo dimensioni intervalli
self.__stats.increment_bps(sum([e-b for _, b, e in self.__fragments]))
print("{} fragments found: {} bp. Elapsed time {}".format(len(self.__fragments), self.__stats.nbases, tot_time), flush=True)


def load_balancing(self, num_workers):
Expand Down

0 comments on commit b5531b3

Please sign in to comment.