How To Install damapper on Kali Linux
Introduction
In this tutorial we learn how to install damapper on Kali Linux.
What is damapper
damapper is:
Recognised as the Damapper Library, this is a long read to reference genome mapping command line tool.
For a given reference database ‘X’ and read block ‘Y’, damapper produces the single file ‘Y.X.las’. Each output file is sorted in order of the A-reads, and if a match is a chain of local alignments, then the LA’s in the chain occur in increasing order of A-coordinates.
HPC.damapper writes a UNIX shell script to the standard output that maps
every read in blocks
This package contains the damapper and HPC.damapper binaries.
There are three methods to install damapper 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 damapper Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install damapper using apt-get by running the following command:
sudo apt-get -y install damapperInstall damapper Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install damapper using apt by running the following command:
sudo apt -y install damapperInstall damapper 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 damapper using aptitude by running the following command:
sudo aptitude -y install damapperHow To Uninstall damapper on Kali Linux
To uninstall only the damapper package we can use the following command:
sudo apt-get remove damapperUninstall damapper And Its Dependencies
To uninstall damapper and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove damapperRemove damapper Configurations and Data
To remove damapper configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge damapperRemove damapper configuration, data, and all of its dependencies
We can use the following command to remove damapper configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge damapperDependencies
damapper have the following dependencies:
References
Summary
In this tutorial we learn how to install damapper package on Kali Linux using different package management tools: apt, apt-get and aptitude.