getEnrichmentTables-GreatJob-method | R Documentation |
Get enrichment tables from GREAT web server
## S4 method for signature 'GreatJob'
getEnrichmentTables(object, ontology = NULL, category = "GO",
request_interval = 10, max_tries = 100, download_by = c("json", "tsv"),
verbose = TRUE)
object |
A |
ontology |
Ontology names. Valid values are in |
category |
Pre-defined ontology categories. One category can contain more than one ontologies. Valid values are in |
request_interval |
Time interval for two requests. Default is 300 seconds. |
max_tries |
Maximal times for automatically reconnecting GREAT web server. |
download_by |
Internally used. The complete enrichment table is provided as json data on the website, but there is no information of gene-region association. By setting |
verbose |
Whether to print messages. |
The structure of the data frames are same as the tables available on GREAT website.
availableOntologies
, availableCategories
Zuguang gu <z.gu@dkfz.de>
job = readRDS(system.file("extdata", "GreatJob.rds", package = "rGREAT"))
tbl = getEnrichmentTables(job)
names(tbl)
head(tbl[[1]])
job
tbl = getEnrichmentTables(job, ontology = "GO Molecular Function")
tbl = getEnrichmentTables(job, category = "GO")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.