~ubuntu-branches/ubuntu/wily/openms/wily

« back to all changes in this revision

Viewing changes to share/OpenMS/SCHEMAS/TraML0.9.3.xsd

  • Committer: Package Import Robot
  • Author(s): Filippo Rusconi
  • Date: 2012-11-12 15:58:12 UTC
  • Revision ID: package-import@ubuntu.com-20121112155812-vr15wtg9b50cuesg
Tags: upstream-1.9.0
ImportĀ upstreamĀ versionĀ 1.9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://psi.hupo.org/ms/traml" xmlns:traml="http://psi.hupo.org/ms/traml" elementFormDefault="qualified" targetNamespace="http://psi.hupo.org/ms/traml" version="0.9.3">
 
3
        <xs:complexType name="TraMLType">
 
4
                <xs:annotation>
 
5
                        <xs:documentation>Container for the HUPO PSI TraML format for encoding selected reaction monitoring transitions and other target lists</xs:documentation>
 
6
                </xs:annotation>
 
7
                <xs:sequence>
 
8
                        <xs:element name="cvList" type="cvListType"/>
 
9
                        <xs:element name="SourceFileList" type="SourceFileListType" minOccurs="0"/>
 
10
                        <xs:element name="ContactList" type="ContactListType" minOccurs="0"/>
 
11
                        <xs:element name="PublicationList" type="PublicationListType" minOccurs="0"/>
 
12
                        <xs:element name="InstrumentList" type="InstrumentListType" minOccurs="0"/>
 
13
                        <xs:element name="SoftwareList" type="SoftwareListType" minOccurs="0"/>
 
14
                        <xs:element name="ProteinList" type="ProteinListType" minOccurs="0"/>
 
15
                        <xs:element name="CompoundList" type="CompoundListType" minOccurs="0"/>
 
16
                        <xs:element name="TransitionList" type="TransitionListType" minOccurs="0"/>
 
17
                        <xs:element name="TargetList" type="TargetListType" minOccurs="0"/>
 
18
                </xs:sequence>
 
19
                <xs:attribute name="id" type="xs:string" use="optional">
 
20
                        <xs:annotation>
 
21
                                <xs:documentation>An optional id for the TraML document used for referencing from external files. It is recommended to use LSIDs when possible.</xs:documentation>
 
22
                        </xs:annotation>
 
23
                </xs:attribute>
 
24
                <xs:attribute name="version" type="xs:string" use="required">
 
25
                        <xs:annotation>
 
26
                                <xs:documentation>Version of the TraML format used by this document</xs:documentation>
 
27
                        </xs:annotation>
 
28
                </xs:attribute>
 
29
        </xs:complexType>
 
30
        <xs:element name="TraML" type="TraMLType">
 
31
                <xs:key name="PK_PEPTIDE">
 
32
                        <xs:selector xpath=".//traml:CompoundList/traml:Peptide"/>
 
33
                        <xs:field xpath="@id"/>
 
34
                </xs:key>
 
35
                <xs:key name="PK_COMPOUND">
 
36
                        <xs:selector xpath=".//traml:CompoundList/traml:Compound"/>
 
37
                        <xs:field xpath="@id"/>
 
38
                </xs:key>
 
39
                <xs:keyref name="FK_TRANSITION_PEPTIDE" refer="PK_PEPTIDE">
 
40
                        <xs:selector xpath=".//traml:TransitionList/traml:Transition"/>
 
41
                        <xs:field xpath="@peptideRef"/>
 
42
                </xs:keyref>
 
43
                <xs:keyref name="FK_TRANSITION_COMPOUND" refer="PK_COMPOUND">
 
44
                        <xs:selector xpath=".//traml:TransitionList/traml:Transition"/>
 
45
                        <xs:field xpath="@compoundRef"/>
 
46
                </xs:keyref>
 
47
                <xs:key name="PK_TRANSITION">
 
48
                        <xs:selector xpath=".//traml:TransitionList/traml:Transition"/>
 
49
                        <xs:field xpath="@id"/>
 
50
                </xs:key>
 
51
        </xs:element>
 
