Hi all,
I am analysing RNA-seq data, 37223 genes and 150 samples (RPKM values). I would like to do some co-expression analysis using WGCNA, however I want to filter some genes out with low expressed values first but using some kind of statistical test. I think Partek uses ANOVA and I would like to do the same. I found some code in internet but I don't understand the meaning of dpa
Code:
dpa=as.factor(rep(rep(10,40,by=10),each=3))
fanova <- function(x){anova(aov(x~dpa))$"Pr(>F)"[1]}
result <- apply(dataRNA, 2, fanova)
The example code is for 12 RNA-seq samples (also RPKM values)
Thanks in advance
Can you post the link to the source of this code?