View source: R/get_biclusters.R
get_biclusters | R Documentation |
Converts biclusters output of different algorithms/packages in to lists
of bicluster objects. Many algoritms can be directly executed using
the run_...
methods from this package.
This directly returns the converted results. Not all algorithms are shipped
with this package, like Bi-Force, which is running in Java as a standalone
tool or BicARE,
which required an full import using library(BicARE)
in order to run.
But their results can be converted using this function.
get_biclusters(bics, mat, method, transposed = FALSE, filterfun = NULL, ...)
bics |
A resulting object from a biclustering algorithm (extracted biclusters for fabia) or filename for stored biclustering results. |
mat |
Original matrix, that was used for biclustering. |
method |
Used biclustering package. One of "biclust" (can be further specified as "biclust-bimax", "biclust-cc", "biclust-plaid", "biclust-quest", "biclust-qubic", "biclust-spectral", "biclust-xmotifs", "biclust-unibic"), "BicARE", "isa", "fabia", "biforce", "biclustpy", "qubic2" or "akmbiclust". |
transposed |
Indicate, whether a transposed version of the matrix is
used for biclustering. The |
filterfun |
A function to filter biclusters.
Only if the function returns |
... |
Other parameters forwarded to the |
A list of bicluster
objects, which are
valid (See validate_bicluster
).
m <- matrix(seq(1:16), nrow=4) # m <- matrix(rnorm(10000), nrow=100) # res <- isa2::isa(m) # get_biclusters(res, m, "isa")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.