expression_semantic_scoring: GAPGOM - expression_prediction()

Description Usage Arguments Details Value Examples

View source: R/similarity_scoring.R

Description

Predicts annotation of un-annotated genes based on existing Gene Ontology annotation data and correlated expression patterns.

Usage

1
expression_semantic_scoring(gene_id, expression_set, method = "combine")

Arguments

gene_id

gene rowname to be compared to the other GO terms.

expression_set

ExpressionSet class containing expression values and other useful information, see GAPGOM::f5_example_data documentation for further explanation of this type. If you want a custom ExpressionSet you have to define one yourself.

method

which statistical method to use for the prediction, currently there are 5 available; "pearson", "spearman", "kendall", "fisher", "sobolev" and "combine".

Details

This function is specifically made for predicting lncRNA annotation by assuming "guilt by association". For instance, the expression data in this package is actually based on mRNA expression data, but correlated with lncRNA. This expression data is the used in combination with mRNA GO annotation to calculate similarity scores between GO terms,

Value

The resulting dataframe with prediction of similar GO terms. These are ordered with respect to FDR values. The following columns will be in the dataframe; GOID - Gene Ontology ID, Ontology - Ontology type (MF or BP), FDR - False Positive Rate, Term - description of GOID, used_method - the used method to determine the ontology term similarity

Examples

1
2
3
4
5
6
7
8
9
# Example with default dataset, take a look at the data documentation
# to fully grasp what's going on with making of the filter etc. (Biobase
# ExpressionSet)

# set an artbitrary gene you want to find similarities for. (5th row in this
# case)
gid <- "ENSG00000228630"
result <- GAPGOM::expression_semantic_scoring(gid,
                                              GAPGOM::expset)

GAPGOM documentation built on Nov. 8, 2020, 8:08 p.m.