52
        <xs:complexType name="CompoundType">
 
53
                <xs:annotation>
 
54
                        <xs:documentation>Chemical compound other than a peptide for which one or more transitions </xs:documentation>
 
55
                </xs:annotation>
 
56
                <xs:sequence>
 
57
                        <xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
 
58
                        <xs:element name="RetentionTimeList" type="RetentionTimeListType" minOccurs="0" maxOccurs="unbounded"/>
 
59
                </xs:sequence>
 
60
                <xs:attribute name="id" type="xs:ID" use="required">
 
61
                        <xs:annotation>
 
62
                                <xs:documentation>Identifier for the compound to be used for referencing within a document</xs:documentation>
 
63
                        </xs:annotation>
 
64
                </xs:attribute>
 
65
        </xs:complexType>
 
66
        <xs:complexType name="CompoundListType">
 
67
                <xs:annotation>
 
68
                        <xs:documentation>List of compounds (including peptides) for which one or more transitions are intended to identify</xs:documentation>
 
69
                </xs:annotation>
 
70
                <xs:sequence>
 
71
                        <xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
 
72
                        <xs:element name="Peptide" type="PeptideType" minOccurs="0" maxOccurs="unbounded"/>
 
73
                        <xs:element name="Compound" type="CompoundType" minOccurs="0" maxOccurs="unbounded"/>
 
74
                </xs:sequence>
 
75
        </xs:complexType>
 
76
        <xs:complexType name="ConfigurationType">
 
77
                <xs:annotation>
 
78
                        <xs:documentation>Instrument configuration used in the validation or optimization of the transitions</xs:documentation>
 
79
                </xs:annotation>
 
80
                <xs:sequence>
 
81
                        <xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
 
82
                        <xs:element name="Validation" type="ValidationType" minOccurs="0" maxOccurs="unbounded"/>
 
83
                </xs:sequence>
 
84
                <xs:attribute name="contactRef" type="xs:IDREF" use="optional">
 
85
                        <xs:annotation>
 
86
                                <xs:documentation>Reference to a contact person originating this information</xs:documentation>
 
87
                        </xs:annotation>
 
88
                </xs:attribute>
 
89
                <xs:attribute name="instrumentRef" type="xs:IDREF" use="required">
 
90
                        <xs:annotation>
 
91
                                <xs:documentation>Reference to an instrument for which this configuration information is appropriate</xs:documentation>
 
92
                        </xs:annotation>
 
93
                </xs:attribute>
 
94
        </xs:complexType>
 
95
        <xs:complexType name="ConfigurationListType">
 
96
                <xs:annotation>
 
97
                        <xs:documentation>List of insutrument configurations used in the validation or optimization of the transitions</xs:documentation>
 
98
                </xs:annotation>
 
99
                <xs:sequence>
 
100
                        <xs:element name="Configuration" type="ConfigurationType"/>
 
101
                </xs:sequence>
 
102
        </xs:complexType>
 
103
        <xs:complexType name="ContactType">
 
104
                <xs:annotation>
 
105
                        <xs:documentation>Contact person referenced in the generation or validation of transitions</xs:documentation>
 
106
                </xs:annotation>
 
107
                <xs:sequence>
 
108
                        <xs:element name="cvParam" type="cvParamType" maxOccurs="unbounded"/>
 
109
                </xs:sequence>
 
110
                <xs:attribute name="id" type="xs:ID" use="required">
 
111
                        <xs:annotation>
 
112
                                <xs:documentation>Identifier for the contact to be used for referencing within a document</xs:documentation>
 
113
                        </xs:annotation>
 
114
                </xs:attribute>
 
115
        </xs:complexType>
 
116
        <xs:complexType name="ContactListType">
 
117
                <xs:annotation>
 
118
                        <xs:documentation>List of contacts referenced in the generation or validation of transitions</xs:documentation>
 
119
                </xs:annotation>
 
120
                <xs:sequence>
 
121
                        <xs:element name="Contact" type="ContactType" maxOccurs="unbounded"/>
 
122
                </xs:sequence>
 
