How To Install insilicoseq on Kali Linux
Introduction
In this tutorial we learn how to install insilicoseq on Kali Linux.
What is insilicoseq
insilicoseq is:
Primarily intended for simulating metagenomic samples, it can also be used to produce sequencing data from a single genome.
InSilicoSeq is written in Python, and use kernel density estimators to model the read quality of real sequencing data.
InSilicoSeq support substitution, insertion and deletion errors. If you don’t have the use for insertion and deletion error a basic error model is provided.
There are three methods to install insilicoseq 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 insilicoseq Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install insilicoseq using apt-get by running the following command:
sudo apt-get -y install insilicoseqInstall insilicoseq Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install insilicoseq using apt by running the following command:
sudo apt -y install insilicoseqInstall insilicoseq 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 insilicoseq using aptitude by running the following command:
sudo aptitude -y install insilicoseqHow To Uninstall insilicoseq on Kali Linux
To uninstall only the insilicoseq package we can use the following command:
sudo apt-get remove insilicoseqUninstall insilicoseq And Its Dependencies
To uninstall insilicoseq and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove insilicoseqRemove insilicoseq Configurations and Data
To remove insilicoseq configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge insilicoseqRemove insilicoseq configuration, data, and all of its dependencies
We can use the following command to remove insilicoseq configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge insilicoseqDependencies
insilicoseq have the following dependencies:
- python3-biopython
- python3-future
- python3-joblib
- python3-numpy
- python3-pysam
- python3-requests
- python3-scipy
- python3
References
Summary
In this tutorial we learn how to install insilicoseq package on Kali Linux using different package management tools: apt, apt-get and aptitude.