DataStandardisation » History » Version 8

« Previous - Version 8/14 (diff) - Next » - Current version
Anonymous, 10/05/2007 11:49 PM


= The ProCKSI "stand-alone" ''Core'' Application =

ProCKSI utilises a variety of similarity comparison methods (e.g. USM, MaxCMO, TMaling, ...) producing different similarity measures (e.g. Zscore, TMscore, RMSD, ...) each. Each of the comparison methods produces output with different formats and additional content such as alignments, rotation matrix, etc. Some of them produce just one output file, others a set of linked HTML files.

Additionally, there are pre- and post-processing methods, e.g. preparation of contact maps from structures, or clustering of similarity matrices, that have their own input parameters and produce different output.

The goal can be described as follows: br
Allow the ProCKSI "stand-alone" ''core'' application to
1. be developped independently from the ProCKSI ''framework'' (incl. webserver/database), and allow collaborators to seamlessly integrate their own methods. One might even think of making the code publically available and allow the community to improve it.
2. run on any (Linux) machine that has the necessary methods installed. This can be either a collaborator's desktop machine, the ProCKSI cluster, the University Cluster, or even a machine on the Grid.
3. further distribute the given task using local machines, Grid and Web Service technology in order to obtain their results without the need to schedule everything from one central point (''Orchestration'' vs. ''Choreography'').
4. return its results in a standardised format that can easily be integrated into the ProCKSI database and thus resused be the ProCKSI framework and all other experiments "on the command line".

= Standardising Results with XML =

The principle API for the ProCKSI "stand-alone" ''core'' application can be visualised as follows:

Image(ProCKSI-core-API.png)

One file in XML format is fed into the ProCKSI "stand-alone" ''core'' application, describing the entire dataset, all tasks and the necessary input parameters. At the end, one output file in XML format is written, which might link to further external files in specific format (e.g. PDF, CM, ...) if necessary.

Input Specifications
This is the latest proposal for the XML input file:

Optional tags: '''exclude''' (measure, result), '''log''' (no log is generated if not specified) BR
Optional attributes: '''description'''

{{{
<job id="ID" description="TEXT">
<log filename="FILENAME" />

&lt;input type="structure|tree|contact map|similarity matrix"&gt;
&lt;item id="ID" label="TEXT" filename="FILENAME" /&gt;
:::
&lt;item id="ID" label="TEXT" filename="FILENAME" /&gt;
&lt;/input&gt;
&lt;method id="ID" name="TEXT"&gt;
&lt;param name="TEXT"&gt;VALUE&lt;/param&gt;
:::
&lt;param name="TEXT"&gt;VALUE&lt;/param&gt;
&lt;exclude&gt;
&lt;measure&gt;NAME&lt;/measure&gt;
:::
&lt;measure&gt;NAME&lt;/measure&gt;
&lt;result&gt;NAME&lt;/result&gt;
:::
&lt;result&gt;NAME&lt;/result&gt;
&lt;/exclude&gt;
&lt;/method&gt;
:::
&lt;method ...&gt;
...
&lt;/method&gt;
&lt;/job&gt;
}}}

The ''<job>'' might be renamed into ''<packages>>'', the ''<input>'' into ''<dataset>'', in order to be consistent with the [wiki:DataStorage Extended Database Design].

The data used as an input could be protein structures, similarity trees, contact maps or similarity matrices. All specified methods should be able to operate on given data files. This dependency could be verified automatically using XML Schema.

Output Specifications
This is the latest proposal for the XML output file:

Optional tags: '''log''', '''message''', '''similarity''' (used only if output is a ''comparison'') BR
Optional attributes: '''description''', '''node''', '''start''', '''end''', '''ref_id''' (only if output type is ''composition''), '''ref_id2''' (only if output type is not ''comparison'')

{{{
<job id="ID" description="TEXT" node="TEXT" start="TIME" end="TIME">
<log filename="FILENAME" />

&lt;message type="error|warning|info"&gt;TEXT&lt;/message&gt;
:::
&lt;message type="error|warning|info"&gt;TEXT&lt;/message&gt;
&lt;input type="structure|tree|contact map|similarity matrix"&gt;
&lt;item id="ID" label="TEXT" filename="FILENAME" /&gt;
:::
&lt;item id="ID" label="TEXT" filename="FILENAME" /&gt;
&lt;/input&gt;
&lt;parameters&gt;
&lt;method id="ID" name="NAME"&gt;
&lt;parameter name="TEXT"&gt;VALUE&lt;/parameter&gt;
:::
&lt;parameter name="TEXT"&gt;VALUE&lt;/parameter&gt;
&lt;/method&gt;
:::
&lt;method ...&gt;
...
&lt;/method&gt;
&lt;/parameters&gt;
&lt;output type="transformation|comparison|composition" ref_id="" ref_id2=" "&gt;
&lt;method id="ID"&gt;
&lt;message type="error|warning|info"&gt;TEXT&lt;/message&gt;
:::
&lt;message type="error|warning|info"&gt;TEXT&lt;/message&gt;
&lt;similarity measure="NAME"&gt;VALUE&lt;/similarity&gt;
:::
&lt;similarity measure="NAME"&gt;VALUE&lt;/similarity&gt;
&lt;file type="TEXT" label="TEXT" name="FILENAME" /&gt;
:::
&lt;file type="TEXT" label="TEXT" name="FILENAME" /&gt;
&lt;method&gt;
&lt;/output&gt;
:::
&lt;output ...&gt;
...
&lt;/output&gt;
&lt;/job&gt;
}}}

Message being an error, warning or additional information could be passed on a global or a method level. Input data and parameters defined in the input file could be repeated in the output if needed (self-contained output). Output could be a 1->1 transformation (e.g. structure > contact map), a 2>1 comparison (e.g. 2*structure > similarity measure) or N>1 composition (e.g. N*tree -> total tree or N*similarity matrix -> consensus similarity matrix). The results other than similarity measures for a pair of proteins are stored in external files and are just referenced from the XML file.

The alignment data could be described in the XML file, as there is no single format used by all programs. This yet to be decided.

ProCKSI-core-API.png (13.3 KB) Paweł Widera, 08/27/2013 03:16 AM

ProCKSI-core-API.xmi (12.5 KB) Paweł Widera, 08/27/2013 03:16 AM