Mercurial > repos > bornea > network_attributes
changeset 2:40339590a08d draft default tip
Uploaded
author | bornea |
---|---|
date | Wed, 18 Oct 2017 15:23:21 -0400 |
parents | e4a55256547a |
children | |
files | Calculate_attributes_wrapper.py |
diffstat | 1 files changed, 9 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Calculate_attributes_wrapper.py Wed Oct 18 15:23:21 2017 -0400 @@ -0,0 +1,9 @@ +import sys +import os +import subprocess +edgeList = sys.argv[1] +centrality = sys.argv[2] +community = sys.argv[3] +output = sys.argv[4] +os.system(r"Rscript "+"Calculate_attributes.R "+ str(edgeList) + r" " + str(centrality)+ r" " + str(community)) +os.rename("node_attr.txt",str(output))