美文网首页
Install SAMtools on Ubuntu

Install SAMtools on Ubuntu

作者: 6有才 | 来源:发表于2016-04-23 16:56 被阅读73次
  • 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

      本文链接:https://www.haomeiwen.com/subject/gzaxrttx.html