R package to perform DEG analysis using Wilcox rank test, DESeq2, and edgeR methods
devtools::install_github("nicolau/multiDEG")
library(DESeq2)
library(edgeR)
library(tidyverse)
library(VennDiagram)
data(raw.exp)
data(phenodata)
results <- DEG_analysis(raw.exp = raw.exp, phenodata = phenodata, treated = "INF", nontreated = "CTRL", class.column = "Class", adjust.method = "fdr", covariables = NULL, paired.samples.column = NULL)
plot(listDEGs = results, type = "up")
plot(listDEGs = results, type = "down")