1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
\name{GOID}
\alias{GOID}
\alias{TERM}
\alias{ONTOLOGY}
\alias{DEFINITION}
\title{Descriptions of available values for \code{columns} and
\code{keytypes} for GO.db.}
\description{
This manual page enumerates the kinds of data represented by the
values returned when the user calls \code{columns} or \code{keytypes}
}
\details{
All the possible values for \code{columns} and \code{keytypes} are listed
below.
\describe{
\item{GOID:}{GO Identifiers}
\item{DEFINITION:}{The definition of a GO Term}
\item{ONTOLOGY:}{Which of the three Gene Ontologies (BP, CC, or MF)}
\item{TERM:}{The actual GO term}
}
To get the latest information about the date stamps and source URLS
for the data used to make an annotation package, please use the
metadata method as shown in the example below.
}
\author{Marc Carlson}
\examples{
library(GO.db)
## List the possible values for columns
columns(GO.db)
## List the possible values for keytypes
keytypes(GO.db)
## get some values back
keys <- head(keys(GO.db))
keys
select(GO.db, keys=keys, columns=c("TERM","ONTOLOGY"),
keytype="GOID")
## More infomation about the dates and original sources for these data:
metadata(GO.db)
}
\keyword{utilities}
\keyword{manip}
|