Closed bopohdr closed 5 years ago
Hi bopohdr, I am also using the Docker container but through Singularity. Have you gotten a similar error to what I posted about here: https://github.com/ssadedin/ximmer/issues/29#issue-491290005
I am not sure if it is an issue with singularity or the Docker container itself.
Thanks!
To be able to run Conifer via ximmer in docker, I had to:
1) change dockerfile and add necessary environment (including tables and pandas):
RUN apt-get install -y openjdk-8-jre && apt-get install -y libfreetype6-dev pkg-config python-dev python-pip python2.7 cython libhdf5-serial-dev python-pandas python-tables python-matplotlib
2) modify Conifer (conifer.py) code as described here : https://sourceforge.net/p/conifer/discussion/general/thread/d2fbc181/
( change in conifer.py file
not f._hasIndex()
to
f.check_index()
and re-upload necessary files to sourceforge )
3) Change the download source for Conifer in bpipe.config file:
curl -o 'conifer-0.2.2.tar.gz' 'https://master.dl.sourceforge.net/project/conifer-for-ximmer/conifer-0.2.2.tar.gz'
Having troubles running Conifer with Ximmer:
I checked, the tables are not installed in the docker image for ximmer
I think it could be solved by providing changing dockerfile, but unfortunately, I was unable to do it myself.