DataStandardisation » History » Version 5

Paweł Widera, 10/05/2007 08:02 PM
XML input definition added.

1 5 Paweł Widera
= Standardising Results with XML =  
2 1 Anonymous
3 4 Anonymous
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.
4 1 Anonymous
5 5 Paweł Widera
== Input ==
6 1 Anonymous
7 5 Paweł Widera
''Optional tags'': '''exclude''' (measure, result), '''log''' (no log is generated if not specified) [[BR]]
8 5 Paweł Widera
''Optional attributes'': '''description'''
9 1 Anonymous
10 1 Anonymous
{{{
11 5 Paweł Widera
<job id="ID" description="TEXT">
12 5 Paweł Widera
  <log filename="FILENAME" />
13 5 Paweł Widera
  
14 5 Paweł Widera
  <input type="structure|tree|contact map|similarity matrix">
15 5 Paweł Widera
    <item id="ID" label="TEXT" filename="FILENAME" />
16 5 Paweł Widera
    ...
17 5 Paweł Widera
    <item id="ID" label="TEXT" filename="FILENAME" />
18 5 Paweł Widera
  </input>  
19 1 Anonymous
20 5 Paweł Widera
  <method id="ID" name="TEXT">
21 5 Paweł Widera
    <param name="TEXT">VALUE</param>
22 5 Paweł Widera
    ...
23 5 Paweł Widera
    <param name="TEXT">VALUE</param>
24 1 Anonymous
25 5 Paweł Widera
    <exclude>
26 5 Paweł Widera
      <measure>NAME</measure>
27 5 Paweł Widera
      ...
28 5 Paweł Widera
      <measure>NAME</measure>
29 5 Paweł Widera
      
30 5 Paweł Widera
      <result>NAME</result>
31 5 Paweł Widera
      ...
32 5 Paweł Widera
      <result>NAME</result>
33 5 Paweł Widera
    </exclude>
34 5 Paweł Widera
  </method>
35 5 Paweł Widera
  ...
36 5 Paweł Widera
  <method>
37 5 Paweł Widera
    ...
38 5 Paweł Widera
  </method>
39 5 Paweł Widera
</job>
40 1 Anonymous
}}}
41 1 Anonymous
42 5 Paweł Widera
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.