How To Install phast on Kali Linux
Introduction
In this tutorial we learn how to install phast on Kali Linux.
What is phast
phast is:
PHAST is a software package for comparative and evolutionary genomics. It consists of about half a dozen major programs, plus more than a dozen utilities for manipulating sequence alignments, phylogenetic trees, and genomic annotations. For the most part, PHAST focuses on two kinds of applications: the identification of novel functional elements, including protein-coding exons and evolutionarily conserved sequences; and statistical phylogenetic modeling, including estimation of model parameters, detection of signatures of selection, and reconstruction of ancestral sequences.
PHAST does not support phylogeny reconstruction or sequence alignment, and it is designed for use with DNA sequences only (see Comparison).
There are three methods to install phast 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 phast Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install phast using apt-get by running the following command:
sudo apt-get -y install phastInstall phast Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install phast using apt by running the following command:
sudo apt -y install phastInstall phast 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 phast using aptitude by running the following command:
sudo aptitude -y install phastHow To Uninstall phast on Kali Linux
To uninstall only the phast package we can use the following command:
sudo apt-get remove phastUninstall phast And Its Dependencies
To uninstall phast and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove phastRemove phast Configurations and Data
To remove phast configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge phastRemove phast configuration, data, and all of its dependencies
We can use the following command to remove phast configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge phastDependencies
phast have the following dependencies:
References
Summary
In this tutorial we learn how to install phast package on Kali Linux using different package management tools: apt, apt-get and aptitude.