Description Details See Also Examples
GOMAPCOUNTS provides the "map count" (i.e. the count of mapped keys) for each map in package GO.db.
This "map count" information is precalculated and stored in the
package annotation DB. This allows some quality control and is used by
the checkMAPCOUNTS
function defined in AnnotationDbi to compare and validate different
methods (like count.mappedkeys(x)
or
sum(!is.na(as.list(x)))
) for getting the "map count" of a given
map.
mappedkeys
,
count.mappedkeys
,
checkMAPCOUNTS
AnnotationDb-class
for use of
the select()
interface.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## select() interface:
## Objects in this package can be accessed using the select() interface
## from the AnnotationDbi package. See ?select for details.
## Bimap interface:
GOMAPCOUNTS
mapnames <- names(GOMAPCOUNTS)
GOMAPCOUNTS[mapnames[1]]
x <- get(mapnames[1])
sum(!is.na(as.list(x)))
count.mappedkeys(x) # much faster!
## Check the "map count" of all the maps in package GO.db
checkMAPCOUNTS("GO.db")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.