How To Install nim-hts-examples on Kali Linux
Introduction
In this tutorial we learn how to install nim-hts-examples on Kali Linux.
What is nim-hts-examples
nim-hts-examples is:
The hts library is well accepted for the handling of millions of DNA sequences from what once was the high-throughput sequencing machines in biological research and medical diagnostics/therapy control.
This package contains a test data set as well as sample scripts running some test suite provided by Debian also as autopkgtest.
There are three methods to install nim-hts-examples 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 nim-hts-examples Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install nim-hts-examples using apt-get by running the following command:
sudo apt-get -y install nim-hts-examplesInstall nim-hts-examples Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install nim-hts-examples using apt by running the following command:
sudo apt -y install nim-hts-examplesInstall nim-hts-examples 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 nim-hts-examples using aptitude by running the following command:
sudo aptitude -y install nim-hts-examplesHow To Uninstall nim-hts-examples on Kali Linux
To uninstall only the nim-hts-examples package we can use the following command:
sudo apt-get remove nim-hts-examplesUninstall nim-hts-examples And Its Dependencies
To uninstall nim-hts-examples and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove nim-hts-examplesRemove nim-hts-examples Configurations and Data
To remove nim-hts-examples configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge nim-hts-examplesRemove nim-hts-examples configuration, data, and all of its dependencies
We can use the following command to remove nim-hts-examples configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge nim-hts-examplesDependencies
nim-hts-examples have the following dependencies:
References
Summary
In this tutorial we learn how to install nim-hts-examples package on Kali Linux using different package management tools: apt, apt-get and aptitude.