123
        </xs:complexType>
 
124
        <xs:complexType name="cvType">
 
125
                <xs:annotation>
 
126
                        <xs:documentation>Controlled vocabulary used in a TraML document</xs:documentation>
 
127
                </xs:annotation>
 
128
                <xs:attribute name="version" type="xs:string" use="required">
 
129
                        <xs:annotation>
 
130
                                <xs:documentation>Version of controlled vocabulary in use when the document was created</xs:documentation>
 
131
                        </xs:annotation>
 
132
                </xs:attribute>
 
133
                <xs:attribute name="URI" type="xs:anyURI" use="required">
 
134
                        <xs:annotation>
 
135
                                <xs:documentation>Uniform Resource Identifier for the controlled vocabulary</xs:documentation>
 
136
                        </xs:annotation>
 
137
                </xs:attribute>
 
138
                <xs:attribute name="fullName" type="xs:string" use="required">
 
139
                        <xs:annotation>
 
140
                                <xs:documentation>Full name of the controlled vocabulary</xs:documentation>
 
141
                        </xs:annotation>
 
142
                </xs:attribute>
 
143
                <xs:attribute name="id" type="xs:ID" use="required">
 
144
                        <xs:annotation>
 
145
                                <xs:documentation>Identifier for the controlled vocabulary to be used for referencing within a document</xs:documentation>
 
146
                        </xs:annotation>
 
147
                </xs:attribute>
 
148
        </xs:complexType>
 
149
        <xs:complexType name="cvListType">
 
150
                <xs:annotation>
 
151
                        <xs:documentation>List of controlled vocabularies used in a TraML document</xs:documentation>
 
152
                </xs:annotation>
 
153
                <xs:sequence>
 
154
                        <xs:element name="cv" type="cvType" maxOccurs="unbounded"/>
 
155
                </xs:sequence>
 
156
        </xs:complexType>
 
157
        <xs:complexType name="cvParamType">
 
158
                <xs:annotation>
 
159
                        <xs:documentation>Controlled vocabulary term adding information to the parent term</xs:documentation>
 
160
                </xs:annotation>
 
161
                <xs:attribute name="cvRef" type="xs:IDREF" use="required">
 
162
                        <xs:annotation>
 
163
                                <xs:documentation>Reference to a controlled vocabulary for which this cvParam is </xs:documentation>
 
164
                        </xs:annotation>
 
165
                </xs:attribute>
 
166
                <xs:attribute name="name" type="xs:string" use="required">
 
167
                        <xs:annotation>
 
168
                                <xs:documentation>Name of the controlled vocabulary term referenced</xs:documentation>
 
169
                        </xs:annotation>
 
170
                </xs:attribute>
 
171
                <xs:attribute name="accession" type="xs:string" use="required">
 
172
                        <xs:annotation>
 
173
                                <xs:documentation>Accession number of the controlled vocabulary term referenced</xs:documentation>
 
174
                        </xs:annotation>
 
175
                </xs:attribute>
 
176
                <xs:attribute name="value" type="xs:string" use="optional">
 
177
                        <xs:annotation>
 
178
                                <xs:documentation>Scalar value qualifying the controlled vocabulary term referenced</xs:documentation>
 
179
                        </xs:annotation>
 
180
                </xs:attribute>
 
181
                <xs:attribute name="unitAccession" type="xs:string" use="optional">
 
182
                        <xs:annotation>
 
183
                                <xs:documentation>An optional CV accession number for the unit term associated with the value, if any (e.g., 'UO:0000266' for 'electron volt').</xs:documentation>
 
184
                                </xs:annotation>
 
185
                </xs:attribute>
 
186
                <xs:attribute name="unitName" type="xs:string" use="optional">
 
187
                        <xs:annotation>
 
188
                                <xs:documentation>An optional CV name for the unit accession number, if any (e.g., 'electron volt' for 'UO:0000266' ).</xs:documentation>
 
189
                        </xs:annotation>
 
190
                </xs:attribute>
 
191
                <xs:attribute name="unitCvRef" type="xs:IDREF" use="optional">
 
