ComeçarComece de graça

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.

Este exercício faz parte do curso

RNA-Seq with Bioconductor in R

Ver curso

Instruções do exercício

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

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Load library for DESeq2
library(___)

# Load library for RColorBrewer
library(___)

# Load library for pheatmap
library(___)

# Load library for tidyverse
library(___)
Editar e executar o código