R Bioconductor

R and Bioconductor

The HPC group supports Bioconductor by providing it in modules:

bio/R-bundle-Bioconductor

Please consider the general notes on R. Particularly the notes on optimization and parallelization.

In case you require any assistance, do not hesitate to approach us. Any feedback on usage, which can be documented and help others is much appreciated.

Installed Libraries

The number of installed libraries will vary over time. To see the installed Bioconductor libraries of a particular module, start up R and inquire with:

library(sessioninfo)
library(dplyr)

# list all installed packages
pkgs <- installed.packages()[,'Package']

## combine and filter for BioC only
bioc_pkgs <- tibble(pkgs, source) %>% filter(source = "Bioconductor")
options(tibble.print_max = Inf)
bioc_pkgs