RFC Name : BioWebServiceConnectivity

Editor(s): KeiichiroOno

Status: Open for Comment

<<TableOfContents: execution failed [Argument "maxdepth" must be an integer value, not "[2]"] (see also the log)>>

Proposal

These days, there are many public biological database web wervices such as Biomart, NCBI, or KEGG. It is very useful for many users if Cytoscape have an unified access to those huge data resources through simple user interface. By this function, users can access virtually all kinds of annotations for the nodes and edges, including variety of ID's, sequences, descriptions, orthologs, pathway names which contains the nodes, etc. Also, this is a general solution for all types of node ID mapping problems Cytoscape currently have. In addition, users can access network (interaction) database web services through the same mechanism.

From plugin writers' point of view, simplified API for accessing web services enables them to use a lot of remote functions just like other Cytoscape API. This means plugin writers can use web services as building blocks to build their workflow.

The goal of this project is the following:

Biological Questions / Use Cases

General Notes

Each web service is a building block to make higher-level functions. This means plugin writers should be able to use registered web services as if they are local Java APIs. To achive this goal, we should be careful to separate UI from the web service clients.

Requirements

This project consists of five parts:

  1. Web Service Client Manager in the core
    • Maintaining list of web service clients.
    • GUI to view/edit properties of the clients.
  2. Attribute mapping module
    • Mapping fetched annotations onto CyAttributes.

  3. Event Handlers
    • Implementing custom event and its listener only for WebServiceClients

    • Higher-level functions, such as importNetwork(Object query) or importAttribute(Object query) will be called through this event handler.

  4. Sample Web Service Clients
    • Implement several web service clients for popular biological databases.
    • Each client is a jar file which contains properties and classes created from WSDL. They will be implemented as a regular Cytoscape plugins and loaded through Plugin Manager.
    • If WSDL is not available (like Biomart), we need to implement a simple stub to access the service.
  5. GUI for each web services
    • GUI to use web services will be implemented as separate plugins. Simple GUI for importing attributes and networks will be provided as a part of core.

Deferred Items

Open Issues

Backward Compatibility

Expected growth and plan for growth

References

Biological Web Services

Technologies Around Web Service

Implementation Plan

Web Service Client Manager

Web Service Client Manager is a mechanism to manage list of clients loaded in Cytoscape. Usually, a Web Service Client (WSC) is created from a WSDL and packed as a jar file. The WSC jar file must contain classes implementing the following interfaces:

This means each of WSC is a Cytoscape plugin. Therefore, all WSC will be loaded through Plugin Manager which is already in the core. Once WSC is loaded through Plugin Manager, WSC registers itself to Web Service Client Manager. Plugin writers can access all web services by using the following method:

   1 WebServiceClient client = WebServiceClientManager.getClient(client_name);
   2 

In general, most of the methods required for clients are common to all. To avoid duplicate code, each web service client extends the superclass called WebServiceClientImpl. Then, the actual client code will be similar to the following (this sample is for IntAct network database):

   1 public class IntactClient extends WebServiceClientImpl {
   2 
   3         private static final String DISPLAY_NAME = "IntAct Web Service Client";
   4         private static final String CLIENT_ID = "intact";
   5 
   6         // Client should be a singleton
   7         private static final WebServiceClient client;
   8         static {
   9                 client = new IntactClient();
  10         }
  11 
  12         /**
  13          *  DOCUMENT ME!
  14          *
  15          * @return  DOCUMENT ME!
  16          */
  17         public static WebServiceClient getClient() {
  18                 return client;
  19         }
  20         /**
  21          * Creates a new IntactClient object.
  22          */
  23         private IntactClient() {
  24                 super(CLIENT_ID, DISPLAY_NAME, new ClientType[] { ClientType.NETWORK });
  25 
  26                 stub = new BinarySearchServiceClient();
  27 
  28                 setProperty();
  29         }
  30 
  31         /**
  32          *  DOCUMENT ME!
  33          *
  34          * @param e DOCUMENT ME!
  35          */
  36         @Override
  37         public void executeService(CyWebServiceEvent e) {
  38                 if (e.getSource().equals(CLIENT_ID)) {
  39                         if (e.getEventType().equals(WSEventType.IMPORT_NETWORK)) {
  40                                 importNetwork(e.getParameter(), null);
  41                         } else if (e.getEventType().equals(WSEventType.EXPAND_NETWORK)) {
  42                                 importNetwork(e.getParameter(), Cytoscape.getCurrentNetwork());
  43                         } else if (e.getEventType().equals(WSEventType.SEARCH_DATABASE)) {
  44                                 
  45                                 search(e.getParameter().toString(), e);
  46                         }
  47                 }
  48         }
  49 
  50         private void importNetwork(Object searchResult, CyNetwork net) {
  51             // Actual network data import code will be placed here.
  52         }
  53 
  54 }
  55 

And the class to register this as a plugin will be the following:

   1 public class IntactClientPlugin extends CytoscapePlugin {
   2         /**
   3          * Creates a new IntActClientPlugin object.
   4          */
   5         public IntactClientPlugin() {
   6                 // Register this client to the manager.
   7                 WebServiceClientManager.registerClient(IntactClient.getClient());
   8         }
   9 }
  10 

Plugin writers have two access method for these services:

   1     // Get client from the manager.
   2     WebServiceClient ncbiClient = WebServiceClientManager.getClient("ncbi");
   3     // Then get the stub from the client.
   4     EUtilsServiceSoap ncbiStub = (EUtilsServiceSoap)ncbiClient.getStub();
   5 
   6     // Use the stub
   7     EInfoResult res = ncbiStub.run_eInfo(new EInfoRequest());
   8 

