Skip to content
Snippets Groups Projects
Commit 4a45e848 authored by Sander Bollen's avatar Sander Bollen
Browse files

remove tqdm in filter

parent 7be3d1fe
Branches
Tags
No related merge requests found
Pipeline #
......@@ -34,7 +34,7 @@ class Stats(object):
self.__calculated = False
def calculate(self):
for record in tqdm(self.vcf, unit="variants", unit_scale=True):
for record in self.vcf:
for s in self.samples:
s.add_variant(record)
self.chrom_counter[record.CHROM] += 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment