Description Usage Arguments Methods (by generic) Slots See Also Examples
This class encapsulates data for one or more biclustering runs derived from
the same abundance data. Objects can be created using the
BiclusterExperiment
constructor. A subclass of
eSet
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | ## S4 method for signature 'matrix'
BiclusterExperiment(m, bcs = list(),
phenoData = Biobase::annotatedDataFrameFrom(m, byrow = FALSE),
featureData = annotatedDataFrameFrom(m, byrow = TRUE), pp = FALSE,
maxNa = 0)
## S4 method for signature 'ANY'
BiclusterExperiment(m, bcs = list(),
phenoData = Biobase::annotatedDataFrameFrom(m, byrow = FALSE),
featureData = annotatedDataFrameFrom(m, byrow = TRUE), pp = FALSE,
maxNa = 0)
## S4 method for signature 'BiclusterExperiment'
as.matrix(x)
## S4 method for signature 'BiclusterExperiment'
names(x)
## S4 method for signature 'BiclusterExperiment'
strategies(x)
|
m |
The data on which derived BiclusterStrategy objects will be calculated. Should be a matrix or a class coercible to matrix, with samples as columns and features as rows |
bcs |
May be a |
phenoData |
Metadata about the rows of |
featureData |
Metadata about the columns of |
pp |
Whether to preprocess |
maxNa |
If |
x |
A |
BiclusterExperiment
: Default constructor method
BiclusterExperiment
: Attempts to coerce m
to a matrix before
encapsulating it in a BiclusterExperiment
names
: Retrieves the names of any encapsulated
BiclusterStrategy-class
objects.
strategies
: Get/set a list of the BiclusterStrategy objects
contained by this BiclusterExperiment.
assayData
Object of class AssayData-class
in the
"list" storage mode. AssayData
must have a matrix named
"abund" with rows representing features and columns representing samples.
Any other matrices in assayData are ignored by this package.
strategies
A list
of
BiclusterStrategy-class
objects
phenoData
See eSet-class
.
featureData
eSet-class
.
experimentData
eSet-class
. Not accessed by any
functions in mfBiclust
.
annotation
eSet-class
. Not accessed by any
functions in mfBiclust
.
protocolData
eSet-class
. Not accessed by any
functions in mfBiclust
.
1 | bce <- BiclusterExperiment(yeast_benchmark[[1]])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.