DTE analysis with STAR + RSEM input
Load required libraries
library(data.table)
library(DESeq2)
library(apeglm)
library(ggplot2)
library(ggrepel)
library(EnhancedVolcano)Import input data
dir = "../../"
sampleData = paste0(dir, "clinical.txt")
sampleData = fread(sampleData)
rownames(sampleData) = sampleData$ENA_RUN
sampleData$individual = as.factor(sampleData$individual)
sampleData$paris_classification = as.factor(sampleData$paris_classification)
# Use relevel() to set adjacent normal samples as reference
sampleData$paris_classification = relevel(sampleData$paris_classification, ref = "normal")
files = list.files(paste0(dir, "rsem_star"), "*soforms.results$", full.names = T)* Import input data (tximport)
Differential expression analysis
Exploring results
MA-plot

Principal component plot of the samples


Volcano plots

Exporting results
Session info
PreviousDTE analysis with Salmon/Kallisto inputNextDGE and DTE analysis of Salmon/Kallisto inputs using Sleuth
Last updated