We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0acb273 commit 273e16fCopy full SHA for 273e16f
src/datasets/load.py
@@ -344,6 +344,8 @@ def _download_additional_modules(
344
_them_str = "them" if len(needs_to_be_installed) > 1 else "it"
345
if "sklearn" in needs_to_be_installed.keys():
346
needs_to_be_installed["sklearn"] = "scikit-learn"
347
+ if "Bio" in needs_to_be_installed.keys():
348
+ needs_to_be_installed["Bio"] = "biopython"
349
raise ImportError(
350
f"To be able to use {name}, you need to install the following {_dependencies_str}: "
351
f"{', '.join(needs_to_be_installed)}.\nPlease install {_them_str} using 'pip install "
0 commit comments