CytoscapeRPC install
From BioAssist
Install
- Download and install Cytoscape
- Install the plugin via the Cytoscape plugin manager (all dependencies are now included in the plugin itself)
- Now install a XML-RPC client for a programming language that you are familiar with and use the examples to create your first Cytoscape application.
Test
A method of testing Cytoscape using Python.
- Open Cytoscape and activate the plug-in (Plugins->Cytoscape RPC->Activate CytoscapeRPC) keep the default port and click 'OK'.
- Open a python shell
- Type in the following commands:
import xmlrpclib
server = xmlrpclib.ServerProxy('http://localhost:9000')
server.Cytoscape.test()
The shell should now display 'It works!'