| selectChannels {Biobase} | R Documentation |
This generic function extracts specific elements from an object, returning a instance of that object.
selectChannels(object, names, ...)
object |
An S4 object, typically derived from class
eSet |
names |
Character vector of named channels. |
... |
Additional arguments. |
Instance of class object.
Biocore
obj <- new("NChannelSet",
R=matrix(runif(100), 20, 5),
G=matrix(runif(100), 20, 5))
## G channel as NChannelSet
selectChannels(obj, "G")