192
                        <xs:annotation>
 
193
                                <xs:documentation>If a unit term is referenced, this attribute must refer to the CV 'id' attribute defined in the cvList in this mzML file.</xs:documentation>
 
194
                        </xs:annotation>
 
195
                </xs:attribute>
 
196
        </xs:complexType>
 
197
        <xs:complexType name="EvidenceType">
 
198
                <xs:annotation>
 
199
                        <xs:documentation>Information about empirical mass spectrometer observations of the peptide</xs:documentation>
 
200
                </xs:annotation>
 
201
                <xs:sequence>
 
202
                        <xs:element name="cvParam" type="cvParamType" maxOccurs="unbounded"/>
 
203
                </xs:sequence>
 
204
        </xs:complexType>
 
205
        <xs:complexType name="InstrumentType">
 
206
                <xs:annotation>
 
207
                        <xs:documentation>Instrument on which transitions are validated</xs:documentation>
 
208
                </xs:annotation>
 
209
                <xs:sequence>
 
210
                        <xs:element name="cvParam" type="cvParamType"/>
 
211
                </xs:sequence>
 
212
                <xs:attribute name="id" type="xs:ID" use="required">
 
213
                        <xs:annotation>
 
214
                                <xs:documentation>Identifier for the instrument to be used for referencing within a document</xs:documentation>
 
215
                        </xs:annotation>
 
216
                </xs:attribute>
 
217
        </xs:complexType>
 
218
        <xs:complexType name="InstrumentListType">
 
219
                <xs:annotation>
 
220
                        <xs:documentation>List of instruments on which transitions are validated</xs:documentation>
 
221
                </xs:annotation>
 
222
                <xs:sequence>
 
223
                        <xs:element name="Instrument" type="InstrumentType" maxOccurs="unbounded"/>
 
224
                </xs:sequence>
 
225
        </xs:complexType>
 
226
        <xs:complexType name="InterpretationType">
 
227
                <xs:annotation>
 
228
                        <xs:documentation>A possible interpration of the product ion for a transition</xs:documentation>
 
229
                </xs:annotation>
 
230
                <xs:sequence>
 
231
                        <xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
 
232
                </xs:sequence>
 
233
        </xs:complexType>
 
234
        <xs:complexType name="InterpretationListType">
 
235
                <xs:annotation>
 
236
                        <xs:documentation>List of possible interprations of fragment ions for a transition</xs:documentation>
 
237
                </xs:annotation>
 
238
                <xs:sequence>
 
239
                        <xs:element name="Interpretation" type="InterpretationType" maxOccurs="unbounded"/>
 
240
                </xs:sequence>
 
241
        </xs:complexType>
 
242
        <xs:complexType name="ModificationType">
 
243
                <xs:annotation>
 
244
                        <xs:documentation>A molecule modification specification. If n modifications are present on the peptide, there should be n instances of the modification element. If multiple modifications are provided as cvParams, it is assumed the modification is ambiguous, i.e. one modification or the other. If no cvParams are provided it is assumed that the delta has not been matched to a known modification.</xs:documentation>
 
245
                </xs:annotation>
 
246
                <xs:sequence>
 
247
                        <xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
 
248
                </xs:sequence>
 
249
                <xs:attribute name="location" type="xs:int" use="required">
 
250
                        <xs:annotation>
 
251
                                <xs:documentation>Location of the modification within the peptide sequence, counted from the N-terminus, starting at position 1. Specific modifications to the N-terminus should be given the location 0. Modification to the C-terminus should be given as peptide length + 1.</xs:documentation>
 
252
                        </xs:annotation>
 
253
                </xs:attribute>
 
254
                <xs:attribute name="monoisotopicMassDelta" type="xs:double" use="optional">
 
255
                        <xs:annotation>
 
256
                                <xs:documentation>Atomic mass delta when assuming only the most common isotope of elements in Daltons.</xs:documentation>
 
257
                        </xs:annotation>
 
258
                </xs:attribute>
 
259
                <xs:attribute name="averageMassDelta" type="xs:double" use="optional">
 
