User Tools

Site Tools


htslib-software

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
htslib-software [2015/03/27 08:55] – [HTSlib] joguyahtslib-software [2021/09/05 10:17] aorth
Line 4: Line 4:
 ===== Information ===== ===== Information =====
  
-  * Version: 1.2.1+  * Latest Version: 1.13
   * Added: March, 2015   * Added: March, 2015
 +  * Updated: September, 2021
   * Link: https://github.com/samtools/htslib   * Link: https://github.com/samtools/htslib
  
 ===== Usage ===== ===== Usage =====
  
-=== See versions of htslib which are available ===+See versions of htslib which are available:
 <code>$ module avail htslib</code> <code>$ module avail htslib</code>
  
-=== Load and run htslib === +Load one version into your environment and run some common commands: 
-<code>$ module load htslib </code>+<code>$ module load htslib/1.13 
 +$ tabix 
 +$ bgzip</code>
  
 ===== Installation ====== ===== Installation ======
 Notes from the sysadmin during installation: Notes from the sysadmin during installation:
  
-<code>cd /tmp +<code>cd /tmp 
-wget https://github.com/samtools/htslib/archive/1.2.1.tar.gz +wget https://github.com/samtools/htslib/releases/download/1.13/htslib-1.13.tar.bz2 
-tar -xvf 1.2.1.tar.gz +tar xf htslib-1.13.tar.bz2  
-cd htslib-1.2.1/ +cd htslib-1.13 
-scl enable devtoolset-bash +# install a newer compiler from Red Hat software collections 
-sudo mkdir -/export/apps/htslib/1.2.1 +$ sudo yum install devtoolset-7-gcc devtoolset-7-gcc-gfortran devtoolset-7-libquadmath-devel devtoolset-7-gcc-c++ 
-sudo chown joguya:joguya /export/apps/htslib/1.2.1 +scl enable devtoolset-bash 
-autoreconf +$ ./configure --enable-plugins --enable-libcurl --prefix=/export/apps/htslib/1.13 
-./configure CC=clang --prefix=/export/apps/htslib/1.2.1 +$ make 
-make +sudo mkdir -p /export/apps/htslib/1.13 
-make install +$ sudo chown aorth /export/apps/htslib/1.13 
-sudo chown root:root /export/apps/htslib/1.2.1 +make install 
-</code>+sudo chown -R root:root /export/apps/htslib/1.13</code>
htslib-software.txt · Last modified: 2022/06/23 09:29 by aorth