How To Install multiqc on Kali Linux
Introduction
In this tutorial we learn how to install multiqc
on Kali Linux.
What is multiqc
multiqc is:
The sequencing of DNA or RNA with current high-throughput technologies involves an array of tools and these are applied over a range of samples. It is easy to loose oversight. And gathering the data and forwarding them in a readable manner to the individuals who took the samples is a challenge for a tool in itself. Well. Here it is. MultiQC aggregates the output of multiple tools into a single report.
Reports are generated by scanning given directories for recognised log files. These are parsed and a single HTML report is generated summarising the statistics for all logs found. MultiQC reports can describe multiple analysis steps and large numbers of samples within a single plot, and multiple analysis tools making it ideal for routine fast quality control.
There are three methods to install multiqc
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 multiqc Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install multiqc
using apt-get
by running the following command:
sudo apt-get -y install multiqc
Install multiqc Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install multiqc
using apt
by running the following command:
sudo apt -y install multiqc
Install multiqc 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 update
After updating apt database, We can install multiqc
using aptitude
by running the following command:
sudo aptitude -y install multiqc
How To Uninstall multiqc on Kali Linux
To uninstall only the multiqc
package we can use the following command:
sudo apt-get remove multiqc
Uninstall multiqc And Its Dependencies
To uninstall multiqc
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove multiqc
Remove multiqc Configurations and Data
To remove multiqc
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge multiqc
Remove multiqc configuration, data, and all of its dependencies
We can use the following command to remove multiqc
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge multiqc
Dependencies
multiqc have the following dependencies:
- python3-click
- python3-coloredlogs
- python3-future
- python3-jinja2
- python3-lzstring
- python3-markdown
- python3-matplotlib
- python3-networkx
- python3-numpy
- python3-requests
- python3-simplejson
- python3-spectra
- python3-yaml
- python3
References
Summary
In this tutorial we learn how to install multiqc
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.