☰ Menu

      RNA Seq Differential Expression and Enrichment Analysis

Home
Preliminaries
Before the course
File downloads
Data Analysis
Differential Expression
Enrichment Analysis
R Code for Quizzes
Upcoming
Upcoming Bioinformatics Core Courses

Please complete the following before the course

install.packages("BiocManager")
BiocManager::install("edgeR")
BiocManager::install("org.Mm.eg.db")
BiocManager::install("topGO")
BiocManager::install("KEGGREST")
BiocManager::install("gplots")
BiocManager::install("pathview")
BiocManager::install("Rgraphviz")
BiocManager::install("RColorBrewer")

Test the installations by cutting and pasting these lines into your RStudio console (don’t worry if you get messages about an object being masked):

library(edgeR)
library(org.Mm.eg.db)
library(topGO)
library(KEGGREST)
library(gplots)
library(pathview)
library(Rgraphviz)
library(RColorBrewer)