The xbioc package provides extra methods for the generic
featureNames
and sampleNames
,
that extend the original Bioconductor interface.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## S4 method for signature 'matrix'
featureNames(object)
## S4 replacement method for signature 'matrix'
featureNames(object) <- value
## S4 replacement method for signature 'matrix,ANY'
sampleNames(object) <- value
## S4 method for signature 'matrix'
sampleNames(object)
## S4 method for signature 'matrix'
exprs(object)
## S4 replacement method for signature 'matrix,ANY'
exprs(object) <- value
|
featureNames,matrix-method
: featureNames Returns the row names of object
.
featureNames<-,matrix-method
: Set the row names of object
.
sampleNames<-,matrix,ANY-method
: Set the row names of object
.
sampleNames,matrix-method
: Returns the column names of object
.
exprs,matrix-method
: Simply returns object
.
This method is defined so the generic can be called on both matrix and
ExpressionSet
objects.
exprs<-,matrix,ANY-method
: Simply assigns value
to object
.
This method is defined so the generic can be called on both matrix and
ExpressionSet
objects.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.