Created
May 11, 2017 19:28
-
-
Save dfjenkins3/e6565518d9bff7a5537bf73156dc6dfd to your computer and use it in GitHub Desktop.
Simple Limma Function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(limma) | |
library(edgeR) | |
# function to return the toptable from limma | |
# indata: raw count matrix for all kras comparisons | |
# subsetcols: column indices for columns that you want to subset | |
# firstannot: the name of the first annotation | |
# secondannot: the name of the second annotation | |
get_toptable <- function(indata, subsetcols, firstannot, secondannot){ | |
subset_gfp_wt <- indata[,subsetcols] | |
design <- model.matrix(~factor(c(rep(firstannot,9),rep(secondannot,9)))) | |
subset_gfp_wt <- subset_gfp_wt[rowSums(subset_gfp_wt) != 0,] | |
dge <- DGEList(counts=subset_gfp_wt) | |
dge <- calcNormFactors(dge) | |
logCPM <- cpm(dge, log=TRUE, prior.count=3) | |
fit <- lmFit(logCPM, design) | |
fit <- eBayes(fit, trend=TRUE) | |
return(topTable(fit, coef=ncol(design), number = nrow(subset_gfp_wt))) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment