Open cgirardot opened 6 years ago
Hi @cgirardot,
Thank you immensely for this extremely useful feedback.
I will incorporate the changes to the install scripts and modify the code to be compatible with the newest version of hicrep
. Will confirm here when these changes are done.
Thank you again for your help! This is one of the most useful and nicely written github issues I have encountered.
Best, Oana
Hi @cgirardot, Thank you for your suggestion! I successfully installed this software according to your suggestion.
Hi,
I just installed your package. I wanted to have it installed centrally so colleagues could also use the tool. But I have encountered different issues:
sklearn
&psutil
have been found missing (for GenomeDISCO) after the install--rlib
option did not work for me. The R packages where installed in a default location (that is specific to the user doing the install) and the tool could not be shared.${pythondir}conda install -c anaconda mpi4py
failedTo solve these issues and successfully share the package, I encapsulated the install into a conda environment.
Then:
was solved by simply
was a little more tricky. The way I could solve this was :
hicrep
could also be easily conda installed (v 1.2 as of today) but it turned out that the v1.2 did not work with your code (would be great to fix this) so I had to stick with the 1.0.1 version. But to get it installed in the right place (ie in the conda env), I had to do it manually and give the rightlib=/path/to/condaenv/3DChromatin_ReplicateQC/lib/R/library/
:${pythondir}conda install -c anaconda mpi4py
was replaced with${pythondir}conda install mpi4py
I hope this feedback will help.