Description Usage Arguments Value Examples
zelda Takes two lists of genes and finds the receptor-ligand relations (links) between them. Plots a bipartite plot of the found genes. Returns a bipartite network of the connections.
1 | return_links(receptors, ligands, database = "ramilowski_links")
|
receptors |
A list of genes containing putative receptors |
ligands |
A list of genes containg putative ligands |
database |
The database to be used to find the links. Defaults to "ramilowski_links". Other options: "cellphone_db_links"; "all" |
Returns a dataframe with the lists found in the databases.
1 2 3 4 | receptor_candidates <- c("CD3", "AIF", "CCR3", "CXCR3")
ligand_candidates <- c("TP53", "NFKB1", "CXCL9")
links <- return_links(receptor_candidates, ligand_candidates, database = "all")
head(links)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.