How To Install indelible on Kali Linux
Introduction
In this tutorial we learn how to install indelible on Kali Linux.
What is indelible
indelible is:
INDELible is a new, portable, and flexible application for biological sequence simulation that combines many features in the same place for the first time. Using a length-dependent model of indel formation it can simulate evolution of multi-partitioned nucleotide, amino-acid, or codon data sets through the processes of insertion, deletion, and substitution in continuous time.
Nucleotide simulations may use the general unrestricted model or the general time reversible model and its derivatives, and amino-acid simulations can be conducted using fifteen different empirical rate matrices. Substitution rate heterogeneity can be modeled via the continuous and discrete gamma distributions, with or without a proportion of invariant sites. INDELible can also simulate under non-homogeneous and non-stationary conditions where evolutionary models are permitted to change across a phylogeny.
Unique among indel simulation programs, INDELible offers the ability to simulate using codon models that exhibit nonsynonymous/synonymous rate ratio heterogeneity among sites and/or lineages.
There are three methods to install indelible 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 indelible Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install indelible using apt-get by running the following command:
sudo apt-get -y install indelibleInstall indelible Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install indelible using apt by running the following command:
sudo apt -y install indelibleInstall indelible 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 indelible using aptitude by running the following command:
sudo aptitude -y install indelibleHow To Uninstall indelible on Kali Linux
To uninstall only the indelible package we can use the following command:
sudo apt-get remove indelibleUninstall indelible And Its Dependencies
To uninstall indelible and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove indelibleRemove indelible Configurations and Data
To remove indelible configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge indelibleRemove indelible configuration, data, and all of its dependencies
We can use the following command to remove indelible configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge indelibleDependencies
indelible have the following dependencies:
References
Summary
In this tutorial we learn how to install indelible package on Kali Linux using different package management tools: apt, apt-get and aptitude.