Hello, I have a really big PPI network and I clustered the network. Is there a way to analyze each cluster to find metrics of each cluster such as closeness, degree etc. I want to treat each cluster as an independent network but I have 56 cluster so an automated library would be great. I searched but could not find such a library. Is there a way to do it?
I can use R, Python or Cytoscape for this task.
Thank you in advance.
Thank you for your answer. I am already using igraph but as I know it does not have a function to extract and analyze the subset of main graph. I can try with a for loop.
There's no function that will do everything you ask for in one go if that's what you mean. Otherwise, you can extract a subgraph corresponding to a list of nodes with the subgraph() function then indeed operate on the subgraphs in a loop (or in parallel).