- XMLRPC
Python example code:
- from xmlrpclib import ServerProxy
- server = ServerProxy('http://xxx.xxx.xxx.xxx:8000/goreveng/default/call/xmlrpc')
- my_results = server.goRevenge()
the arguments and their order of goRevenge function are:
goRevenge(organism, aspect, distance, algorithm, relaxation, input)
examples:
my_results = server.goRevenge('chicken','CC','graph','Bubble GO',.1,'0033178')
my_results = server.goRevenge('chicken','MF',resnik,'Bubble Genes',.3,'TP53;EP300;ERBB2')
Available ranges and options of the arguments can be seen in the choices presented at the web tool form
- SOAP
Under development
