View source: R/complexes_genes.R
complex_genes | R Documentation |
This function returns all the molecular complexes where an input set of genes participate. User can choose to retrieve every complex where any of the input genes participate or just retrieve these complexes where all the genes in input set participate together.
complex_genes(complexes = complexes(), genes, all_genes = FALSE)
complexes |
Data frame of protein complexes (obtained using
|
genes |
Character: search complexes where these genes present. |
all_genes |
Logical: select only complexes where all of the genes present together. By default complexes where any of the genes can be found are returned. |
Data frame of complexes
complexes
complexes <- complexes(resources = c("CORUM", "hu.MAP"))
query_genes <- c("LMNA", "BANF1")
complexes_with_query_genes <- complex_genes(complexes, query_genes)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.