Description Usage Arguments Details Value Methods (by class) Additional arguments Potential side effects Examples
Returns a BiclusterExperiment identical to bce
with an additional
BiclusterStrategy accessible using strategies()
or getStrat()
.
1 2 3 4 5 6 7 |
bce |
A |
k |
The number of biclusters to find |
method |
The biclustering algorithm |
silent |
Suppresses warnings and messages |
... |
Additional parameters to pass to the biclustering back-end |
One of the biclustering algorithms is used to
compute a number of biclusters. Matrix factorization methods will store
matrix factors in the factors
slot of the BiclusterStrategy
.
The matrix factors will be thresholded to yield the binary matrices in the
clusteredSamples
and clusteredFeatures
slots of the
BiclusterStrategy
.
A copy of bce
with a new BiclusterStrategy added to
BiclusterExperiment@strategies
bce = BiclusterExperiment,k = numeric
: Default method
addStrat()
automatically manipulates
certain back-end arguments as needed to return the desired number of
biclusters (k
). Back-end arguments besides those automatically
manipulated can be provided by name to addStrat()
. See
bicluster-methods for a description of back-end arguments.
Due to requirements of various biclustering
methods, this function may override user parameters, with warning. Also, if
any elements of abund(BiclusterExperiment)
are missing, the row and
column containing those elements may be removed, with warning.
1 2 3 4 | bce <- BiclusterExperiment(yeast_benchmark[[1]])
# Set seed for reproducibility
set.seed(12345)
bce <- addStrat(bce, k = 2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.