cd /path/to/conda/env/TrEMOLO/opt/
git clone https://github.com/malonge/RaGOO.git
cd RaGOO
python setup.py install
安裝TrEMOLO
cd /path/to/conda/env/TrEMOLO/opt/
git clone https://github.com/DrosophilaGenomeEvolution/TrEMOLO.git
修改環(huán)境
安裝samtools
# 安裝samtools 1.15.1
cd /path/to/conda/env/TrEMOLO/bin
wget https://github.com/samtools/samtools/releases/download/1.15.1/samtools-1.15.1.tar.bz2
tar zxvf samtools-1.15.1.tar.bz2
cd samtools-1.15.1
./configure
make
# 安裝samtools 1.9
cd /path/to/conda/env/TrEMOLO/bin
wget https://github.com/samtools/samtools/releases/download/1.9/samtools-1.9.tar.bz2
tar jxvf samtools-1.9.tar.bz2
cd samtools-1.9
./configure
make
# 刪除創(chuàng)建環(huán)境時(shí)產(chǎn)生的samtools
rm /path/to/conda/env/TrEMOLO/bin/samtools