limma: The topTable function implementation when outputin the differential expression results from RNA-seq dataset?
1
0
Entering edit mode
heikki.sarin ▴ 10
@heikkisarin-13379
Last seen 3.3 years ago

Hi,

So I'm trying to test differential gene expression on case/control study across all time points when accounting for the within subject variability. I know the full and reduced models between which I want to test (if I could use LRT) with but I'm a bit unsure how to apply it to the limma+voom pipeline presented in Limma manual.

Models for LRT testing:

Full: ~condition + time + condition:subject.nested + condition:time (model.matrix with 36 coefs)

Reduced: ~condition + time + condition:subject.nested (model.matrix with 34 coefs)

The code I've been using in LIMMA+VOOM pipeline:

dge <- DGEList(counts=countdata, samples = coldata, group = coldata$CASE_CONTROL)

keep <- rowSums(cpm(dge)>1) >= 2

dge <- dge[keep, , keep.lib.sizes=FALSE]

dge <- calcNormFactors(dge)

v <- voom(dge, design, plot=TRUE)

fit <- lmFit(v, design)
fit <- eBayes(fit, robust = TRUE)

I know I can output the results with topTable but I'm not quite sure how to define the coef's in proper way so that I could get the answers I want --> which genes are differentially expressed "between" case/control groups across any of the time points when accounting for the within subject variability. I've tried resLIMMAfilt3536 <- topTable(fit, coef=35:36) - but not sure if it the way to achieve wanted answers. What kind of statistical backgroud topTable uses to extract the results from fit? 

 

Really would appreciate the help.

limma voom edgeR toptable output • 1.7k views
ADD COMMENT
1
Entering edit mode
Aaron Lun ★ 28k
@alun
Last seen 4 hours ago
The city by the bay

Setting coef=35:36 will perform a moderated F-test against the null hypothesis that the 35th and 36th coefficients are both equal to zero. I'm guessing that these coefficients correspond to the condition-specific time effect in your full model; so rejections will identify genes that exhibit a time effect in either condition. Of course, this is dependent on correctly interpreting the coefficients, which is not always simple in a complex parametrization.

ADD COMMENT

Login before adding your answer.

Traffic: 946 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6