RUVseq uses the the edgeR differential analysis
1
0
Entering edit mode
9.6 years ago
tonja.r ▴ 600

I am investigating the RUVseq right now and have noticed that they are using glm model of the edgeR to estimate the common and tag wise dispersion. From edgeR manual I read that one would use GLM model for general experiments with multiple factors. However, in RUVseq tutorial in the example they have only one factor control and treated. Why do they still use GLM model and not normal estimateCommonDisp() and estimateTagwiseDisp()?

design <- model.matrix(~x, data=pData(set))
y <- DGEList(counts=counts(set), group=x)
y <- calcNormFactors(y, method="upperquartile")
y <- estimateGLMCommonDisp(y, design)
y <- estimateGLMTagwiseDisp(y, design)
R • 2.8k views
ADD COMMENT
1
Entering edit mode
9.6 years ago

They do this for simplicity so they don't need to implement both methods. The results should be similar enough that I can't really blame them.

ADD COMMENT

Login before adding your answer.

Traffic: 4907 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