### Name: GOENTREZID2GO ### Title: Entrez Gene to Gene Ontology (GO) mapping ### Aliases: GOENTREZID2GO GOLOCUSID2GO ### Keywords: datasets ### ** Examples library("GO") ## Select an Entrez Gene id egId <- "10043" egIdGoData <- GOENTREZID2GO[[egId]] ## Display GO identifiers associated with the Entrez Gene id sapply(egIdGoData, function(x) x$GOID) ## The ontology categories of the GO identifiers sapply(egIdGoData, function(x) x$Ontology) ## The evidence codes for the GO identifiers sapply(egIdGoData, function(x) x$Evidence)