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
.
Diese Übung ist Teil des Kurses
RNA-Seq with Bioconductor in R
Anleitung zur Übung
- Using
library()
, import the packagesDESeq2
,RColorBrewer
,pheatmap
, andtidyverse
.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Load library for DESeq2
library(___)
# Load library for RColorBrewer
library(___)
# Load library for pheatmap
library(___)
# Load library for tidyverse
library(___)