2020-12-08 silix 软件的安装及纠错
2020-12-09 本文已影响0人
Bioture
一个不错的软件,名叫siLix,核酸、蛋白进行聚类,和orthofinder等软件类似。
软件网址:
http://lbbe.univ-lyon1.fr/Download,3009.html?lang=fr
软件下载:
wget ftp://pbil.univ-lyon1.fr/pub/logiciel/silix/silix-1.2.11.tar.gz
软件安装:
tar xf silix-1.2.11.tar.gz
cd silix-1.2.11
./configure --prefix=/home/aaa --enable-verbose --enable-mpi --enable-hash
软件报错:
configure: error: Boost::program_options header files were not found on the system... unable to compile. Please install Boost::program_options headers
解决报错并安装依赖:
sudo yum install libboost-all-dev
重新安装软件:
./configure --prefix=/home/aaa --enable-verbose --enable-mpi --enable-hash
还是报错,要哭了。
最终的解决方法是,去掉了 --enable-verbose --enable-mpi --enable-hash
./configure --prefix=/home/aaa
make
make install
参考:
https://stackoverflow.com/questions/44157279/how-to-install-boost-library-on-centos-7-3-64bit
https://blog.csdn.net/Daydream2015/article/details/53404719