260
                        <xs:annotation>
 
261
                                <xs:documentation>Atomic mass delta when considering the natural distribution of isotopes in Daltons.</xs:documentation>
 
262
                        </xs:annotation>
 
263
                </xs:attribute>
 
264
        </xs:complexType>
 
265
        <xs:complexType name="PeptideType">
 
266
                <xs:annotation>
 
267
                        <xs:documentation>Peptide for which one or more transitions are intended to identify</xs:documentation>
 
268
                </xs:annotation>
 
269
                <xs:sequence>
 
270
                        <xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
 
271
                        <xs:element name="ProteinRef" type="ProteinRefType" minOccurs="0" maxOccurs="unbounded"/>
 
272
                        <xs:element name="Modification" type="ModificationType" minOccurs="0" maxOccurs="unbounded"/>
 
273
                        <xs:element name="RetentionTimeList" type="RetentionTimeListType" minOccurs="0"/>
 
274
                        <xs:element name="Evidence" type="EvidenceType" minOccurs="0"/>
 
275
                </xs:sequence>
 
276
                <xs:attribute name="id" type="xs:ID" use="required">
 
277
                        <xs:annotation>
 
278
                                <xs:documentation>Identifier for the peptide to be used for referencing within a document</xs:documentation>
 
279
                        </xs:annotation>
 
280
                </xs:attribute>
 
281
                <xs:attribute name="sequence" type="xs:string" use="required">
 
282
                        <xs:annotation>
 
283
                                <xs:documentation>Amino acid sequence of the peptide being described</xs:documentation>
 
284
                        </xs:annotation>
 
285
                </xs:attribute>
 
286
        </xs:complexType>
 
287
        <xs:complexType name="PrecursorType">
 
288
                <xs:annotation>
 
289
                        <xs:documentation>Precursor (Q1) of the transition or target</xs:documentation>
 
290
                </xs:annotation>
 
291
                <xs:sequence>
 
292
                        <xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
 
293
                </xs:sequence>
 
294
        </xs:complexType>
 
295
        <xs:complexType name="ProductType">
 
296
                <xs:annotation>
 
297
                        <xs:documentation>Product (Q3) of the transition</xs:documentation>
 
298
                </xs:annotation>
 
299
                <xs:sequence>
 
300
                        <xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
 
301
                </xs:sequence>
 
302
        </xs:complexType>
 
303
        <xs:complexType name="PredictionType">
 
304
                <xs:annotation>
 
305
                        <xs:documentation>Information about a prediction for a suitable transition using some software</xs:documentation>
 
306
                </xs:annotation>
 
307
                <xs:sequence>
 
308
                        <xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
 
309
                </xs:sequence>
 
310
                <xs:attribute name="softwareRef" type="xs:IDREF" use="required">
 
311
                        <xs:annotation>
 
312
                                <xs:documentation>Reference to a software package from which this prediction is derived</xs:documentation>
 
313
                        </xs:annotation>
 
314
                </xs:attribute>
 
315
                <xs:attribute name="contactRef" type="xs:IDREF" use="optional">
 
316
                        <xs:annotation>
 
317
                                <xs:documentation>Reference to a contact person that generated this prediction</xs:documentation>
 
318
                        </xs:annotation>
 
319
                </xs:attribute>
 
320
        </xs:complexType>
 
321
        <xs:complexType name="ProteinType">
 
322
                <xs:annotation>
 
323
                        <xs:documentation>Protein for which one or more transitions are intended to identify</xs:documentation>
 
324
                </xs:annotation>
 
325
                <xs:sequence>
 
326
                        <xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
 
327
                        <xs:element name="Sequence" type="SequenceType" minOccurs="0" maxOccurs="1"/>
 
328
                </xs:sequence>
 
329
                <xs:attribute name="id" type="xs:ID" use="required">
 
330
                        <xs:annotation>
 
331
                                <xs:documentation>Identifier for the protein to be used for referencing within a document</xs:documentation>
 
332
                        </xs:annotation>
 
333
                </xs:attribute>
 
334
        </xs:complexType>
 
