DPExplorer {gtkWidgets} | R Documentation |
These functions construct a widget that allow users to visually explore a data package of Bioconductor and read selected elements to R
DPExplorer(pkgName = "", colNames = c("Key", "Value"), title = "BioC Data Package Explorer")
pkgName |
pkgName a character string for the name of a
Bioconductor's data package that has already been loaded |
title |
title a character string for the title of the
widget |
colNames |
colNames a vector of two character strings to
be used as the names for data columns for keys and values of a data
environment |
If pkgName
is not provided when DPExplorer
is
called, an entry box is available for users to put a pkgName
in
later. In either cases, the data package specified by pkgName
should have been loaded.
If only one key is selected, DPExplorer
returns a vector
of one to more elements. If more than one key is selected,
The functions are part of the Bioconductor project at Dana-Farber Cancer Institute to provide Bioinformatics functionalities through R
Jianhua Zhang
Documents for a Bioconductor data package
if(interactive() && require("hgu95av2", character.only = TRUE)){ DPExplorer("hgu95av2") }