Hi,
I'm trying to use limma for a differential expression analysis for a dichotomous trait. I'm unable to post the data here, but it's just a data frame for an expression microarray and a 0/1 designator for my trait. Every trait that I have run has had almost every probe reach significance after multiple test correction (which is not plausible). My code is posted below:
design<-pheno$trait
fit <- lmFit(edata1, design)
fit <- eBayes(fit)
a<-topTable(fit, n=Inf, adjust="fdr")
Can anyone point out where I'm making a mistake?
the design should be a matrix while looks like you are using a vector... maybe you want to try;
with the little code you gave I'm not sure but that's a start.
btw, if you are adding info, pls edit the original post, do not write a new one below or in a comment unless you have a direct reply to this comment
Thanks for the suggestion. I tried that and it ended up making everything even more significant:
what platform it is ? Illumina HT12 v4 bead arrays?