| getIGraphFromPPI | R Documentation |
Combine information from PPI data.frame obtained with functions like
getPPIbyName or getPPIbyEntrez with information
about genes obtained from
getGenesByID to make interpretable undirected PPI graph in
igraph format. In this format network could be further
analysed and visualized by algorithms in igraph package.
getIGraphFromPPI(ppi)
ppi |
PPI |
igraph object with specified PPI network.
getPPIbyName(),
getPPIbyEntrez()
and getPPIbyIDs() to get
PPI data.frame,
getTableFromPPI()
to get interpretable table representation of
the PPI data.frame.
Other PPI functions:
getPPIbyEntrez(),
getPPIbyIDs4BrainRegion(),
getPPIbyIDs4Compartment(),
getPPIbyIDs(),
getPPIbyName(),
getTableFromPPI()
library(igraph)
g <- getIGraphFromPPI(
getPPIbyIDs(c(48, 129, 975, 4422, 5715, 5835), type = "lim")
)
plot(g, vertex.label = V(g)$RatName, vertex.size = 35)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.