Description Usage Arguments Details Value Author(s) Examples
Return the patients and genes from module under user defined setting
1 | module.extract(res.module, mod, n.patients = NULL, n.genes = NULL)
|
res.module |
a 'seed.module' or 'cluster.module' object returned by |
mod |
a module name to extract genes and patients |
n.patients |
the patient number to return |
n.genes |
the gene number to return |
This function is used to return the patients and genes at user defined breakpoints.
Users can set 'n.patients' or 'n.genes' to define the break points of bi-clustering. But it is not allowed to set both value.
A list for genes or patients.
Guofeng Meng
1 2 3 4 5 6 | # extract the genes and patients when 200 patients are observed in M1.
page=module.extract(cluster.mod, 'M1', n.patients=100)
head(page$patients)
head(page$geness)
# find genes and patients in patient-seeded module
module.extract(seed.mod, names(seed.mod)[1], n.patients=50)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.