Tuesday, October 2, 2012
install bamtools
bamtools can be used to calculate the statistics of alignment using BWA. i.e. the number of reads that mapped to the reference genome
#install cmake
wget http://www.cmake.org/files/v2.8/cmake-2.8.9.tar.gz
tar -zxvf cmake-2.8.9.tar.gz
cd cmake-2.8.9
./configure;make
sudo make install
#install zlib
wget http://zlib.net/zlib-1.2.7.tar.gz
tar -zxvf zlib-1.2.7.tar.gz
cd zlib-1.2.7
./configure;make
sudo make install
#install bamtools https://github.com/pezmaster31/bamtools/wiki/Building-and-installing
git clone git://github.com/pezmaster31/bamtools.git
cd bamtools; mkdir build; cd build
cmake ..; make
cd ../bin
./bamtools
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment