| receptorLigandInfo | R Documentation |
Receptor ligand list
receptorLigandInfo
Data frame corresponding to ncomms8866-s3.xlsx in Ramilowski et al (Nature Communications 2015)
https://www.nature.com/articles/ncomms8866
data(receptorLigandInfo)
receptors <- unique(receptorLigandInfo$Receptor.ApprovedSymbol)
receptorLigandList <- lapply(receptors, function(rp) {
vi <- receptorLigandInfo$Receptor.ApprovedSymbol == rp
return(receptorLigandInfo[vi,]$Ligand.ApprovedSymbol)
})
names(receptorLigandList) <- receptors
ligands <- unique(receptorLigandInfo$Ligand.ApprovedSymbol)
ligandReceptorList <- lapply(ligands, function(rp) {
vi <- receptorLigandInfo$Ligand.ApprovedSymbol == rp
return(receptorLigandInfo[vi,]$Receptor.ApprovedSymbol)
})
names(ligandReceptorList) <- ligands
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.