filterGOByOntology: Filter GO terms by a specified GO ontology

Description Usage Arguments Value Author(s) Examples

View source: R/GOhelpers.R

Description

Given a character vector containing GO identifiers, return a logical vector indicating which GO IDs are in the specified ontology (BP, CC, or MF).

Usage

1
filterGOByOntology(goids, ontology = c("BP", "CC", "MF"))

Arguments

goids

a character vector of GO IDs

ontology

One of "BP", "CC", or "MF"

Value

A logical vector with length equal to goids. A TRUE indicates that the corresponding GO ID in goids is a member of the ontology specified by ontology.

Author(s)

Seth Falcon

Examples

1
2
3
4
5
6
haveGO <- suppressWarnings(require("GO.db"))
if (haveGO) {
    ids <- c("GO:0001838", "GO:0001839")
    stopifnot(all(filterGOByOntology(ids, "BP")))
    stopifnot(!any(filterGOByOntology(ids, "MF")))
} else cat("Sorry, this example requires the GO package\n")

annotate documentation built on Nov. 8, 2020, 8:14 p.m.