How To Install quorum on Ubuntu 18.04

In this tutorial we learn how to install quorum on Ubuntu 18.04. quorum is QUality Optimized Reads of genomic sequences

Introduction

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

What is quorum

quorum is:

QuorUM enables to obtain trimmed and error-corrected reads that result in assemblies with longer contigs and fewer errors. QuorUM provides best performance compared to other published error correctors in several metrics. QuorUM is efficiently implemented making use of current multi- core computing architectures and it is suitable for large data sets (1 billion bases checked and corrected per day per core). The third-party assembler (SOAPdenovo) benefits significantly from using QuorUM error- corrected reads. QuorUM error corrected reads result in a factor of 1.1 to 4 improvement in N50 contig size compared to using the original reads with SOAPdenovo for the data sets investigated.

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

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

sudo apt-get update

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

sudo apt-get -y install quorum

Install quorum Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install quorum

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

sudo aptitude -y install quorum

How To Uninstall quorum on Ubuntu 18.04

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

sudo apt-get remove quorum

Uninstall quorum And Its Dependencies

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

sudo apt-get -y autoremove quorum

Remove quorum Configurations and Data

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

sudo apt-get -y purge quorum

Remove quorum configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge quorum

References

Summary

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