How To Install r-bioc-iranges on Kali Linux

In this tutorial we learn how to install r-bioc-iranges on Kali Linux. r-bioc-iranges is GNU R low-level containers for storing sets of integer ranges

Introduction

In this tutorial we learn how to install r-bioc-iranges on Kali Linux.

What is r-bioc-iranges

r-bioc-iranges is:

The IRanges class and its extensions are low-level containers for storing sets of integer ranges. A typical use of these containers in biology is for representing a set of chromosome regions. More specific extensions of the IRanges class will typically allow the storage of additional information attached to each chromosome region as well as a hierarchical relationship between these regions.

There are three methods to install r-bioc-iranges 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 r-bioc-iranges Using apt-get

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

sudo apt-get update

After updating apt database, We can install r-bioc-iranges using apt-get by running the following command:

sudo apt-get -y install r-bioc-iranges

Install r-bioc-iranges Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install r-bioc-iranges using apt by running the following command:

sudo apt -y install r-bioc-iranges

Install r-bioc-iranges 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 r-bioc-iranges using aptitude by running the following command:

sudo aptitude -y install r-bioc-iranges

How To Uninstall r-bioc-iranges on Kali Linux

To uninstall only the r-bioc-iranges package we can use the following command:

sudo apt-get remove r-bioc-iranges

Uninstall r-bioc-iranges And Its Dependencies

To uninstall r-bioc-iranges and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove r-bioc-iranges

Remove r-bioc-iranges Configurations and Data

To remove r-bioc-iranges configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge r-bioc-iranges

Remove r-bioc-iranges configuration, data, and all of its dependencies

We can use the following command to remove r-bioc-iranges configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge r-bioc-iranges

Dependencies

r-bioc-iranges have the following dependencies:

References

Summary

In this tutorial we learn how to install r-bioc-iranges package on Kali Linux using different package management tools: apt, apt-get and aptitude.