How To Install presto on Kali Linux
Introduction
In this tutorial we learn how to install presto on Kali Linux.
What is presto
presto is:
pRESTO is a toolkit for processing raw reads from high-throughput sequencing of B cell and T cell repertoires.
Dramatic improvements in high-throughput sequencing technologies now enable large-scale characterization of lymphocyte repertoires, defined as the collection of trans-membrane antigen-receptor proteins located on the surface of B cells and T cells. The REpertoire Sequencing TOolkit (pRESTO) is composed of a suite of utilities to handle all stages of sequence processing prior to germline segment assignment. pRESTO is designed to handle either single reads or paired-end reads. It includes features for quality control, primer masking, annotation of reads with sequence embedded barcodes, generation of unique molecular identifier (UMI) consensus sequences, assembly of paired-end reads and identification of duplicate sequences. Numerous options for sequence sorting, sampling and conversion operations are also included.
There are three methods to install presto 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 presto Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install presto using apt-get by running the following command:
sudo apt-get -y install prestoInstall presto Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install presto using apt by running the following command:
sudo apt -y install prestoInstall presto 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 updateAfter updating apt database, We can install presto using aptitude by running the following command:
sudo aptitude -y install prestoHow To Uninstall presto on Kali Linux
To uninstall only the presto package we can use the following command:
sudo apt-get remove prestoUninstall presto And Its Dependencies
To uninstall presto and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove prestoRemove presto Configurations and Data
To remove presto configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge prestoRemove presto configuration, data, and all of its dependencies
We can use the following command to remove presto configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge prestoDependencies
presto have the following dependencies:
References
Summary
In this tutorial we learn how to install presto package on Kali Linux using different package management tools: apt, apt-get and aptitude.