How To Install seqsero on Kali Linux
Introduction
In this tutorial we learn how to install seqsero on Kali Linux.
What is seqsero
seqsero is:
SeqSero is a pipeline for Salmonella serotype determination from raw sequencing reads or genome assemblies.
SeqSero is a novel tool for determining Salmonella serotypes using high- throughput genome sequencing data. SeqSero is based on curated databases of Salmonella serotype determinants (rfb gene cluster, fliC and fljB alleles) and is predicted to determine serotype rapidly and accurately for nearly the full spectrum of Salmonella serotypes (more than 2,300 serotypes), from both raw sequencing reads and genome assemblies. The performance of SeqSero was evaluated by testing
- raw reads from genomes of 308 Salmonella isolates of known serotype
- raw reads from genomes of 3,306 Salmonella isolates sequenced and made publicly available by GenomeTrakr, a U.S. national monitoring network operated by the Food and Drug Administration; and
- 354 other publicly available draft or complete Salmonella genomes. SeqSero can help to maintain the well-established utility of Salmonella serotyping when integrated into a platform of WGS-based pathogen subtyping and characterization.
There are three methods to install seqsero 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 seqsero Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install seqsero using apt-get by running the following command:
sudo apt-get -y install seqseroInstall seqsero Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install seqsero using apt by running the following command:
sudo apt -y install seqseroInstall seqsero 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 seqsero using aptitude by running the following command:
sudo aptitude -y install seqseroHow To Uninstall seqsero on Kali Linux
To uninstall only the seqsero package we can use the following command:
sudo apt-get remove seqseroUninstall seqsero And Its Dependencies
To uninstall seqsero and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove seqseroRemove seqsero Configurations and Data
To remove seqsero configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge seqseroRemove seqsero configuration, data, and all of its dependencies
We can use the following command to remove seqsero configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge seqseroDependencies
seqsero have the following dependencies:
References
Summary
In this tutorial we learn how to install seqsero package on Kali Linux using different package management tools: apt, apt-get and aptitude.