How To Install canu on Kali Linux
Introduction
In this tutorial we learn how to install canu on Kali Linux.
What is canu
canu is:
Canu is a fork of the Celera Assembler, designed for high-noise single-molecule sequencing (such as the PacBio RS II or Oxford Nanopore MinION).
Canu is a hierarchical assembly pipeline which runs in four steps:
- Detect overlaps in high-noise sequences using MHAP
- Generate corrected sequence consensus
- Trim corrected sequences
- Assemble trimmed corrected sequences
There are three methods to install canu 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 canu Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install canu using apt-get by running the following command:
sudo apt-get -y install canuInstall canu Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install canu using apt by running the following command:
sudo apt -y install canuInstall canu 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 canu using aptitude by running the following command:
sudo aptitude -y install canuHow To Uninstall canu on Kali Linux
To uninstall only the canu package we can use the following command:
sudo apt-get remove canuUninstall canu And Its Dependencies
To uninstall canu and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove canuRemove canu Configurations and Data
To remove canu configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge canuRemove canu configuration, data, and all of its dependencies
We can use the following command to remove canu configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge canuDependencies
canu have the following dependencies:
References
Summary
In this tutorial we learn how to install canu package on Kali Linux using different package management tools: apt, apt-get and aptitude.