Custom Event Model

(Under construction)

Instead of using standard PropertyChange events, core and clients sending custom events.

CyWebServiceEvent

This event should contain the following information:

CyWebServiceEventListener

Individual Client Design

Based on the architecture above, we need to design and implement several web service clients for popular biological databases.

Shared Components

Web Service Clients (WSC) use the following components in the core:

  1. Client Property and Tunables
    • WSC should have a WSCProperty object which includes basic information of the client and property values which controls the behaviour of WSC.

      • Basic information
        • End Point (URI of the service)
        • Description
      • Example property values:
        • Search Mode - keyword or ID list.

        • Maximum Number of Result - Limit the number of search result (interactions / gene IDs) returned by the service.

    • These values will be managed through Tunable class. Currently it is used only by the Layout Manager, but will be generalized to edit all property values for WSC.

    • All of these properties are accessible from WebServiceClientManagerDialog.

      • wscm_dialog.png Left panel shows available (loaded) WSC and its category in the core. Right panel displays editable properties generated by Tunable.

  2. Network Import Panel
    • network_import_panel.png

    • This GUI component will be in the core for all network import WSCs. For simplicity, this panel accepts only two parameters: source database (source web service) and query string. Query string syntax depends on the service type. For example, IntAct accepts Apache Lucene syntax, and NCBI E-Utilities accepts list of EntrezGene IDs (run_eFetch method) or free keyword (run_eSearch method) as its parameter. In addition, we can pipeline search service and data fetch service(s) to accept keyword search (see the NCBI client example below). So we need a mechanism to switch the search mode for the clients (keyword search or data fetch based on ID list). Also, users may need to limit the number of interactions returned by service if the workstation's memory is limited. All of these will be encoded as properties and accessible from Option button. It just displays WebServiceClientManagerDialog discussed above.

  3. Attribute Import Panel
    • attribute_import_panel.png

    • In many cases, attribute import client needs the following information to map attributes onto Cytoscape's data structure (CyAttributes):

    • Data Source - source database name
    • Attribute name used for mapping
    • Data type of the attribute - Official Symbol, EntrezGene ID, Ensembl Ac. Number, etc.

    • List of available attributes in the selected datasource.

      The GUI above will be in the core as the utility for attribute import clients. It takes icon and labels as its parameters. Checkbox list should be created by the client. (Example above is for UniProt KB)

ID Mapping and Attribute Import

Biomart

biomartidmapping1.png

Biomart client will be used as main datasource for ID mapping. For simple UI, Filter is always created from list of ID / Attribute. Since Biomart does not have published WSDL, we will implement a simple stub to accept XML query as the parameter.

UniProt

Recently, UniProt released UniProt Java Remoting API (UniProtJAPI). We will wrap this API with the WebServiceClient interface in Cytoscape.

KEGG

Most usuful information in KEGG is its pathway database. Most of them are accessible through KEGG API. We can use it to annotate networks in Cytoscape by fetching information theorugh their API.

Pathway import function is optional since their pathway is not a simple graph object with binary-relationships (edges). We need to consider how to interpret reaction edges in Cytoscape (maybe HyperEdge?).

Network Import

Network import clients may have the following private methods which will be called via CyWebServiceEvent handlers:

  1. importNetwork(Object query)

    • Create network based on the return values from the web service.
  2. expandNetwork(Object query) expand_network.png

    • Expand function extracts list of selected node IDs and send it to the web service as the query. This will be called from context menu item in the current network view. Once the menu item is selected, CyWebServiceEvent wil lbe fired and listeners (network import web service clients) catch the event to execute expandNetwork method. Example above shows how to expand interactions around P35580 (MYH10) by IntAct web service client.

IntAct

Cytoscape accesses IntAct through BinarySearchServiceClient. It takes Lucene syntax for query. We can add keyword search by pipelining search result from UniProtJAPI.

NCBI

NCBI Entrez database has a unified web service called NCBI E-Utilities. The Entrez Gene database will be the main resource for Cytoscape. This DB can be accessed through the E-Utilities web service. Users can use both keywords and list of Entrez Gene ID as the search term. Actual network data will be extracted form Interaction section of the returned data. Since we can extract interactions of one gene at a time, we need use Java SE 5's new Concurrency Framework to run multiple threads for fetching data efficiently.

Comments

How to Comment

Edit the page and add your comments under the provided header. 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. 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.

SarahKillcoyne August 16, 2007

This RFC would seem to be very related to the Data Integration one. Might be useful to discuss this as part of a larger web services integration if we decide a larger, more general solution would be useful.

AllanKuchinsky October 8, 2007

I would like to provide a 'preview window' for available pathways for a web service. I would like to be able to query a web service, such as PathwayCommons, for a list, preferably hierarchical, of available pathways, then present that list as a JTree (Windows Explorer-like interface) in a CytoPanel. When the user selects a pathway from the JTree, the pathway is imported via the Web service.

BioWebServiceConnectivity (last edited 2009-02-12 01:03:45 by localhost)

Funding for Cytoscape is provided by a federal grant from the U.S. National Institute of General Medical Sciences (NIGMS) of the Na tional Institutes of Health (NIH) under award number GM070743-01. Corporate funding is provided through a contract from Unilever PLC.

MoinMoin Appliance - Powered by TurnKey Linux