HiCAssembler icon indicating copy to clipboard operation
HiCAssembler copied to clipboard

HiCexplorer version

Open xinwang-bio opened this issue 5 years ago • 5 comments

Hi Authors Which HiCexplorer version you used ? I have installed the latest version, But it shows No module named HiCMatrix. Thanks.

xinwang-bio avatar Mar 25 '19 15:03 xinwang-bio

Installing HiCexplorer 2.1.3 worked for me, not 3.0

azkalot1 avatar May 27 '19 13:05 azkalot1

We removed HiCMarix module from hicExplorer in version 2.2 and made it a separate library. That might be the issue here. You can separately install HiCMatrix, or downgrade HiCEx version below 2.2

vivekbhr avatar Jun 14 '19 09:06 vivekbhr

We removed HiCMarix module from hicExplorer in version 2.2 and made it a separate library. That might be the issue here. You can separately install HiCMatrix, or downgrade HiCEx version below 2.2

Thanks a lot. I will try the version below 2.2.

xinwang-bio avatar Jun 14 '19 17:06 xinwang-bio

Installing HiCexplorer 2.1.3 worked for me, not 3.0

Thanks a lot. I will try version 2.1.3.

xinwang-bio avatar Jun 14 '19 17:06 xinwang-bio

fyi Got the standalone HiCMatrix install to play nice with HICAssembler to be able to use HiCExplorer 3. All from a fresh miniconda3 install with pip

git clone https://github.com/deeptools/HiCMatrix.git
pip install ./HiCMatrix/

because this is all in miniconda, could just change HiCassembler.py and Scaffold.py to load HICMatrix from hicmatrix instead of hicexplorer with:

import hicexplorer.HiCMatrix as HiCMatrix

to

import hicmatrix.HiCMatrix as HiCMatrix

Seems to be working well.

EarlyEvol avatar Jan 08 '20 22:01 EarlyEvol