335
        <xs:complexType name="ProteinListType">
 
336
                <xs:annotation>
 
337
                        <xs:documentation>List of proteins for which one or more transitions are intended to identify</xs:documentation>
 
338
                </xs:annotation>
 
339
                <xs:sequence>
 
340
                        <xs:element name="Protein" type="ProteinType" maxOccurs="unbounded"/>
 
341
                </xs:sequence>
 
342
        </xs:complexType>
 
343
        <xs:complexType name="ProteinRefType">
 
344
                <xs:annotation>
 
345
                        <xs:documentation>Reference to a protein which this peptide is intended to identify</xs:documentation>
 
346
                </xs:annotation>
 
347
                <xs:attribute name="ref" type="xs:IDREF" use="optional">
 
348
                        <xs:annotation>
 
349
                                <xs:documentation>Reference to a protein which this peptide is intended to identify</xs:documentation>
 
350
                        </xs:annotation>
 
351
                </xs:attribute>
 
352
        </xs:complexType>
 
353
        <xs:complexType name="PublicationType">
 
354
                <xs:annotation>
 
355
                        <xs:documentation>Reference to a publication in which one or more transitions were published</xs:documentation>
 
356
                </xs:annotation>
 
357
                <xs:sequence>
 
358
                        <xs:element name="cvParam" type="cvParamType"/>
 
359
                </xs:sequence>
 
360
                <xs:attribute name="id" type="xs:ID" use="required">
 
361
                        <xs:annotation>
 
362
                                <xs:documentation>Identifier for the publication to be used for referencing within a document</xs:documentation>
 
363
                        </xs:annotation>
 
364
                </xs:attribute>
 
365
        </xs:complexType>
 
366
        <xs:complexType name="PublicationListType">
 
367
                <xs:annotation>
 
368
                        <xs:documentation>List of publications from which the transitions were collected or wherein they are published</xs:documentation>
 
369
                </xs:annotation>
 
370
                <xs:sequence>
 
371
                        <xs:element name="Publication" type="PublicationType" maxOccurs="unbounded"/>
 
372
                </xs:sequence>
 
373
        </xs:complexType>
 
374
        <xs:complexType name="RetentionTimeType">
 
375
                <xs:annotation>
 
376
                        <xs:documentation>Information about predicted or calibrated retention time</xs:documentation>
 
377
                </xs:annotation>
 
378
                <xs:sequence>
 
379
                        <xs:element name="cvParam" type="cvParamType" minOccurs="1" maxOccurs="unbounded"/>
 
380
                </xs:sequence>
 
381
                <xs:attribute name="softwareRef" type="xs:IDREF" use="optional">
 
382
                        <xs:annotation>
 
383
                                <xs:documentation>Software used to determine the retention time</xs:documentation>
 
384
                        </xs:annotation>
 
385
                </xs:attribute>
 
386
        </xs:complexType>
 
387
        <xs:complexType name="RetentionTimeListType">
 
388
                <xs:annotation>
 
389
                        <xs:documentation>List of retention time information entries</xs:documentation>
 
390
                </xs:annotation>
 
391
                <xs:sequence>
 
392
                        <xs:element name="RetentionTime" type="RetentionTimeType" minOccurs="1" maxOccurs="unbounded"/>
 
393
                </xs:sequence>
 
394
        </xs:complexType>
 
395
        <xs:complexType name="SequenceType" mixed="true">
 
396
                <xs:annotation>
 
397
                        <xs:documentation>Amino acid sequence of the protein</xs:documentation>
 
398
                </xs:annotation>
 
399
        </xs:complexType>
 
400
        <xs:complexType name="SoftwareType">
 
401
                <xs:annotation>
 
402
                        <xs:documentation>Description of a software package used in the generation of one or more transitions described in the document</xs:documentation>
 
403
                </xs:annotation>
 
404
                <xs:sequence>
 
405
                        <xs:element name="cvParam" type="cvParamType"/>
 
406
                </xs:sequence>
 
407
                <xs:attribute name="id" type="xs:ID" use="required">
 
408
                        <xs:annotation>
 
