-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ImportError: No module named HiCMatrix #21
Comments
I ran into the same issue today. It seems that In the checked out repository one can easily find all of the imports with: $ git grep "import hicexplorer.HiCMatrix"
hicassembler/HiCAssembler.py:import hicexplorer.HiCMatrix as HiCMatrix
hicassembler/Scaffolds.py:import hicexplorer.HiCMatrix as HiCMatrix
hicassembler/plotScaffoldInteractive.py:import hicexplorer.HiCMatrix as HiCMatrix
hicassembler/plotScaffoldsHiC.py:import hicexplorer.HiCMatrix as HiCMatrix
hicassembler/test/test_Scaffolds.py:import hicexplorer.HiCMatrix as HiCMatrix and change the imports with:
Would be nice if the devs would provide a new release that fixes this issue. |
Another way of avoiding that error is by trying recreating an environment with the versions they used in their last release. This worked for me just now. With this the dependencies will be satisfied. To avoid upgrading to incompatible ones, empty the 'requirements.txt' file. After that you can safely install with pip.
|
Hi
I tried to run HiC Assembler over conda environment with Python 2.7 and an old version of some packages as hicexplorer v2.2 and biopython v1.76 (last supported for Python 2.7), when I tried to execute
assemble
command, It doesn't can import hicexplorer.HiCMatrixI check hicexplorer and everything looks well, Its it another dependency or hicexplorer complement that I forget to install?
I appreciate so much your help
Diego D
The text was updated successfully, but these errors were encountered: