How To Install r-bioc-delayedarray on Kali Linux
Introduction
In this tutorial we learn how to install r-bioc-delayedarray
on Kali Linux.
What is r-bioc-delayedarray
r-bioc-delayedarray is:
Wrapping an array-like object (typically an on-disk object) in a DelayedArray object allows one to perform common array operations on it without loading the object in memory. In order to reduce memory usage and optimize performance, operations on the object are either delayed or executed using a block processing mechanism. Note that this also works on in-memory array-like objects like DataFrame objects (typically with Rle columns), Matrix objects, and ordinary arrays and data frames.
There are three methods to install r-bioc-delayedarray
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-delayedarray 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-delayedarray
using apt-get
by running the following command:
sudo apt-get -y install r-bioc-delayedarray
Install r-bioc-delayedarray Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install r-bioc-delayedarray
using apt
by running the following command:
sudo apt -y install r-bioc-delayedarray
Install r-bioc-delayedarray 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-delayedarray
using aptitude
by running the following command:
sudo aptitude -y install r-bioc-delayedarray
How To Uninstall r-bioc-delayedarray on Kali Linux
To uninstall only the r-bioc-delayedarray
package we can use the following command:
sudo apt-get remove r-bioc-delayedarray
Uninstall r-bioc-delayedarray And Its Dependencies
To uninstall r-bioc-delayedarray
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove r-bioc-delayedarray
Remove r-bioc-delayedarray Configurations and Data
To remove r-bioc-delayedarray
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge r-bioc-delayedarray
Remove r-bioc-delayedarray configuration, data, and all of its dependencies
We can use the following command to remove r-bioc-delayedarray
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge r-bioc-delayedarray
Dependencies
r-bioc-delayedarray have the following dependencies:
- r-base-core
- r-api-4.0
- r-api-bioc-3.12
- r-cran-matrix
- r-bioc-biocgenerics
- r-bioc-matrixgenerics
- r-bioc-s4vectors
- r-bioc-iranges
- libc6
References
Summary
In this tutorial we learn how to install r-bioc-delayedarray
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.