Nothing
suppressPackageStartupMessages(library(Biobase))
suppressPackageStartupMessages(library(DESeq2))
suppressPackageStartupMessages(library(edgeR))
suppressPackageStartupMessages(library(limma))
suppressPackageStartupMessages(library(samr))
suppressPackageStartupMessages(library(DSS))
suppressPackageStartupMessages(library(EBSeq))
suppressPackageStartupMessages(library(iCOBRA))
source("makeSim.R")
source("runScripts.R")
algos <- list("DESeq2"=runDESeq2,
"edgeR"=runEdgeR,
"DSS"=runDSSFDR,
"voom"=runVoom,
"SAMseq"=runSAMseqFDR,
"EBSeq"=runEBSeq)
n <- 10000
mLevels <- c(6, 8, 10) # total sample size
derLevels <- c(.05, .1, .2) # DE ratio
grid <- expand.grid(
m=mLevels,
der=derLevels)
library("parallel")
options(mc.cores=2)
# only simulate with base mean > 10
load("meanDispPairs_bottomly.rda")
mdp <- meanDispPairs[meanDispPairs$mean > 10,]
cdList <- mclapply(seq_len(nrow(grid)), function(i) {
set.seed(i)
m <- grid$m[i]
der <- grid$der[i]
condition <- factor(rep(c("A","B"), each = m/2))
x <- model.matrix(~ condition)
beta <- c(rep(0, (1-der) * n),
runif(der * n,.5,2)) # half will get flipped negative in makeSim
sim <- makeSim(n,m,x,beta,mdp)
mat <- sim$mat
beta <- sim$beta
status <- as.integer(beta != 0)
mean.bin <- cut(log10(sim$mu0), c(-Inf,2,3,Inf))
truth <- data.frame(status=status, logFC=beta, mean.bin=mean.bin)
e <- ExpressionSet(mat, AnnotatedDataFrame(data.frame(condition)))
system.time({
resTest <- lapply(algos, function(f) f(e))
})
cd <- COBRAData(pval = data.frame(lapply(resTest, `[[`, "pval")),
padj = data.frame(lapply(resTest, `[[`, "padj")),
score = data.frame(lapply(resTest, `[[`, "logFC")),
truth = truth)
cd@score$EBSeq <- cd@score$edgeR # inject LFC estimate for EBSeq
cd
})
plotList <- list()
for (i in seq_len(nrow(grid))) {
cat(i, "")
cp <- calculate_performance(cdList[[i]],
binary_truth = "status", cont_truth = "logFC",
thrs=c(.05, .1),
aspects=c("fdrtpr","fdrtprcurve"))
cobraplot <- prepare_data_for_plot(cp)
title <- paste0("m=", grid$m[i], "; ratio=", grid$der[i])
plotList[[i]] <- plot_fdrtprcurve(cobraplot, title=title,
xaxisrange=c(0, 0.3),
yaxisrange=c(0.7, 1))
}
library(cowplot)
png(file="icobra.png", width=1500, height=1500)
do.call(plot_grid, plotList)
dev.off()
write.table(session_info()$packages,
file="icobra_pkg_versions.txt",
quote=FALSE, sep="\t", row.names=FALSE)
save(cdList, file="icobra.rda")
if (FALSE) {
load("bottomly_sumexp.RData")
bottomly.se <- updateObject(bottomly)
levels(bottomly.se$strain) <- c("C","D")
bottomly.se$batch <- factor(bottomly.se$experiment.number)
bottomly.se <- DESeqDataSet(bottomly.se, ~batch + strain)
bottomly.se <- estimateSizeFactors(bottomly.se)
bottomly.se <- estimateDispersions(bottomly.se)
meanDispPairs <- with(mcols(bottomly.se),
data.frame(mean=baseMean, disp=dispGeneEst))
meanDispPairs <- meanDispPairs[meanDispPairs$disp > 1e-6,]
meanDispPairs <- meanDispPairs[!is.na(meanDispPairs$mean),]
save(meanDispPairs, file="meanDispPairs_bottomly.rda")
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.