annPkgName {annotate} | R Documentation |
This function returns the name of the Bioconductor annotation data
package that corresponds to the specified chip or genome. The
type
argument is used to request an annotation package with a
particular backing store.
annPkgName(name, type = c("env", "db"))
name |
string specifying the name of the chip or genome. For
example, "hgu133plus2" |
type |
Either "db" or "env" . This will determine
whether the package name returned corresponds to the SQLite-based
annotation package or environment-based package, respectively. |
a string giving the name of the annotation data package
Seth Falcon
annPkgName("hgu133plus2", type="env") ## Not run: ## This is for the future, when SQLite-based annotation ## data packages are commonly available annPkgName("hgu133plus2", type="db") ## End(Not run)