Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion micomplete/micomplete.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
from collections import OrderedDict, defaultdict
from contextlib import contextmanager
from distutils import spawn
from tqdm import tqdm

import Bio
from Bio import SeqIO
Expand Down Expand Up @@ -709,7 +710,7 @@ def main():
'file, remember to provide the --format argument.')

# get() all processes to catch errors
for job in jobs:
for job in tqdm(jobs):
try:
job.get()
except Exception as e:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
'biopython>=1.53',
'numpy>=1.13',
'matplotlib>=2.0.2',
"tqdm",
],
packages=find_packages(),
include_package_data=True,
Expand Down