Changes between Version 9 and Version 10 of Interaction networks
- Timestamp:
- 2008/02/14 12:55:46 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Interaction networks
v9 v10 30 30 31 31 * !IntAct already provides a very simple SOAP based web service (http://www.ebi.ac.uk/~intact/devsite/remote/binarysearch_ws.html) 32 32 33 * NCBI Entrez Gene has meta-database of interactions (MINT, !BioGrid, and BIND), but access to these dataset is hard due to API design. 33 34 … … 48 49 * Get interaction or partners not only using Uniprot IDs (the primary identifiers for interactors used in !IntAct) 49 50 51 Note: during the week, a common WSDL for interaction web services has been defined, so this section will be accomplish by implementing such a service. 52 50 53 === Define a common Interaction Query Language === 51 54 … … 53 56 54 57 * [wiki:PSICQUIC] - attempt to create a REST-based query language. 55 * [http://lucene.apache.org] Lucene based searches over PSI-MI tab files - this is what is currently used in !IntAct. 56 * This option seems to be the simplest according to the participants in the group, and could be a starting point. 58 * A common WSDL, based on the original ideas of PSICQUIC and new requirements, will be defined in the BioHackathon 59 * [http://lucene.apache.org Lucene] based searches over PSI-MI tab files - this is what is currently used in !IntAct. 60 * This option is really powerful. A method allowing queries will be part of the common WSDL. However, it is not clear if all providers will implement this method (!IntAct will, well, it is actually using it :) ) 57 61 58 62 === Define specific use-cases === … … 65 69 66 70 Problems: it does not comply neither with the PSI-MI specification nor with the DAS one. 71 72 Due to time constraints, no effort will be dedicated in the BioHackathon to this. 67 73 68 74 = Other Resources = … … 82 88 * The methods should be in the default exchange format (PSI-MI XML). 83 89 * Problem: This means dealing with potentially huge files (about 30 Mb for 2000 interactions, and databases such as IntAct contain 100000+ and increasing exponentially). 84 * Solution: unknown (using URIs?)90 * Solution: unknown ~~(using URIs?)~~ (comment from Day 4: pagination of the results will be implemented in the first version) 85 91 86 92 == Day 3 == … … 89 95 * PSI-MI Reader should be modifed to read more details in the object. (Currently, some of the details are skipped.) 90 96 * Need to add a switch to import minimal dataset (graph information only. No attributes) or full detail. 97 98 == Day 4 == 99 === PSICQUIC - Common Web Service interface for all Interaction providers === 100 A initial set of methods have been defined and can be seen in the latest WSDL attachments. 101 Basically, the result of the search methods will return !EntrySet (MIF) or MITAB format, dependending on the return type format parameter passed to the method. Some metadata about the query will be returned too (e.g. total results, first result index, block size, expirationDate...). 102 The PSIMITAB format will be output by the methods wrapped in very simple XML (mitab-1.0.xml schema attached), that defines rows and columns instead of returning just plain strings that need to be parsed.