How To Install libbio-featureio-perl on Kali Linux
Introduction
In this tutorial we learn how to install libbio-featureio-perl on Kali Linux.
What is libbio-featureio-perl
libbio-featureio-perl is:
An I/O iterator subsystem for genomic sequence features.
Bio::FeatureIO is a handler module for the formats in the FeatureIO set (eg, Bio::FeatureIO::GFF). It is the officially sanctioned way of getting at the format objects, which most people should use.
The Bio::FeatureIO system can be thought of like biological file handles. They are attached to filehandles with smart formatting rules (eg, GFF format, or BED format) and can either read or write feature objects (Bio::SeqFeature objects, or more correctly, Bio::FeatureHolderI implementing objects, of which Bio::SeqFeature is one such object). If you want to know what to do with a Bio::SeqFeatureI object, read Bio::SeqFeatureI.
The idea is that you request a stream object for a particular format. All the stream objects have a notion of an internal file that is read from or written to. A particular FeatureIO object instance is configured for either input or output. A specific example of a stream object is the Bio::FeatureIO::gff object.
There are three methods to install libbio-featureio-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-featureio-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libbio-featureio-perl using apt-get by running the following command:
sudo apt-get -y install libbio-featureio-perlInstall libbio-featureio-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libbio-featureio-perl using apt by running the following command:
sudo apt -y install libbio-featureio-perlInstall libbio-featureio-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 updateAfter updating apt database, We can install libbio-featureio-perl using aptitude by running the following command:
sudo aptitude -y install libbio-featureio-perlHow To Uninstall libbio-featureio-perl on Kali Linux
To uninstall only the libbio-featureio-perl package we can use the following command:
sudo apt-get remove libbio-featureio-perlUninstall libbio-featureio-perl And Its Dependencies
To uninstall libbio-featureio-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libbio-featureio-perlRemove libbio-featureio-perl Configurations and Data
To remove libbio-featureio-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libbio-featureio-perlRemove libbio-featureio-perl configuration, data, and all of its dependencies
We can use the following command to remove libbio-featureio-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libbio-featureio-perlDependencies
libbio-featureio-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libbio-featureio-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.