Get startedGet started for free

RNA-Seq Packages

We will be using DESeq2 for performing the differential expression analysis and additional R packages for data wrangling and plotting. Before we can run any analyses, we need to load the following packages DESeq2, RColorBrewer, pheatmap, and tidyverse.

This exercise is part of the course

RNA-Seq with Bioconductor in R

View Course

Exercise instructions

  • Using library(), import the packages DESeq2, RColorBrewer, pheatmap, and tidyverse.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Load library for DESeq2
library(___)

# Load library for RColorBrewer
library(___)

# Load library for pheatmap
library(___)

# Load library for tidyverse
library(___)
Edit and Run Code