Get candidate genes using a gene ontology filter

# S4 method for GeneOntologyFilter
getCandidates(obj)

Arguments

obj

An object of class GeneOntologyFilter

Value

A list, where one element a character vector of transcription factors that match the GO term and the other is an empty data frame.

See also

Examples

# Make a filter for "transcription, DNA-templated" and use it to filter candidates library(org.Hs.eg.db) goFilter <- GeneOntologyFilter(org.Hs.eg.db, GOTerm="GO:0006351") candidates <- getCandidates(goFilter)