Guess the ontology of the input GO IDs
Arguments
- go_id
A vector of GO IDs.
- db
Annotation database. It should be from https://bioconductor.org/packages/3.10/BiocViews.html#___OrgDb. The value can also directly be a
OrgDbobject.
Value
A single character scalar of "BP", "CC" or "MF".
If there are more than one ontologies detected. It returns NULL.
Examples
# \donttest{
go_id = random_GO(100)
guess_ont(go_id)
#> [1] "BP"
# }