git clone https://github.com/lh3/bwa.git
cd bwa; make
BWA-ALN使用
安装依赖项
#bcftools
wegt https://github.com/samtools/bcftools/releases/download/1.19/bcftools-1.19.tar.bz2
tar -xvjf bcftools-1.19.tar.bz2
cd bcftools-1.19
./configure
make
sudo make install
(完整路径)/bcftools-1.19/bcftools
#seqtk
git clone https://github.com/lh3/seqtk.git;
cd seqtk; make
#bgzip
git clone https://github.com/samtools/htslib.git
cd htslib
autoreconf -i
./configure
make
sudo make install