Introduction
In this tutorial we learn how to install sumaclust
on Kali Linux.
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 Kali Linux. 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 on Kali Linux first since aptitude is usually not installed by default on Kali Linux. 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 Kali Linux
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 Kali Linux, we can use the command below:
sudo apt-get -y autoremove sumaclust
Remove sumaclust Configurations and Data
To remove sumaclust
configuration and data from Kali Linux 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
Dependencies
sumaclust have the following dependencies:
References
Summary
In this tutorial we learn how to install sumaclust
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.