This is an old revision of the document!
samtools provide various utilities for manipulating alignments in the SAM format, including sorting, merging, indexing and generating alignments in a per-position format.
Show all available versions of samtools:
$ module avail samtools
Load a particular version of samtools:
$ module load samtools/1.9
Notes from the sysadmin during installation:
$ cd /tmp $ wget https://github.com/samtools/samtools/releases/download/1.9/samtools-1.9.tar.bz2 $ tar xf samtools-1.9.tar.bz2 $ cd samtools-1.9 # install a newer compiler from Red Hat software collections $ sudo yum install devtoolset-7-gcc devtoolset-7-gcc-gfortran devtoolset-7-libquadmath-devel devtoolset-7-gcc-c++ $ scl enable devtoolset-7 bash $ ./configure --enable-plugins --enable-libcurl --prefix=/export/apps/samtools/1.9 --with-htslib=/export/apps/htslib/1.9 $ make $ sudo mkdir -p /export/apps/samtools/1.9 $ sudo chown aorth /export/apps/samtools/1.9 $ make install $ sudo chown -R root:root /export/apps/samtools/1.9
This links against htslib installed as a module in htslib/1.9.