How To Install libseqlib0 on Ubuntu 18.04

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

Introduction

In this tutorial we learn how to install libseqlib0 on Ubuntu 18.04.

What is libseqlib0

libseqlib0 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.

There are three methods to install libseqlib0 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 libseqlib0 Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install libseqlib0

Install libseqlib0 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libseqlib0 using apt by running the following command:

sudo apt -y install libseqlib0

Install libseqlib0 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 libseqlib0 using aptitude by running the following command:

sudo aptitude -y install libseqlib0

How To Uninstall libseqlib0 on Ubuntu 18.04

To uninstall only the libseqlib0 package we can use the following command:

sudo apt-get remove libseqlib0

Uninstall libseqlib0 And Its Dependencies

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

sudo apt-get -y autoremove libseqlib0

Remove libseqlib0 Configurations and Data

To remove libseqlib0 configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libseqlib0

Remove libseqlib0 configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libseqlib0

References

Summary

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