User Tools

Site Tools


htslib-software

This is an old revision of the document!


Table of Contents

htslib

htslib is an implementation of a unified C library for accessing common file formats, such as SAM, CRAM and VCF, used for high-throughput sequencing data, and is the core library used by samtools and bcftools

Information

Usage

See versions of htslib which are available:

$ module avail htslib

Load one version into your environment and run some common commands:

$ module load htslib/1.13
$ tabix
$ bgzip

Installation

Notes from the sysadmin during installation:

$ cd /tmp
$ wget https://github.com/samtools/htslib/releases/download/1.13/htslib-1.13.tar.bz2
$ tar xf htslib-1.13.tar.bz2 
$ cd htslib-1.13
# 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/htslib/1.13
$ make
$ sudo mkdir -p /export/apps/htslib/1.13
$ sudo chown aorth /export/apps/htslib/1.13
$ make install
$ sudo chown -R root:root /export/apps/htslib/1.13
htslib-software.1630837043.txt.gz · Last modified: 2021/09/05 10:17 by aorth