You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "/opt/conda/envs/deepDegron/bin/deepdegron", line 33, in<module>
sys.exit(load_entry_point('deepDegron==1.1.0', 'console_scripts', 'deepdegron')())
File "/opt/conda/envs/deepDegron/lib/python3.7/site-packages/deepDegron-1.1.0-py3.7.egg/deepDegron/deep_degron.py", line 170, in cli_main
main(opts)
File "/opt/conda/envs/deepDegron/lib/python3.7/site-packages/deepDegron-1.1.0-py3.7.egg/deepDegron/deep_degron.py", line 154, in main
import deepDegron.score_mutations as score
File "/opt/conda/envs/deepDegron/lib/python3.7/site-packages/deepDegron-1.1.0-py3.7.egg/deepDegron/score_mutations.py", line 18, in<module>
import varcode
File "/opt/conda/envs/deepDegron/lib/python3.7/site-packages/varcode/__init__.py", line 16, in<module>
from .variant import Variant
File "/opt/conda/envs/deepDegron/lib/python3.7/site-packages/varcode/variant.py", line 31, in<module>
from pyensembl.biotypes import is_coding_biotype
ModuleNotFoundError: No module named 'pyensembl.biotypes'
The text was updated successfully, but these errors were encountered:
Cause:
setuptools>=58 breaks support for use_2to3, a method from the PyVCF module. So pip ends up installing an older version of PyVCF (v0.4.3 instead of v0.6.8). This in turn installs an older version of varcode (v0.3.18 instead of v1.0.3). This older version of varcode does not have the classes used by deepDegron which causes the missing module error while running the example.
I installed from source using the conda method and the install works without any errors
So far so good. But when you run the example from the tutorial in the documentation, I get the following error
Command:
Error:
The text was updated successfully, but these errors were encountered: