2.2 Getting started with R and Bioconductor

Install R and RStudio if you haven’t done so already (see resources)

Install Bioconductor

install.packages("BiocManager")

https://www.bioconductor.org/install/

Installing Bioconductor packages

BiocManager::install("xyzpackage")

Installing packages from Github

library(devtools)
devtools::install_github("compgenomr/compGenomRData")