Conda 安装 出现了问题,版本不对
conda install -c bioconda samtools=1.17 #仍然安装不成功
#从头安装
wget -c https://github.com/samtools/samtools/releases/download/1.17/samtools-1.17.tar.bz2
tar jxvf samtools-1.17.tar.bz2 #下载samtools 版本
cd samtools-1.17/
./configure --prefix=/home/data/ssy303/samtools/samtools-1.17 #绝对路径
make
make install
./samtools --help
vim ~/.bashrc
export PATH=/home/data/ssy303/samtools/samtools-1.17/:$PATH #添加环境变量
:wq
source ~/.bashrc #配置环境变量
Samtools --help #成功
引用:https://www.jianshu.com/p/6b7a442d293f
https://blog.csdn.net/weixin_43187555/article/details/89068705