GO2heatmap {annotate} | R Documentation |
For a given GO category or KEGG pathway, all probes in the supplied data are mapped to the pathway and a heatmap is produced.
GO2heatmap(x, eset, data = "hgu133plus2", ...) KEGG2heatmap(x, eset, data = "hgu133plus2", ...)
x |
The name of the category or pathway. |
eset |
An exprSet providing the data. |
data |
The name of the chip. |
... |
Additional parameters to pass to heatmap . |
For the given pathway or GO category all matching probes are
determined, these are used to subset the data and heatmap
is
invoked on that set of data. Extra parameters can be passed through to
heatmap
using the ...
.
The value returned by heatmap
is passed back to the user.
R. Gentleman
if( require("hgu95av2") ) { data(sample.exprSet.1) KEGG2heatmap("04810", sample.exprSet.1, "hgu95av2") }