-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRDML_v1_4_CR.xsd
1660 lines (1586 loc) · 63.5 KB
/
RDML_v1_4_CR.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:rdml="http://www.rdml.org"
elementFormDefault="qualified"
targetNamespace="http://www.rdml.org"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>
The MIT License
Copyright (c) 2008-2022 the RDML-consortium
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
</xs:documentation>
</xs:annotation>
<xs:complexType name="annotationType">
<xs:annotation>
<xs:documentation>
These elements should be used to annotate samples by setting a
property and a value. A property could be sex, the value M or F.
</xs:documentation>
</xs:annotation>
<xs:all>
<xs:element name="property" type="xs:string"/>
<xs:element name="value" type="xs:string"/>
</xs:all>
</xs:complexType>
<xs:complexType name="cdnaSynthesisMethodType">
<xs:annotation>
<xs:documentation>
Description of the cDNA synthesis method.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="enzyme" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>
Enzyme used for reverse transcription.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="primingMethod" type="rdml:primingMethodType" minOccurs="0"/>
<xs:element name="dnaseTreatment" type="xs:boolean" minOccurs="0">
<xs:annotation>
<xs:documentation>
True if RNA was DNAse treated prior cDNA synthesis.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="thermalCyclingConditions" type="rdml:idReferencesType" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="commercialAssayType">
<xs:annotation>
<xs:documentation>
For some commercial assays, the primer sequences may be unknown. This element
allows to describe commercial assays.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="company" type="xs:string"/>
<xs:element name="orderNumber" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="cqDetectionMethodType">
<xs:annotation>
<xs:documentation>
The method used to determine the Cq value.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="automated threshold and baseline settings"/>
<xs:enumeration value="manual threshold and baseline settings"/>
<xs:enumeration value="second derivative maximum"/>
<xs:enumeration value="other"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="dataCollectionSoftwareType">
<xs:annotation>
<xs:documentation>
Software name and version used to collect and analyze the data.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="name" type="xs:string"/>
<xs:element name="version" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="dataType">
<xs:annotation>
<xs:documentation>
Due to the frequent occurrence of this element, names are kept short.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="tar" type="rdml:idReferencesType">
<xs:annotation>
<xs:documentation>
TargetID - A reference to a target.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="cq" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
Quantification cycle - The calculated fractional PCR cycle used
for downstream quantification.
Negative values are used to express following conditions:
Not Available: -1.0
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="N0" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
Pronounced N-zero. Target quantity or starting concentration per
reaction, expressed in calculated arbitrary fluorescence units.
Negative values are used to express following conditions:
Not Available: -1.0
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Ncopy" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
Abslute number of copies in a reaction.
Not Available: -1.0
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ampEffMet" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>
Amplification efficiency method is a given as free text.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ampEff" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
Amplification efficiency should be given as the fold-increase
of DNA per cycle (the base of the exponential function),
for example 1.95 for 95% efficiency.
If absent, the ideal efficiency of 2.0 should be used for
calculations.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ampEffSE" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
The standard error of the value provided in "ampEff"
should be given.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="corrF" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
The correction factor indicating the fraction of the expected
product in all products. A factor of 0.25 indicates that the
expected product contributes only a quarter to the observed
results.
corrN0 = (N0 * corrF) / corrP
If absent, the ideal correction factor of 1.0 should be used
for calculations.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="corrP" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
The correction factor to correct for inter run differences
within this experiment.
corrN0 = (N0 * corrF) / corrP
If absent, the ideal correction factor of 1.0 should be used
for calculations.
Negative values are used to express following conditions:
Not Available: -1.0
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="corrCq" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
Corrected quantification cycle - The corrected calculated fractional
PCR cycle used for downstream quantification.
Negative values are used to express following conditions:
Not Available: -1.0
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="meltTemp" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
The melting temperature in degrees Celsius of the amplified amplicon.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="excl" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>
Excluded - If present, this entry should not be evaluated. Do not set
this element to false if this entry is valid, leave the entire
element out instead.
It may contain a string with reason for exclusion. Several reasons
for exclusion should be seperated by semicolons ";".
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="note" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>
Note - Do not set this element to false if this element is not needed,
leave the entire element out instead.
It may contain a string with notes to the data element which do not
lead to exclusion of the entry. Several reasons for exclusion should
be seperated by semicolons ";".
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="adp" type="rdml:dpAmpCurveType" maxOccurs="unbounded" minOccurs="0">
<xs:annotation>
<xs:documentation>
Amplification data point - The single data points measured during amplification.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="mdp" type="rdml:dpMeltingCurveType" maxOccurs="unbounded" minOccurs="0">
<xs:annotation>
<xs:documentation>
Melting curve data point - The single data points measured during the melting analysis.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="endPt" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
End point - Result of an endpoint measurement.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="bgFluor" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
Background fluorescence - The y-intercept of the baseline
trend based on the estimated background fluorescence.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="bgFluorSlp" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
Background fluorescence slope - The slope of the baseline trend
based on the estimated background fluorescence. The element
should be absent to indicate a slope of 0.0; If this element is
present without the bgFluor element it should be ignored.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="quantFluor" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
Quantification fluorescence - The fluorescence value corresponding to the threshold line.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="documentationType">
<xs:annotation>
<xs:documentation>
These elements should be used if the same description applies to many samples,
targets or experiments.
</xs:documentation>
</xs:annotation>
<xs:all>
<xs:element name="text" type="xs:string" minOccurs="0"/>
</xs:all>
<xs:attribute name="id" type="rdml:idType" use="required"/>
</xs:complexType>
<xs:complexType name="dpAmpCurveType">
<xs:annotation>
<xs:documentation>
Due to the frequent occurrence of this element, names are kept short.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="cyc" type="xs:float">
<xs:annotation>
<xs:documentation>
Cycle - The PCR cycle at which data point was collected.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="tmp" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
Temperature - The temperature in degrees Celsius at the time of measurement.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="fluor" type="xs:float">
<xs:annotation>
<xs:documentation>
Fluorescence - The fluorescence intensity measured without any correction.
The fluorescence intensity must not be baseline corrected.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="dpMeltingCurveType">
<xs:annotation>
<xs:documentation>
Due to the frequent occurrence of this element, names are kept short.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="tmp" type="xs:float">
<xs:annotation>
<xs:documentation>
Temperature - The temperature in degrees Celsius of this data point.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="fluor" type="xs:float">
<xs:annotation>
<xs:documentation>
Fluorescence - The fluorescence intensity measured without any correction.
The fluorescence intensity must not be baseline corrected.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="dyeChemistryType">
<xs:annotation>
<xs:documentation>
The monitoring chemistry of this dye. The options are:
- non-saturating DNA binding dye (SYBR Green I)
- saturating DNA binding dye (Eva Green, LC Green Plus, BEBO, Syto9)
- hybridization probe (Molecular Beacon, Light-Up probes, BHQnova Probe)
- hydrolysis probe (TaqMan, NuPCR)
- labelled forward primer (LUX primer)
- labelled reverse primer (Scorpion probe, Sunrise probe, Amplifluor Universal detection system)
- DNA-zyme probe (QZyme probe)
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="non-saturating DNA binding dye"/>
<xs:enumeration value="saturating DNA binding dye"/>
<xs:enumeration value="hybridization probe"/>
<xs:enumeration value="hydrolysis probe"/>
<xs:enumeration value="labelled forward primer"/>
<xs:enumeration value="labelled reverse primer"/>
<xs:enumeration value="DNA-zyme probe"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="dyeType">
<xs:annotation>
<xs:documentation>
Information on a dye.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="description" type="xs:string" minOccurs="0"/>
<xs:element name="dyeChemistry" type="rdml:dyeChemistryType" minOccurs="0"/>
<xs:element name="dNTPs" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
The micromolar (uMol/l) concentration of each dNTP. If concentrations differ,
provide the concentration of the lowest dNTP. Usually each dNTP is in
200 micromolar (uMol/l) concentration. If no value is provided, 200 is
used as default value.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="dyeConc" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
The nanomolar (nMol/l) concentration of the dye. For example, SYBR-Green is
used at 98.0 nanomolar (nMol/l) concentration. If no value is provided,
98.0 is used as default value.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="id" type="rdml:idType" use="required"/>
</xs:complexType>
<xs:complexType name="experimenterType">
<xs:annotation>
<xs:documentation>
Contact details of the experimenter.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="firstName" type="xs:string"/>
<xs:element name="lastName" type="xs:string"/>
<xs:element name="email" type="xs:string" minOccurs="0"/>
<xs:element name="labName" type="xs:string" minOccurs="0"/>
<xs:element name="labAddress" type="xs:string" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="id" type="rdml:idType" use="required"/>
</xs:complexType>
<xs:complexType name="experimentType">
<xs:annotation>
<xs:documentation>
An experiment can contain several runs.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="description" type="xs:string" minOccurs="0"/>
<xs:element name="documentation" type="rdml:idReferencesType" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="run" type="rdml:runType" minOccurs="0" maxOccurs="unbounded">
<xs:unique name="runUniId">
<xs:annotation>
<xs:documentation>
react id within the run must be unique.
</xs:documentation>
</xs:annotation>
<xs:selector xpath="./rdml:react" />
<xs:field xpath="@id" />
</xs:unique>
<xs:unique name="runDocumentationId">
<xs:annotation>
<xs:documentation>
Documentation references within the run must be unique.
</xs:documentation>
</xs:annotation>
<xs:selector xpath="./rdml:documentation" />
<xs:field xpath="@id" />
</xs:unique>
<xs:unique name="runExperimenterId">
<xs:annotation>
<xs:documentation>
Experimenter references within the run must be unique.
</xs:documentation>
</xs:annotation>
<xs:selector xpath="./rdml:experimenter" />
<xs:field xpath="@id" />
</xs:unique>
</xs:element>
</xs:sequence>
<xs:attribute name="id" type="rdml:idType" use="required"/>
</xs:complexType>
<xs:complexType name="gradientType">
<xs:annotation>
<xs:documentation>
This step forms a temperature gradient across the PCR block.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="highTemperature" type="xs:float">
<xs:annotation>
<xs:documentation>
The high temperature of the gradient in degrees Celsius.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="lowTemperature" type="xs:float">
<xs:annotation>
<xs:documentation>
The low temperature of the gradient in degrees Celsius.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="duration" type="xs:positiveInteger">
<xs:annotation>
<xs:documentation>
The duration of this step in seconds.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="temperatureChange" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
The change of the temperature from one cycle to the next:
actual highTemperature = highTemperature + (temperatureChange * cycle counter)
actual lowTemperature = lowTemperature + (temperatureChange * cycle counter)
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="durationChange" type="xs:int" minOccurs="0">
<xs:annotation>
<xs:documentation>
The change of the duration from one cycle to the next:
actual duration = duration + (durationChange * cycle couter)
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="measure" type="rdml:measureType" minOccurs="0">
<xs:annotation>
<xs:documentation>
Make a measurement and store it as meltcurve or real-time data.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ramp" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
The temperature change from one step to the next in degrees
Celsius per second. No value means maximal change rate.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="idReferencesType">
<xs:attribute name="id" type="rdml:idType" use="required"/>
</xs:complexType>
<xs:simpleType name="idType">
<xs:annotation>
<xs:documentation>
A ID must be at least one character and unique. The id should be
a human readable short name as it was provided by the user.
</xs:documentation>
</xs:annotation>
<xs:restriction base ="xs:string">
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="labelFormatType">
<xs:annotation>
<xs:documentation>
Label used for pcrFormat.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="ABC"/>
<xs:enumeration value="123"/>
<xs:enumeration value="A1a1"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="lidOpenType">
<xs:annotation>
<xs:documentation>
This step waits for the user to open the lid and continues afterwards. It
allows to stop the program and to wait for the user to add for example
enzymes and continue the program afterwards. The temperature of the previous
step is maintained.
</xs:documentation>
</xs:annotation>
</xs:complexType>
<xs:complexType name="loopType">
<xs:annotation>
<xs:documentation>
This step allows to form a loop or to exclude some steps. It allows to
jump to a certain "goto" step for "repeat" times. If the "goto" step is
higher than the step of the loop, "repeat" must be "0".
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="goto" type="xs:positiveInteger">
<xs:annotation>
<xs:documentation>
The step to go to to form the loop.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="repeat" type="xs:positiveInteger">
<xs:annotation>
<xs:documentation>
Determines how often the loop is repeated. The first run through the loop is
counted as 0, the last loop is "repeat" - 1. The loop is run
through exactly "repeat" times.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="measureType">
<xs:restriction base="xs:string">
<xs:enumeration value="real time"/>
<xs:enumeration value="meltcurve"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="nucleotideType">
<xs:restriction base="xs:string">
<xs:enumeration value="DNA"/>
<xs:enumeration value="genomic DNA"/>
<xs:enumeration value="cDNA"/>
<xs:enumeration value="RNA"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="oligoType">
<xs:sequence>
<xs:element name="threePrimeTag" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>
Description of three prime modification (if present).
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="fivePrimeTag" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>
Description of five prime modification (if present).
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="sequence" type="rdml:sequenceType"/>
<xs:element name="oligoConc" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
The nanomolar (nMol/l) concentration of the oligo. Usually each oligo
is used in 10-1000 nanomolar (nMol/l) concentrations. If no value is
provided, 250 is used as default value.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="partitionsType">
<xs:annotation>
<xs:documentation>
This element is intended for digital PCR data.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="volume" type="xs:float">
<xs:annotation>
<xs:documentation>
The average volume of one partition in nanoliter (nl).
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="endPtTable" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>
End point data table - If present, this entry should contain the
filename of the comma seperated file conaining the raw data. The
file must be stored within the RDML zip file in the folder
partitions. The counts of the partitions must be stored in
coressponding data elements.
The file must use tabs (\t) as column separators and dots (.)
as decimal seperators. A line must contain the data of one
partion. For each fluoescence two colums are created. One with
the endpoint fluorescence value and a second with its score. The
score can be:
u - undefined or not yet scored
p - positive
n - negative
e - excluded (should be ignored)
The file must have a header line with the target ids matching
the fluorescence value.
The first lines could look like:
GAPDH\tGAPDH\tHBV\tHBV\n
3412.32\tp\t121.89\tn\n
239.23\tn\t3459.27\tp\n
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="data" type="rdml:partitionDataType" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
Reactions split up in partitions as in digital PCR must report data using this elements.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="partitionDataType">
<xs:annotation>
<xs:documentation>
Due to the frequent occurrence of this element, names are kept short.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="tar" type="rdml:idReferencesType">
<xs:annotation>
<xs:documentation>
TargetID - A reference to a target.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="excluded" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>
Excluded - If present, this entry should not be evaluated. Do not set
this element to false if this entry is valid, leave the entire
element out instead.
This element is equivalent to the excl element in dataType.
It may contain a string with reason for exclusion. Several reasons
for exclusion should be seperated by semicolons ";".
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="note" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>
Note - Do not set this element to false if this element is not needed,
leave the entire element out instead.
It may contain a string with notes to the data element which do not
lead to exclusion of the entry. Several reasons for exclusion should
be seperated by semicolons ";".
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="pos" type="xs:int">
<xs:annotation>
<xs:documentation>
Positive partitions - The number of positive partitions.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="neg" type="xs:int">
<xs:annotation>
<xs:documentation>
Negative partitions - The number of negative partitions.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="undef" type="xs:int" minOccurs="0">
<xs:annotation>
<xs:documentation>
Undefined partitions - The number of undefined or not yet scored partitions.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="excl" type="xs:int" minOccurs="0">
<xs:annotation>
<xs:documentation>
Excluded partitions - The number of excluded partitions.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="conc" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
Concentration - The concentration in copies per microliter reaction
mix.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="pauseType">
<xs:annotation>
<xs:documentation>
This step allows to pause at a certain temperature. It is typically the
last step in an amplification protocol.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="temperature" type="xs:float">
<xs:annotation>
<xs:documentation>
The temperature in degrees Celsius to maintain during the pause.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="pcrFormatType">
<xs:annotation>
<xs:documentation>
The format of the run - This allows the software to display the data
according to the qPCR instrument run format.
Rotor formats always have 1 column; rows correspond to the number
of places in the rotor.
Values for common formats are:
Format | rows | columns | rowLabel | columnLabel
--------------------------------------------------------------------------
single-well | 1 | 1 | 123 | 123
48-well plate | 6 | 8 | ABC | 123
96-well plate | 8 | 12 | ABC | 123
384-well plate | 16 | 24 | ABC | 123
1536-well plate | 32 | 48 | ABC | 123
3072-well array | 32 | 96 | A1a1 | A1a1
5184-well chip | 72 | 72 | ABC | 123
32-well rotor | 32 | 1 | 123 | 123
72-well rotor | 72 | 1 | 123 | 123
100-well rotor | 100 | 1 | 123 | 123
free format | -1 | 1 | 123 | 123
If rows are -1 then the software should not try to reconstruct a plate and
just display all react data in list (1 column) form.
If columns is 1 then the software should not display a column label.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="rows" type="xs:int"/>
<xs:element name="columns" type="xs:int"/>
<xs:element name="rowLabel" type="rdml:labelFormatType"/>
<xs:element name="columnLabel" type="rdml:labelFormatType"/>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="primingMethodType">
<xs:annotation>
<xs:documentation>
The primers used to reverse transcribe the RNA to cDNA.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="oligo-dt"/>
<xs:enumeration value="random"/>
<xs:enumeration value="target-specific"/>
<xs:enumeration value="oligo-dt and random"/>
<xs:enumeration value="other"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="quantityType">
<xs:annotation>
<xs:documentation>
A quantity is always defined by its value and its unit.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="value" type="xs:float"/>
<xs:element name="unit" type="rdml:quantityUnitType"/>
</xs:sequence>
<xs:attribute name="targetId" type="rdml:idType"/>
</xs:complexType>
<xs:simpleType name="quantityUnitType">
<xs:annotation>
<xs:documentation>
The unit the quantity
cop - copies per microliter
fold - fold change
dil - dilution (10 would mean 1:10 dilution)
nMol - nanomol per microliter
ng - nanogram per microliter
other - other unit (must be linear, no exponents or logarithms allowed)
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="cop"/>
<xs:enumeration value="fold"/>
<xs:enumeration value="dil"/>
<xs:enumeration value="ng"/>
<xs:enumeration value="nMol"/>
<xs:enumeration value="other"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="rdmlIdType">
<xs:annotation>
<xs:documentation>
This element can be used to assign a publisher and id to the RDML file.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="publisher" type="xs:string"/>
<xs:element name="serialNumber" type="xs:string"/>
<xs:element name="MD5Hash" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>
An MD5Hash calculated over the complete file after removing all
rdmlIDTypes and all whitespaces between elements.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="reactType">
<xs:annotation>
<xs:documentation>
A reaction is an independent chemical reaction corresponding for example
to a well in a 96 well plate, a capillary in a rotor, a through-hole on
an array, etc.
</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="sample" type="rdml:idReferencesType">
<xs:annotation>
<xs:documentation>
SampleID - A reference to a sample.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="vol" type="xs:float" minOccurs="0">
<xs:annotation>
<xs:documentation>
The volume of the reaction in microliter.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="data" type="rdml:dataType" maxOccurs="unbounded" minOccurs="0">
<xs:unique name="adpCycUnique">
<xs:annotation>
<xs:documentation>
The cycle (cyc) within the amplification curve datapoints) (adp) must be unique.
</xs:documentation>
</xs:annotation>
<xs:selector xpath="./rdml:adp" />
<xs:field xpath="rdml:cyc" />
</xs:unique>
<xs:unique name="mdpTmpUnique">
<xs:annotation>
<xs:documentation>
The temperature (tmp) within the melting curve datapoints (mdp) must be unique.
</xs:documentation>
</xs:annotation>
<xs:selector xpath="./rdml:mdp" />
<xs:field xpath="rdml:tmp" />
</xs:unique>
</xs:element>
<xs:element name="partitions" type="rdml:partitionsType" minOccurs="0">
<xs:annotation>
<xs:documentation>
Reactions split up in partitions as in digital PCR must report data using this elements.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="id" type="xs:positiveInteger" use="required">
<xs:annotation>
<xs:documentation>
The ID of this reaction
Schemas :
- rotor : assign IDs according to the position of the sample on the rotor (1 for the 1st sample, 2 for the 2nd, ...)
- plate (96/384/1536 well) : the IDs are assigned in a row-first/column-second manner. For each row, the samples are
numbered according to the increasing column number. At the end of a row, the numbering starts at the first column of
the next row. An example for this type of plate can be found below :
1 2 3 4 5 6 7 8 9 10 11 12
___________________________________________________
A | 1 2 3 4 5 6 7 8 9 10 11 12
B | 13 14 15 16 17 18 19 20 21 22 23 24
C | 25 26 27 28 28 30 31 32 33 34 35 36
D | ...
1 2 3 4 5 6 7 8 9 10 11 12
___________________________________________________
1 | 1 2 3 4 5 6 7 8 9 10 11 12
2 | 13 14 15 16 17 18 19 20 21 22 23 24
3 | 25 26 27 28 28 30 31 32 33 34 35 36
4 | ...
- multi-array plate (BioTrove) : the IDs are assigned in a row-first/column-second manner, ignoring the organisation
of sub-arrays. For each row, the samples are numbered according to the increasing column number. At the end of a row, the
the next row. An example for this type of plate can be found below :
1 | 2 | 3 | ...
--------------------------------------------------------------------
| | 1 2 3 4 | 5 6 7 8 | 9 10 11 12 | ...
____________________________________________________________________
| a | 1 2 3 4 | 5 6 7 8 | 9 10 11 12 | ...
A | b | 49 50 51 52 | 53 54 55 56 | 57 58 59 60 | ...
| c | 97 98 99 100 | 101 102 103 104 | 105 106 107 108 | ...
| d | 145 146 147 148 | 149 150 151 152 | 153 154 155 156 | ...
--------------------------------------------------------------------
| a | 193 194 195 196 | 197 198 199 200 | 201 202 203 204 | ...