Description Usage Arguments Details Value Author(s) Examples
View source: R/loadTopAnatData.R
This function loads a mapping from genes to anatomical structures based on calls of expression in anatomical structures. It also loads the structure of the anatomical ontology.
1 2 3 4 5 6 | loadTopAnatData(
myBgeeObject,
callType = "presence",
confidence = NULL,
stage = NULL
)
|
myBgeeObject |
An output object from Bgee$new(). |
callType |
A character of indicating the type of expression calls to be used for enrichment. Only calls for significant detection of expression are implemented so far ("presence"). Differential expression calls, based on differential expression analysis, might be implemented in the future. |
confidence |
A character indicating if only high quality present calls should be retrieved. For Bgee releases prior to 14, options are "all" (default) or "high_quality". For Bgee release 14 and above, options are "silver" (default) and "gold". |
stage |
A character indicating the targeted developmental stages for the analysis. Developmental stages can be chosen from the developmental stage ontology used in Bgee (available at https://github.com/obophenotype/developmental-stage-ontologies). If a stage is specified, the expression pattern mapped to this stage and all children developmental stages (substages) will be retrieved. Default is NULL, meaning that expression patterns of genes are retrieved regardless of the developmental stage displaying expression; this is equivalent to specifying stage="UBERON:0000104" (life cycle, the root of the stage ontology). For information, the most useful stages (going no deeper than level 3 of the ontology) include:
|
The expression calls come from Bgee (http://bgee.org), that integrates different expression data types (RNA-seq, Affymetrix microarray, ESTs, or in-situ hybridizations) from multiple animal species. Expression patterns are based exclusively on curated "normal", healthy, expression data (e.g., no gene knock-out, no treatment, no disease), to provide a reference atlas of normal gene expression. Anatomical structures are identified using IDs from the Uberon ontology (browsable at http://www.ontobee.org/ontology/UBERON). The mapping from genes to anatomical structures includes only the evidence of expression in these specific structures, and not the expression in their substructures (i.e., expression data are not propagated). The retrieval of propagated expression data might be implemented in the future, but meanwhile, it can be obtained using specialized packages such as topGO, see the topAnat.R
function.
A list of 4 elements:
A gene2anatomy
list, mapping genes to anatomical structures based on expression calls.
A organ.names
data frame, with the name corresponding to UBERON IDs.
A organ.relationships
list, giving the relationships between anatomical structures in the UBERON ontology (based on parent-child "is_a" and "part_of" relationships).
The Bgee class object thta was used to retrieve the data.
Julien Roux, Julien Wollbrett
1 2 3 4 | {
bgee <- Bgee$new(species = "Bos_taurus", dataType = "rna_seq")
myTopAnatData <- loadTopAnatData(bgee)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.