This is a test version of Biostars. For the public version, visit https://www.biostars.org.
RUVseq uses the the edgeR differential analysis

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

1 answer

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.

Log in to answer this question.