How To Install libbio-db-swissprot-perl on Kali Linux

In this tutorial we learn how to install libbio-db-swissprot-perl on Kali Linux. libbio-db-swissprot-perl is Database object interface to SwissProt retrieval

Introduction

In this tutorial we learn how to install libbio-db-swissprot-perl on Kali Linux.

What is libbio-db-swissprot-perl

libbio-db-swissprot-perl is:

SwissProt is a curated database of proteins managed by the Swiss Bioinformatics Institute. Additional tools for parsing and manipulating swissprot files can be found at ftp://ftp.ebi.ac.uk/pub/software/swissprot/Swissknife/.

Allows the dynamic retrieval of Sequence objects (Bio::Seq) from the SwissProt database via an Expasy retrieval.

In order to make changes transparent host type (currently only expasy) and location (default to Switzerland) is separated out. This allows the user to pick the closest Expasy mirror for running their queries.

There are three methods to install libbio-db-swissprot-perl 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 libbio-db-swissprot-perl Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libbio-db-swissprot-perl using apt-get by running the following command:

sudo apt-get -y install libbio-db-swissprot-perl

Install libbio-db-swissprot-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libbio-db-swissprot-perl using apt by running the following command:

sudo apt -y install libbio-db-swissprot-perl

Install libbio-db-swissprot-perl 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 libbio-db-swissprot-perl using aptitude by running the following command:

sudo aptitude -y install libbio-db-swissprot-perl

How To Uninstall libbio-db-swissprot-perl on Kali Linux

To uninstall only the libbio-db-swissprot-perl package we can use the following command:

sudo apt-get remove libbio-db-swissprot-perl

Uninstall libbio-db-swissprot-perl And Its Dependencies

To uninstall libbio-db-swissprot-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libbio-db-swissprot-perl

Remove libbio-db-swissprot-perl Configurations and Data

To remove libbio-db-swissprot-perl configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libbio-db-swissprot-perl

Remove libbio-db-swissprot-perl configuration, data, and all of its dependencies

We can use the following command to remove libbio-db-swissprot-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libbio-db-swissprot-perl

Dependencies

libbio-db-swissprot-perl have the following dependencies:

References

Summary

In this tutorial we learn how to install libbio-db-swissprot-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.