Mercurial > repos > bornea > network_attributes
annotate Calculate_attributes_wrapper.py @ 2:40339590a08d draft default tip
Uploaded
| author | bornea |
|---|---|
| date | Wed, 18 Oct 2017 15:23:21 -0400 |
| parents | |
| children |
| rev | line source |
|---|---|
| 2 | 1 import sys |
| 2 import os | |
| 3 import subprocess | |
| 4 edgeList = sys.argv[1] | |
| 5 centrality = sys.argv[2] | |
| 6 community = sys.argv[3] | |
| 7 output = sys.argv[4] | |
| 8 os.system(r"Rscript "+"Calculate_attributes.R "+ str(edgeList) + r" " + str(centrality)+ r" " + str(community)) | |
| 9 os.rename("node_attr.txt",str(output)) |
