How To Install voronota on Kali Linux
Introduction
In this tutorial we learn how to install voronota on Kali Linux.
What is voronota
voronota is:
The analysis of macromolecular structures often requires a comprehensive definition of atomic neighborhoods. Such a definition can be based on the Voronoi diagram of balls, where each ball represents an atom of some van der Waals radius. Voronota is a software tool for finding all the vertices of the Voronoi diagram of balls. Such vertices correspond to the centers of the empty tangent spheres defined by quadruples of balls. Voronota is especially suitable for processing three-dimensional structures of biological macromolecules such as proteins and RNA.
Since version 1.2 Voronota also uses the Voronoi vertices to construct inter-atom contact surfaces and solvent accessible surfaces. Voronota provides tools to query contacts, generate contacts graphics, compare contacts and evaluate quality of protein structural models using contacts.
There are three methods to install voronota 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 voronota Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install voronota using apt-get by running the following command:
sudo apt-get -y install voronotaInstall voronota Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install voronota using apt by running the following command:
sudo apt -y install voronotaInstall voronota 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 voronota using aptitude by running the following command:
sudo aptitude -y install voronotaHow To Uninstall voronota on Kali Linux
To uninstall only the voronota package we can use the following command:
sudo apt-get remove voronotaUninstall voronota And Its Dependencies
To uninstall voronota and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove voronotaRemove voronota Configurations and Data
To remove voronota configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge voronotaRemove voronota configuration, data, and all of its dependencies
We can use the following command to remove voronota configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge voronotaDependencies
voronota have the following dependencies:
References
Summary
In this tutorial we learn how to install voronota package on Kali Linux using different package management tools: apt, apt-get and aptitude.