| Audience | Computational Skills | Prerequisites | Duration |
|---|---|---|---|
| Biologists | Intermediate R | Introduction to R | 1.5-day workshop (~10 hours of trainer-led time) |
This repository has teaching materials for a 1.5-day, hands-on Introduction to differential gene expression (DGE) analysis workshop. The workshop will lead participants through performing a differential gene expression analysis workflow on RNA-seq count data using R/RStudio. Working knowledge of R is required or completion of the Introduction to R workshop.
- QC on count data using Principal Component Analysis (PCA) and heirarchical clustering
- Using DESeq2 to obtain a list of significantly different genes
- Visualizing expression patterns of differentially expressed genes
- Performing functional analysis on gene lists with R-based tools
These materials are developed for a trainer-led workshop, but also amenable to self-guided learning.
| Lessons | Duration |
|---|---|
| Setting up and DGE overview | 70 min |
| Introduction to count normalization | 60 min |
| QC using principal component analysis (PCA) and heirarchical clustering | 90 min |
| Getting started with DESeq2 | 70 min |
| Pairwise comparisons with DEseq2 | 45 min |
| Visualization of DGE analysis results | 45 min |
| Summary of DGE workflow | 15 min |
| Complex designs with DESeq2 (LRT) | 60 min |
| Functional Analysis | 85 min |
Download the most recent versions of R and RStudio for your laptop:
Install the required R packages by running the following code in RStudio:
source("http://bioconductor.org/biocLite.R")
biocLite(c("RColorBrewer", "pheatmap", "gProfileR", "DESeq2", "clusterProfiler",
"DOSE", "org.Hs.eg.db", "pathview", "treemap", "purrr", "SPIA", "DEGreport"))Load the libraries to make sure the packages installed properly:
library(DESeq2)
library(ggplot2)
library(RColorBrewer)
library(pheatmap)
library(clusterProfiler)
library(DEGreport)
library(org.Hs.eg.db)
library(DOSE)
library(pathview)
library(SPIA)
library(purrr)
library(gProfileR)
library(treemap)After completion of the workshop, practice of concepts can be explored with these exercises. An answer key is available to check answers.
These materials have been developed by members of the teaching team at the Harvard Chan Bioinformatics Core (HBC). These are open access materials distributed under the terms of the Creative Commons Attribution license (CC BY 4.0), which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited.