How to choose statistical test method appropriate to my experiment design?
I have following RNAseq samples. (I know 2 replicates is not enough...)
- WT : wild type (replicate1, replicate2)
- mm : gene X mutant (replicate1, replicate2)
- OE : gene X overexpression (replicate1, replicate2)
To identify DEG(differential expression gene), I prepare these hypothesis.
・Null hypothesis : there is no expression change when manipulating gene X expression.
・Alternative hypothesis : there is some expression change when manipulating gene X expression.
I think ANOVA-like test in edgeR is appropriate method so far. In using this, multiple test correction is unnecessary and comparison between samples more than 3 is available. (In edgeR user's guide, ANOVA-like test is 3.2.6.)
However, I have not ever seen these experimental RNAseq design, so cannot choose the most appropriate statistical method. So I'm wondering if anyone knows some advice about this problem...
I must disagree with you. In the case of having two classes comparison, t.test and anova is practically identical. However, you should use ANOVA whenever you have more than two levels (classes). You get better p-value. It is NOT just a trick or something, it make sense to use all samples (all information) instead of the samples in the two classes you want to compare, it gives better estimation of variance!
The ANOVA-like test he is referring is this:
If he tests for each contrast separately, he will know which treatment differs. If he uses the referred ANOVA-like test for any differences, he won't.