module_genes {CEMiTool} | R Documentation |
Get the module genes in a CEMiTool object
module_genes(cem, module = NULL) ## S4 method for signature 'CEMiTool' module_genes(cem, module = NULL)
cem |
Object of class |
module |
A character string with the name of the module of which
genes are to be returned. Defaults to |
Object of class data.frame
containing genes and their
respective module
# Get example CEMiTool object data(cem) # Get the module genes module_genes(cem) # Get genes for module M1 module_genes(cem, module="M1")