ppi {iPRISM} | R Documentation |
A protein-protein physical interaction network (PPI network)
Description
An igraph object containing a protein-protein physical interaction network.
Usage
ppi
Format
An object of class igraph
of length 15867.
Examples
library(iPRISM)
data(ppi, package = "iPRISM")
library(igraph)
graph <- simplify(ppi)
graph_comp <- components(graph)$membership == which.max(components(graph)$csize)
graph <- induced_subgraph(graph, V(graph)[graph_comp])
plot(graph)
[Package iPRISM version 0.1.1 Index]