View source: R/run_algorithms.R
run_xmotifs | R Documentation |
The function executes the BCXmotifs biclustering algorithm, returning a list of biclusters converted into bicluster objects compatible with this package. If the algorithm fails to run, an empty list is returned.
run_xmotifs(data_matrix, minRow = 2, minCol = 2, ...)
data_matrix |
A numeric matrix. |
minRow |
Same parameters as in filter_bicluster_size. |
minCol |
Same parameters as in filter_bicluster_size. |
... |
Other parameters forwarded to the BCXmotifs function. |
a list of bicluster objects.
m <- matrix(seq(1:16), nrow=4) # m <- matrix(rnorm(10000), nrow=100) # run_xmotifs(m)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.