409
                                <xs:documentation>Identifier for the software to be used for referencing within a document</xs:documentation>
 
410
                        </xs:annotation>
 
411
                </xs:attribute>
 
412
                <xs:attribute name="version" type="xs:string" use="required">
 
413
                        <xs:annotation>
 
414
                                <xs:documentation>Version of the software program described</xs:documentation>
 
415
                        </xs:annotation>
 
416
                </xs:attribute>
 
417
        </xs:complexType>
 
418
        <xs:complexType name="SoftwareListType">
 
419
                <xs:annotation>
 
420
                        <xs:documentation>List of software packages used in the generation of one of more transitions described in the document</xs:documentation>
 
421
                </xs:annotation>
 
422
                <xs:sequence>
 
423
                        <xs:element name="Software" type="SoftwareType" maxOccurs="unbounded"/>
 
424
                </xs:sequence>
 
425
        </xs:complexType>
 
426
        <xs:complexType name="SourceFileType">
 
427
                <xs:annotation>
 
428
                        <xs:documentation>Description of the source file, including location and type.</xs:documentation>
 
429
                </xs:annotation>
 
430
                <xs:sequence>
 
431
                        <xs:element name="cvParam" type="cvParamType" maxOccurs="unbounded"/>
 
432
                </xs:sequence>
 
433
                <xs:attribute name="id" type="xs:ID" use="required">
 
434
                        <xs:annotation>
 
435
                                <xs:documentation>Identifier for the sourceFile to be used for referencing within a document.</xs:documentation>
 
436
                        </xs:annotation>
 
437
                </xs:attribute>
 
438
                <xs:attribute name="name" type="xs:string" use="required">
 
439
                        <xs:annotation>
 
440
                                <xs:documentation>Name of the source file, without reference to location (either URI or local path).</xs:documentation>
 
441
                        </xs:annotation>
 
442
                </xs:attribute>
 
443
                <xs:attribute name="location" type="xs:anyURI" use="required">
 
444
                        <xs:annotation>
 
445
                                <xs:documentation>URI-formatted location where the file was retrieved.</xs:documentation>
 
446
                        </xs:annotation>
 
447
                </xs:attribute>
 
448
        </xs:complexType>
 
449
        <xs:complexType name="SourceFileListType">
 
450
                <xs:annotation>
 
451
                        <xs:documentation>List and descriptions of the source files this TraML document was generated or derived from</xs:documentation>
 
452
                </xs:annotation>
 
453
                <xs:sequence>
 
454
                        <xs:element name="SourceFile" type="SourceFileType" maxOccurs="unbounded"/>
 
455
                </xs:sequence>
 
456
        </xs:complexType>
 
457
        <xs:complexType name="TargetType">
 
458
                <xs:annotation>
 
459
                        <xs:documentation>A peptide or compound that is to be included or excluded from a target list of precursor m/z values.</xs:documentation>
 
460
                </xs:annotation>
 
461
                <xs:sequence>
 
462
                        <xs:element name="Precursor" type="PrecursorType"/>
 
463
                        <xs:element name="ConfigurationList" type="ConfigurationListType" minOccurs="0"/>
 
464
                        <xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
 
465
                </xs:sequence>
 
466
                <xs:attribute name="id" type="xs:string" use="required">
 
467
                        <xs:annotation>
 
468
                                <xs:documentation>String label for this target</xs:documentation>
 
469
                        </xs:annotation>
 
470
                </xs:attribute>
 
471
                <xs:attribute name="peptideRef" type="xs:IDREF" use="optional">
 
472
                        <xs:annotation>
 
473
                                <xs:documentation>Reference to a peptide for which this target is the trigger</xs:documentation>
 
474
                        </xs:annotation>
 
475
                </xs:attribute>
 
476
                <xs:attribute name="compoundRef" type="xs:IDREF" use="optional">
 
477
                        <xs:annotation>
 
478
                                <xs:documentation>Reference to a compound for which this target is the trigger</xs:documentation>
 
479
                        </xs:annotation>
 
480
                </xs:attribute>
 
481
        </xs:complexType>
 
