Install SAMtools on Ubuntu

  • Samtools is a suite of programs for interacting with high-throughput sequencing data, you can install it on ubuntu use thoese easy commands:
# samtools lastest version 1.3.1
wget http://116.77.75.202:81/1Q2W3E4R5T6Y7U8I9O0P1Z2X3C4V5B/120.52.73.48/jaist.dl.sourceforge.net/project/samtools/samtools/1.3.1/samtools-1.3.1.tar.bz2 
tar -jxvf samtools-1.3.1.tar.bz2 
mv samtools-1.3.1 samtools 
cd samtools
# less INSTALL
./configure --without-curses #
make
sudo make install
export PATH=:$PATH

你可能感兴趣的:(Install SAMtools on Ubuntu)