Entering edit mode
8.6 years ago
beingseema03
▴
10
I have used igraph library for the PPI network analysis. My network is unweighted and undirected. Igraph provides a function called graphlets but it models the weighted networks. There is one package called ergm.graphlets but i was unable to get any proper documentation with examples of this package. Can any one suggest which package to use..?? Or any other tool suitable for graphlet calculation. My example script is below.
library(igraph)
g2 <- graph.formula(A:B - A:C, X:Z - X:Y - X:B, C:Z , C:X )
g2
plot(g2)
@jean Thanks for reply. But then how to find Graphlets degree distribution based on the graphlet count..??