How To Install sumaclust on Ubuntu 18.04

In this tutorial we learn how to install sumaclust on Ubuntu 18.04. sumaclust is fast and exact clustering of genomic sequences

Introduction

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

What is sumaclust

sumaclust is:

With the development of next-generation sequencing, efficient tools are needed to handle millions of sequences in reasonable amounts of time. Sumaclust is a program developed by the LECA. Sumaclust aims to cluster sequences in a way that is fast and exact at the same time. This tool has been developed to be adapted to the type of data generated by DNA metabarcoding, i.e. entirely sequenced, short markers. Sumaclust clusters sequences using the same clustering algorithm as UCLUST and CD- HIT. This algorithm is mainly useful to detect the ’erroneous’ sequences created during amplification and sequencing protocols, deriving from ’true’ sequences.

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

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

sudo apt-get update

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

sudo apt-get -y install sumaclust

Install sumaclust Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install sumaclust

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

sudo aptitude -y install sumaclust

How To Uninstall sumaclust on Ubuntu 18.04

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

sudo apt-get remove sumaclust

Uninstall sumaclust And Its Dependencies

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

sudo apt-get -y autoremove sumaclust

Remove sumaclust Configurations and Data

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

sudo apt-get -y purge sumaclust

Remove sumaclust configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge sumaclust

References

Summary

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