How To Install eigensoft on Kali Linux
Introduction
In this tutorial we learn how to install eigensoft on Kali Linux.
What is eigensoft
eigensoft is:
The EIGENSOFT package combines functionality from the group’s population genetics methods (Patterson et al. 2006) and their EIGENSTRAT stratification method (Price et al. 2006). The EIGENSTRAT method uses principal components analysis to explicitly model ancestry differences between cases and controls along continuous axes of variation; the resulting correction is specific to a candidate marker’s variation in frequency across ancestral populations, minimizing spurious associations while maximizing power to detect true associations. The EIGENSOFT package has a built-in plotting script and supports multiple file formats and quantitative phenotypes.
There are three methods to install eigensoft 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 eigensoft Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install eigensoft using apt-get by running the following command:
sudo apt-get -y install eigensoftInstall eigensoft Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install eigensoft using apt by running the following command:
sudo apt -y install eigensoftInstall eigensoft 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 eigensoft using aptitude by running the following command:
sudo aptitude -y install eigensoftHow To Uninstall eigensoft on Kali Linux
To uninstall only the eigensoft package we can use the following command:
sudo apt-get remove eigensoftUninstall eigensoft And Its Dependencies
To uninstall eigensoft and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove eigensoftRemove eigensoft Configurations and Data
To remove eigensoft configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge eigensoftRemove eigensoft configuration, data, and all of its dependencies
We can use the following command to remove eigensoft configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge eigensoftDependencies
eigensoft have the following dependencies:
References
Summary
In this tutorial we learn how to install eigensoft package on Kali Linux using different package management tools: apt, apt-get and aptitude.