Entering edit mode
3.8 years ago
ryme
▴
30
Hello everyone. I am doing some GO and gene set enrichment analysis for my deseq results. I am using GOStat package in r. An error has occurred when applying the hyperGTest : Warning message: No results met the specified criteria. Returning 0-row data.frame and my the results of GOHyperGResult look like that:
Code (after preparing my genes list):
UpParams <- new("GOHyperGParams",
+ geneIds=selectedEntrezIds,
+ universeGeneIds=entrezUniverse,
+ annotation="hgu95av2.db",
+ ontology="BP",
+ pvalueCutoff=hgCutoff,
+ conditional=FALSE,
+ testDirection="over")
And then:
upBP = hyperGTest(UpParams)
summary(upBP)[1:10,]
Warning message: No results met the specified criteria. Returning 0-row data.frame
Please help me. I can't figure out where the problem is.