Description Usage Arguments Details Value Author(s) See Also Examples
Takes a ccGeneList
object containing all the information needed to perform enrichment calculations for Gene Ontology.
1 |
ccGeneList |
A |
This function is essentially a wrapper for hyperGTestCC
that performs all of the calculations for the many gene lists in one go, returning a list of HyperGResultCC
objects, one for each of the ccTypes
and each gene list. These various HyperGResultCC
objects can then be accessed and results compared among the lists for each of the ontologies
A list of HyperGResultCC
objects, one for each ccType
and gene list, returned as ccEnrichResult
objects for each ccType
. This can be passed with a ccOptions
object to ccCompare
to generate actual annotation comparisons.
Robert M Flight
ccGeneList
, hyperGTestCC
, ccEnrichResult
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | ## Not run:
require(GO.db)
require(KEGG.db)
require(org.Hs.eg.db)
## End(Not run)
data(ccData)
g10 <- (unique(table10$Entrez[1:100]))
g48 <- (unique(table48$Entrez[1:100]))
list10 <- list(genes=g10, universe=gUniverse, annotation="org.Hs.eg.db")
list48 <- list(genes=g48, universe=gUniverse, annotation="org.Hs.eg.db")
geneLists <- list(T10=list10, T48=list48)
geneLists <- new("ccGeneList", geneLists, ccType=c("BP","KEGG"))
geneLists <- new("ccGeneList", geneLists, ccType=c("CC","KEGG"))
# set number of fdr runs to 0 to speed up runtime, not generally recommended.
geneLists <- new("ccGeneList", geneLists, ccType = c('BP','KEGG'), pvalueCutoff=0.01, fdr=0)
# enrichLists <- ccEnrich(geneLists)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.