Hi guys I tried to install metabat2 with conda however when I tried to use I got this error:
metabat2: error while loading shared libraries: libdeflate.so.0: cannot open shared object file: No such file or directory
Then I was check the site of the program and the installation says:
#stable release version
wget https://bitbucket.org/berkeleylab/metabat/get/master.tar.gz
tar xzvf master.tar.gz
cd berkeleylab-metabat-*
#run the installation script
mkdir build && cd build && cmake .. [ -DCMAKE_INSTALL_PREFIX=/path/to/install ] && make && make test && make install
I have a conda environment so my doubt is about where install the program:
[ -DCMAKE_INSTALL_PREFIX=/path/to/install ]
To not mess with my environment. Do you have any suggestion? Thank you
Paulo
Like the error says: it can't find
libdeflate
on your system. Depending on your OS, do a Google search to find if there is a prepackaged version of libdeflate. If not, you can get it from here and compile/install on your own.