Description Usage Arguments Methods (by generic) Slots The k slot See Also
This class encapsulates bicluster results created by a call to
addStrat()
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | ## S4 method for signature 'BiclusterStrategy'
bcNames(bcs, allBc = FALSE)
## S4 method for signature 'BiclusterStrategy'
featureFactor(bcs, allBc = FALSE)
## S4 method for signature 'BiclusterStrategy'
featureThresh(bcs, allBc = FALSE)
## S4 method for signature 'BiclusterStrategy'
sampleThresh(bcs, allBc = FALSE)
## S4 method for signature 'BiclusterStrategy'
method(bcs)
## S4 method for signature 'BiclusterStrategy'
name(bcs)
## S4 method for signature 'BiclusterStrategy'
nclust(bcs, allBc = FALSE)
## S4 method for signature 'BiclusterStrategy'
sampleFactor(bcs, allBc = FALSE)
## S4 method for signature 'BiclusterStrategy'
threshAlgo(bcs)
|
bcs |
A BiclusterSrategy class |
allBc |
Return data on all stored biclusters |
bcNames
: The names of biclusters in the
BiclusterStrategy
featureFactor
: Retrieves bcs@factors@fit@W
, the
matrix factor mapping features to biclusters
featureThresh
: Retrieves bcs@featureThresh
, the threshold(s)
used to determine each bicluster's feature membership
sampleThresh
: Retrieves bcs@sampleThresh
, the threshold(s)
used to determine each bicluster's sample membership
method
: Retrieves bcs@factors@method
, the
biclustering algorithm used to produce bcs
name
: Gets a display-friendly name of a
BiclusterStrategy that includes its biclustering algorithm, its
thresholding algorithm, and the number of biclusters.
nclust
: Number of clusters in a BiclusterStrategy
sampleFactor
: Retrieves bcs@factors@fit@H
, the
matrix factor mapping samples to biclusters
threshAlgo
: The algorithm used to calculate biclustering
thresholds
factors
a NMFfit-class
or
genericFit-class
containing a pair of matrices L_{m,k}
and R_{k,n}.
featureThresh
a vector of thresholds of length k
sampleThresh
a vector of thresholds of length k
threshAlgo
the name of the thresholding algorithm, or "user"
biclust
a Biclust-class
object containing
logical bicluster membership matrices and other information
k
the number of biclusters to access when allBc = FALSE
.
name
a display friendly character string describing the object
k
slotThe numbers of biclusters requested in the call to addStrat()
is
stored in BiclusterStrategy@k
. A BiclusterStrategy-class
object may store more than k
biclusters, but accessors only return
data on the first k
biclusters by default. To obtain data on all
stored biclusters, accessors must be called with allBc = TRUE
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.