How To Install libseqlib-dev on Ubuntu 18.04

In this tutorial we learn how to install libseqlib-dev on Ubuntu 18.04. libseqlib-dev is C++ htslib/bwa-mem/fermi interface for interrogating sequence data (dev)

Introduction

In this tutorial we learn how to install libseqlib-dev on Ubuntu 18.04.

What is libseqlib-dev

libseqlib-dev is:

C++ API and command line tool that provides a rapid and user-friendly interface to BAM/SAM/CRAM files, global sequence alignment operations and sequence assembly. Four C libraries perform core operations in SeqLib: HTSlib for BAM access, BWA-MEM and BLAT for sequence alignment and Fermi for error correction and sequence assembly. Benchmarking indicates that SeqLib has lower CPU and memory requirements than leading C++ sequence analysis APIs. Minimal SeqLib code can extract, error-correct and assemble reads from a CRAM file and then align with BWA-MEM. SeqLib also provides additional capabilities, including chromosome-aware interval queries and read plotting. Command line tools are available for performing integrated error correction, micro-assemblies and alignment.

This package contains the header files and static library.

There are three methods to install libseqlib-dev on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libseqlib-dev Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libseqlib-dev using apt-get by running the following command:

sudo apt-get -y install libseqlib-dev

Install libseqlib-dev Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libseqlib-dev using apt by running the following command:

sudo apt -y install libseqlib-dev

Install libseqlib-dev Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libseqlib-dev using aptitude by running the following command:

sudo aptitude -y install libseqlib-dev

How To Uninstall libseqlib-dev on Ubuntu 18.04

To uninstall only the libseqlib-dev package we can use the following command:

sudo apt-get remove libseqlib-dev

Uninstall libseqlib-dev And Its Dependencies

To uninstall libseqlib-dev and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libseqlib-dev

Remove libseqlib-dev Configurations and Data

To remove libseqlib-dev configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libseqlib-dev

Remove libseqlib-dev configuration, data, and all of its dependencies

We can use the following command to remove libseqlib-dev configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libseqlib-dev

References

Summary

In this tutorial we learn how to install libseqlib-dev package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.