How To Install libbio-db-embl-perl on Debian 12

Learn how to install libbio-db-embl-perl on Debian 12 with this tutorial. libbio-db-embl-perl is Database object interface for EMBL entry retrieval

Introduction

In this tutorial we learn how to install libbio-db-embl-perl on Debian 12.

What is libbio-db-embl-perl

libbio-db-embl-perl is:

Allows the dynamic retrieval of sequence objects Bio::Seq from the EMBL database using the dbfetch script at EBI: http://www.ebi.ac.uk/Tools/dbfetch/dbfetch.

In order to make changes transparent host type (currently only ebi) and location (defaults to ebi) were separated out. This allows later additions of more servers in different geographical locations.

The functionality of this module is inherited from Bio::DB::DBFetch which implements Bio::DB::WebDBSeqI.

There are three methods to install libbio-db-embl-perl on Debian 12. 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-embl-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-embl-perl using apt-get by running the following command:

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

Install libbio-db-embl-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

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

Install libbio-db-embl-perl Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

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

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

How To Uninstall libbio-db-embl-perl on Debian 12

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

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

Uninstall libbio-db-embl-perl And Its Dependencies

To uninstall libbio-db-embl-perl and its dependencies that are no longer needed by Debian 12, we can use the command below:

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

Remove libbio-db-embl-perl Configurations and Data

To remove libbio-db-embl-perl configuration and data from Debian 12 we can use the following command:

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

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

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

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

Dependencies

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

References

Summary

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