← Revision 7 as of 2006-01-26 05:41:51
Size: 5736
Comment:
|
← Revision 8 as of 2006-01-26 05:42:43 →
Size: 5742
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 51: | Line 51: |
* When Cytoscape is used as a library without calling CytoscapeInit (i.e. simply calling Cytoscape.getRootGraph() and a few other static methods), there is currently no way to specify the vizmap.props file. This means that applying visual properties fails. | * When Cytoscape is used as a library without calling Cytoscape''''''Init (i.e. simply calling Cytoscape.getRootGraph() and a few other static methods), there is currently no way to specify the vizmap.props file. This means that applying visual properties fails. |
RFC Name : HeadlessModeRFC |
Editor(s): Mike Smoot, Allan Kuchinsky |
About this document
This is an official Request for Comment (RFC) for Cytoscape Headless Mode Operation
For details on RFCs in general, check out the [http://www.answers.com/main/ntquery?method=4&dsid=2222&dekey=Request+for+Comments&gwp=8&curtab=2222_1&linktext=Request%20for%20Comments Wikipedia Entry: Request for Comments (RFCs)]
Status
"Not yet completely written"
How to Comment
To view/add comments, click on any of 'Comment' links below. By adding your ideas to the Wiki directly, we can more easily organize everyone's ideas, and keep clear records. Be sure to include today's date and your name for each comment. Here is an example to get things started: ["/Comment"].
Try to keep your comments as concrete and constructive as possible. For example, if you find a part of the RFC makes no sense, please say so, but don't stop there. Take the extra step and propose alternatives.
Proposal
Cytoscape currently runs only in "window" mode, that is, as a complete, self-contained application. There is a need to access Cytoscape functionality in alternative ways, such as laying out graph images on a webserver or embedding a cytoscape window in a different application.
Biological Questions / Use Cases
- A user has hundreds of SIF files that s/he would like to generate images for (say for a web page) without doing so manually via Cytoscape.
- A developer would like to provide a Cytoscape network visualization window in his or her application without necessarily providing all of Cytoscape's functionality.
- A developer would like to generate network images of graphs from within a separate Java application.
- A program or user would like to interact with a single instance of a Cytoscape "server" running in the background without creating a new instance of Cytoscape each time.
General Notes
- In discussions of the various needs, we've identified several different modes of interacting with cytoscape.
Window mode - This means running Cytoscape as a complete, self-contained application, with a full user interface and initialization and teardown routines. This is how Cytoscape currently operates.
Text mode - This means running Cytoscape (generally from the command line) without opening the gui. The goal here is an application that provides access to Cytoscape features. For example, a user might specify a SIF file along with a vizmap.props file and rather than bringing up a window, simply create an image of the layed out graph using the specified vizmap.props. Text mode would allow calls to the cytoscape application to be embedded in scripts for other purposes, such as CGI scripts.
Library mode - This means providing a set of libraries that provide access to Cytoscape capabilities from other Java applications. For example, if a developer of a different application wanted to create a graph image based on some sort of network structure, instead of running a script in an external process to create the image, a developer could call specific Cytoscape methods directly to create the image.
Embedded Window mode - This means embedding one or more Cytoscape windows or panels in a separate application, possibly as a plugin to that application. An embedded Cytoscape would not necessarily create all of the normal frames and panels. For instance, an application may want to show the network window without showing the menus or cytopanels. Interaction with the embedded window could be controlled through an external interface that calls various actions directly.
Daemon mode - This means having a single Cytoscape process running perpetually in the background. A program would interact with the daemon using some sort of IPC mechanism. The interface could be direct method calls or something like a [http://beanshell.org BeanShell] that allows command line interaction.
Requirements
Deferred Items
Open Issues
Cytoscape (on linux) currently needs an X11 process to be running before it can do anything. This is a result of PhoebeCanvas adding a DropTarget to itself to support Drag-n-drop operations. It is unclear how deeply rooted this behavior is and whether or not it can be turned on/off in a reasonable way.["/Comment"]
- Exiting from Cytoscape currently calls System.exit(), which means that if it is embedded in another application, when Cytoscape is closed, the other application will be as well.
When Cytoscape is used as a library without calling CytoscapeInit (i.e. simply calling Cytoscape.getRootGraph() and a few other static methods), there is currently no way to specify the vizmap.props file. This means that applying visual properties fails.
CytoscapeInit is currently monolithic and needs to be made modular with respect to the different modes of operation. Perhaps initialization and teardown functionality should migrate to the top-level classes for each mode of operation.
Backward Compatibility
Proper support for headless mode would almost certainly imply significant changes to Cytoscape's current command line interface. It would be important to maintain the current options.
Expected growth and plan for growth
References
Implementation Plan
- ["/Implementation Plan"]