482
        <xs:complexType name="TargetExcludeListType">
 
483
                <xs:annotation>
 
484
                        <xs:documentation>List of precursor m/z targets to exclude</xs:documentation>
 
485
                </xs:annotation>
 
486
                <xs:sequence>
 
487
                        <xs:element name="Target" type="TargetType" minOccurs="1" maxOccurs="unbounded"/>
 
488
                </xs:sequence>
 
489
        </xs:complexType>
 
490
        <xs:complexType name="TargetIncludeListType">
 
491
                <xs:annotation>
 
492
                        <xs:documentation>List of precursor m/z targets to include</xs:documentation>
 
493
                </xs:annotation>
 
494
                <xs:sequence>
 
495
                        <xs:element name="Target" type="TargetType" minOccurs="1" maxOccurs="unbounded"/>
 
496
                </xs:sequence>
 
497
        </xs:complexType>
 
498
        <xs:complexType name="TargetListType">
 
499
                <xs:annotation>
 
500
                        <xs:documentation>List of precursor m/z targets to include or exclude</xs:documentation>
 
501
                </xs:annotation>
 
502
                <xs:sequence>
 
503
                        <xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
 
504
                        <xs:element name="TargetIncludeList" type="TargetIncludeListType" minOccurs="0" maxOccurs="1"/>
 
505
                        <xs:element name="TargetExcludeList" type="TargetExcludeListType" minOccurs="0" maxOccurs="1"/>
 
506
                </xs:sequence>
 
507
        </xs:complexType>
 
508
        <xs:complexType name="TransitionType">
 
509
                <xs:annotation>
 
510
                        <xs:documentation>Information about a single transition for a peptide or other compound</xs:documentation>
 
511
                </xs:annotation>
 
512
                <xs:sequence>
 
513
                        <xs:element name="Precursor" type="PrecursorType"/>
 
514
                        <xs:element name="Product" type="ProductType"/>
 
515
                        <xs:element name="InterpretationList" type="InterpretationListType" minOccurs="0"/>
 
516
                        <xs:element name="Prediction" type="PredictionType" minOccurs="0"/>
 
517
                        <xs:element name="ConfigurationList" type="ConfigurationListType" minOccurs="0"/>
 
518
                        <xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
 
519
                </xs:sequence>
 
520
                <xs:attribute name="peptideRef" type="xs:IDREF" use="optional">
 
521
                        <xs:annotation>
 
522
                                <xs:documentation>Reference to a peptide which this transition is intended to identify</xs:documentation>
 
523
                        </xs:annotation>
 
524
                </xs:attribute>
 
525
                <xs:attribute name="compoundRef" type="xs:IDREF" use="optional">
 
526
                        <xs:annotation>
 
527
                                <xs:documentation>Reference to a compound for this transition</xs:documentation>
 
528
                        </xs:annotation>
 
529
                </xs:attribute>
 
530
                <xs:attribute name="id" type="xs:string" use="required">
 
531
                        <xs:annotation>
 
532
                                <xs:documentation>String label for this transition</xs:documentation>
 
533
                        </xs:annotation>
 
534
                </xs:attribute>
 
535
        </xs:complexType>
 
536
        <xs:complexType name="TransitionListType">
 
537
                <xs:annotation>
 
538
                        <xs:documentation>List of transitions</xs:documentation>
 
539
                </xs:annotation>
 
540
                <xs:sequence>
 
541
                        <xs:element name="Transition" type="TransitionType" minOccurs="1" maxOccurs="unbounded"/>
 
542
                </xs:sequence>
 
543
        </xs:complexType>
 
544
        <xs:complexType name="ValidationType">
 
545
                <xs:annotation>
 
546
                        <xs:documentation>Information about the state of validation of a transition on a given instrument model</xs:documentation>
 
547
                </xs:annotation>
 
548
                <xs:sequence>
 
549
                        <xs:element name="cvParam" type="cvParamType" minOccurs="0" maxOccurs="unbounded"/>
 
550
                </xs:sequence>
 
551
        </xs:complexType>
 
552
</xs:schema>