1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
## ----buildCL, message=FALSE---------------------------------------------------
library("annotate")
z <- buildChromLocation("hgu95av2")
z
## ----showBasicMethods---------------------------------------------------------
organism(z)
dataSource(z)
## The chromLocs list is extremely large. Let's only
## look at one of the elements.
names(chromLocs(z))
chromLocs(z)[["Y"]]
get("32972_at", probesToChrom(z))
chromInfo(z)
get("32972_at", geneSymbols(z))
## ----nChrom-------------------------------------------------------------------
nChrom(z)
|