Bulk RNA seq analysis on multiple conditions (4)
1
0
Entering edit mode
5 months ago
SO-YEON • 0

Hi guys,

I have bulk RNA sequencing data from samples treated with 4 different concentrations of a drug. I am trying to figure out whether there is a concentration dependent effect on gene expression. However, I'm not sure if this is possible because I find that a lot of RNA seq analysis involves pair-wise comparisons. I guess I can do pair-wise comparisons but I'm not sure how I would put all that data together, if this would show the concentration-dependent effect, and if there will be problems with statistics. I would really like to use ANOVA but it doesn't really seem like it's possible. I was wondering if a package out there that looks at this or if anyone has any experience with such data set? Thank you so much in advance!

RNA-seq • 524 views
ADD COMMENT
0
Entering edit mode
5 months ago
Gordon Smyth ★ 7.7k

limma, edgeR and DESeq2 all do ANOVA quite easily. See the User Guides. In the case of limma, you would use:

design <- model.matrix(~Concentration)
fit <- voomLmFit(y, design)
fit <- eBayes(fit)
topTable(fit, coef=2:4)

which outputs ANOVA F-tests.

ADD COMMENT

Login before adding your answer.

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