-
Notifications
You must be signed in to change notification settings - Fork 2
/
labo-base.owl
1975 lines (1437 loc) · 98.3 KB
/
labo-base.owl
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"?>
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/labo.owl#"
xml:base="http://purl.obolibrary.org/obo/labo.owl"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:griis="http://griis.ca/"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:protege="http://protege.stanford.edu/plugins/owl/protege#"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"
xmlns:ncbitaxon="http://purl.obolibrary.org/obo/ncbitaxon#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/labo.owl">
<owl:versionIRI rdf:resource="http://purl.obolibrary.org/obo/labo/2021-06-08/labo.owl"/>
<dc:creator>Adrien Barton</dc:creator>
<dc:creator>Jean-François Ethier</dc:creator>
<dc:creator>Paul Fabry</dc:creator>
<terms:license>http://creativecommons.org/licenses/by/4.0/</terms:license>
<terms:title>clinical LABoratory test Ontology</terms:title>
<rdfs:comment xml:lang="en">An ontology of laboratory test specifications - base version, no import.</rdfs:comment>
<owl:versionInfo>2021-06-08</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://griis.ca/GRIIS_comment -->
<owl:AnnotationProperty rdf:about="http://griis.ca/GRIIS_comment"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000112 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000119 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000600 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000600"/>
<!-- http://purl.org/dc/elements/1.1/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
<!-- http://www.w3.org/1999/02/22-rdf-syntax-ns#type -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>
<!-- http://www.w3.org/2002/07/owl#qualifiedCardinality -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#qualifiedCardinality"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000050 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000050"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000051 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000051"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000136 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000136"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000219 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000219"/>
<!-- http://purl.obolibrary.org/obo/LABO_0000115 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/LABO_0000115">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/LABO_0000116"/>
<obo:IAO_0000115>The inverse relationship of directs.</obo:IAO_0000115>
<rdfs:label xml:lang="en">directed by</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/LABO_0000116 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/LABO_0000116">
<obo:IAO_0000115>The relationship between a directive information entity and the process it directs.</obo:IAO_0000115>
<rdfs:label xml:lang="en">directs</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/LABO_0000118 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/LABO_0000118">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<rdfs:label xml:lang="en">has minimal value</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/LABO_0000119 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/LABO_0000119">
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<rdfs:label xml:lang="en">has maximal value</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/LABO_0000148 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/LABO_0000148">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OBI_0000312"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OBI_0000293"/>
</owl:propertyChainAxiom>
<rdfs:label xml:lang="fr">x</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/OBI_0000293 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000293"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000299 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000299"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000312 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000312"/>
<!-- http://purl.obolibrary.org/obo/OBI_0001938 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0001938"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/OBI_0001937 -->
<owl:DatatypeProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0001937"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000001 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000001"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000031 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000031"/>
<!-- http://purl.obolibrary.org/obo/HADO_0000004 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/HADO_0000004"/>
<!-- http://purl.obolibrary.org/obo/HADO_0000006 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/HADO_0000006"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000003"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000005 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000005"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000007 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000007"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000027 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000027"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000030 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000030"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000033 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000033"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000104 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000104"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000109 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000109"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000300 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000300"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000310 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000310"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000578 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000578"/>
<!-- http://purl.obolibrary.org/obo/LABO_0000004 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000004">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000578"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="http://purl.obolibrary.org/obo/OBI_0001616"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000112 xml:lang="en">'accession-id #150' in 'accession-id #150 whole blood 3 ml'</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A centrally registered identifier that denotes a particular specimen on which a laboratory test is intended to be executed or has already been executed.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="fr">TODO</obo:IAO_0000115>
<rdfs:label xml:lang="fr">identification d'échantillon d'examen de laboratoire</rdfs:label>
<rdfs:label xml:lang="en">laboratory test specimen ID</rdfs:label>
<owl:deprecated xml:lang="en"></owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000005 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000005">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000112 xml:lang="en">'whole blood' in 'accession-id #150 whole blood 3 ml'</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">An information content entity about the type of the specimen to be used for some laboratory tests.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="fr">Une donnée qui est supposée être une proposition vraie à propos du type de l'échantillon pour lequel des tests ont été prescrits.</obo:IAO_0000115>
<rdfs:label xml:lang="en">laboratory test specimen type specification</rdfs:label>
<rdfs:label xml:lang="fr">spécification de type d'échantillon</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000006 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000006">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000109"/>
<obo:IAO_0000115 xml:lang="en">A measurement datum specifying how much of a person's blood is made of red blood cells.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="fr">Une mesure qui spécifie quelle portion du sang d'une personne est composée de cellules rouges.</obo:IAO_0000115>
<obo:IAO_0000119 xml:lang="en">https://www.urmc.rochester.edu/encyclopedia/content.aspx?contenttypeid=167&contentid=hemoglobin</obo:IAO_0000119>
<rdfs:comment xml:lang="en">This measurement datum is a volume/volume measure which compares the volume of hemoglobin in one's blood to the total volume of blood in one's body.</rdfs:comment>
<rdfs:label xml:lang="en">hematocrit result</rdfs:label>
<rdfs:label xml:lang="fr">résultat d'hématocrite</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000007 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000007">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000109"/>
<obo:IAO_0000115 xml:lang="en">A measurement datum which specifies the amount of hemoglobin in a person's blood.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="fr">Une mesure qui spécifie la quantité d'hémoglobine dans le sang d'une personne.</obo:IAO_0000115>
<obo:IAO_0000119 xml:lang="en">https://www.mayoclinic.org/tests-procedures/hemoglobin-test/about/pac-20385075</obo:IAO_0000119>
<rdfs:comment xml:lang="en">This measurement datum is a mass/volume measure which compares the mass of hemoglobin in one's blood to the total volume of blood in one's body.</rdfs:comment>
<rdfs:label xml:lang="en">hemoglobin test result</rdfs:label>
<rdfs:label xml:lang="fr">résultat de test d'hémoglobine</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000008 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000008">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000115 xml:lang="en">A data item intended to be a truthful statement about the sampling method used to extract a sample from an entity.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="fr">Une donnée supposée être une proposition vraie à propos de la méthode d'échantillonnage utilisée pour extraire un échantillon particulier d'une entité.</obo:IAO_0000115>
<rdfs:label xml:lang="en">sampling method specification</rdfs:label>
<rdfs:label xml:lang="fr">spécification de méthode échantillonnage</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000009 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000009">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000109"/>
<obo:IAO_0000115 xml:lang="en">A measurement datum specifying the average size of a person's red blood cells.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="fr">Une mesure qui spécifie la taille moyenne des cellules rouges d'une personne.</obo:IAO_0000115>
<obo:IAO_0000119 xml:lang="en">https://www.urmc.rochester.edu/encyclopedia/content.aspx?contenttypeid=167&contentid=complete_blood_count</obo:IAO_0000119>
<rdfs:label xml:lang="en">mean corpuscular volume result</rdfs:label>
<rdfs:label xml:lang="fr">résultat de volume corpusculaire moyen</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000010 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000010">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000109"/>
<obo:IAO_0000115 xml:lang="en">A measurement datum specifying the average size of the platetels in a person's blood.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="fr">Une mesure qui spécifie la taille moyenne des plaquette du sang d'une personne.</obo:IAO_0000115>
<obo:IAO_0000119 xml:lang="en">https://en.wikipedia.org/wiki/Mean_platelet_volume</obo:IAO_0000119>
<rdfs:label xml:lang="en">mean platelet volume result</rdfs:label>
<rdfs:label xml:lang="fr">résultat de volume moyen des plaquettes</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000011 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000011">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000109"/>
<obo:IAO_0000115 xml:lang="en">A measurement datum which specifies the number of platelet cells in a person's blood.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="fr">Une mesure qui spécifie le nombre de plaquettes dans le sang d'une personne.</obo:IAO_0000115>
<obo:IAO_0000119 xml:lang="en">https://www.urmc.rochester.edu/encyclopedia/content.aspx?contenttypeid=167&contentid=platelet_count</obo:IAO_0000119>
<rdfs:label xml:lang="en">platelets count result</rdfs:label>
<rdfs:label xml:lang="fr">résultat de dénombrement de plaquettes</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000012 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000012">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000109"/>
<obo:IAO_0000115 xml:lang="en">A measurement datum which specifies the number of red blood cell in a person's blood.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="fr">Une mesure qui spécifie le nombre de cellules rouges dans le sang d'une personne.</obo:IAO_0000115>
<obo:IAO_0000119 xml:lang="en">https://www.urmc.rochester.edu/encyclopedia/content.aspx?contenttypeid=167&contentid=red_blood_cell_Count</obo:IAO_0000119>
<rdfs:label xml:lang="en">red blood cell count result</rdfs:label>
<rdfs:label xml:lang="fr">résultat de dénombrement de cellules rouges</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000013 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000013">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000109"/>
<obo:IAO_0000115 xml:lang="en">A measurement datum which specifies the range of variation of the size of red blood cell in a person's blood.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="fr">Une mesure qui spécifie l'étendue de la variation de la taille des cellules rouges dans le sang d'une personne.</obo:IAO_0000115>
<obo:IAO_0000119 xml:lang="en">https://en.wikipedia.org/wiki/Red_blood_cell_distribution_width</obo:IAO_0000119>
<rdfs:label xml:lang="en">red cell distribution width result</rdfs:label>
<rdfs:label xml:lang="fr">résultat de variation de taille des cellules rouges</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000017 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000017">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/LABO_0000021"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/LABO_0000107"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/LABO_0000115"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/LABO_0000105"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/LABO_0000018"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">An information content entity that encompasses all relevant information pertaining to a given laboratory test prescription.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="fr">TODO</obo:IAO_0000115>
<rdfs:label xml:lang="fr">information de compte-rendu de test de laboratoire</rdfs:label>
<rdfs:label xml:lang="en">prescribed laboratory test complete reporting information</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000018 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000018">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PDRO_0000001"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/LABO_0000124"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A health care prescription specifying the realization of one or several laboratory test(s).</obo:IAO_0000115>
<rdfs:label xml:lang="en">laboratory test prescription</rdfs:label>
<rdfs:label xml:lang="fr">prescription de test de laboratoire</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000019 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000019">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000115 xml:lang="en">An information content entity which reports on some aspect of a particular laboratory test.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="fr">Une entité de contenu informationnel qui documente un ou plusieurs aspects d'un certain test de laboratoire.</obo:IAO_0000115>
<rdfs:label xml:lang="fr">information de résultat pour un test de laboratoire (WIP)</rdfs:label>
<rdfs:label xml:lang="en">laboratory test reporting information</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000020 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000020">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/LABO_0000100"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/LABO_0000109"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<obo:IAO_0000112 xml:lang="en">'serum sodium 140 mmol/L, 2018/08/14'</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="fr">(à revoir) Une partie d'un document d'analyse de laboratoire qui spécifie le résultat d'un test spécifique qui a été soit prescrit par une prescription de test de laboratoire, soit réalisé comme conséquence d'une prescription de test de laboratoire.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="en">A laboratory test reporting item that includes the result of the laboratory test.</obo:IAO_0000115>
<rdfs:label xml:lang="en">laboratory test result item</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000021 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000021">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/LABO_0000019"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/LABO_0000105"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/LABO_0000104"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000112>Example 1:
'CBC:
- WBC 12.1 10^9/L
- RBC 5.2 10^12/L
[...]'
in a report on tests directed by a complete blood count prescription.
Example 2:
'serum sodium in progress'</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A laboratory test reporting information which reports on the test(s) directed by one laboratory test directive item.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="fr">Une partie d'un document d'analyse de laboratoire qui spécifie des résultats des tests.</obo:IAO_0000115>
<obo:IAO_0000600 xml:lang="en">A laboratory test reporting group does not necessarily provide the reporting information concerning a laboratory test directive item in a prescription - the directive item can also be specified e.g. in a research protocol.
A laboratory test reporting group can, but doesn't have to, include a laboratory test reporting item, as in 'CBC in progress' (which is not a laboratory test reporting item, because it reports on several tests, not just one).</obo:IAO_0000600>
<rdfs:label xml:lang="fr">groupement de résultats pour un test de laboratoire</rdfs:label>
<rdfs:label xml:lang="en">laboratory test reporting group</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000023 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000023">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0001933"/>
<obo:IAO_0000115 xml:lang="en">A value specification that is the the lower bound or the upper bound of a range.</obo:IAO_0000115>
<rdfs:label xml:lang="en">bound</rdfs:label>
<rdfs:label xml:lang="fr">valeur limite</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000100 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000100">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/LABO_0000019"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/LABO_0000021"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="http://purl.obolibrary.org/obo/LABO_0000102"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="http://purl.obolibrary.org/obo/LABO_0000110"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="http://purl.obolibrary.org/obo/LABO_0000107"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000112 xml:lang="en">'serum sodium in progress, 2018/07/25'
'serum sodium 140 mmol/L, 2018/08/14'
'blood group O, 2018/07/12 12:34 pm'</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A laboratory test reporting information that is part of a laboratory test reporting group, that is about a laboratory test, and that mentions which characteristic of a specimen this test was supposed to assess, and a time at which this information was valid.</obo:IAO_0000115>
<rdfs:label xml:lang="en">laboratory test reporting item</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000101 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000101">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/LABO_0000019"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/LABO_0000021"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000112 xml:lang="en">'in progress' in 'FSC, in progress, 2018/07/25'
'resulted' in 'blood group O, resulted, 2018/07/12 12:34 pm'
'validated' in 'serum sodium 140 mmol/L, validated, 2018/07/28'</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A laboratory test reporting information that specifies the status of a laboratory test or a group of laboratory tests.</obo:IAO_0000115>
<rdfs:label xml:lang="en">laboratory test status specification</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000102 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000102">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000112 xml:lang="en">'serum sodium concentration' in 'serum sodium concentration 140 mmol/L, validated, 2018/07/28'</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">An information content entity that specifies a particular characteristic of a specimen or a class of characteristics of specimens.</obo:IAO_0000115>
<rdfs:label xml:lang="en">specimen characteristic specification</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000103 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000103">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000310"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/LABO_0000021"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/HADO_0000004"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/HADO_0000006"/>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A document reporting on a laboratory test.</obo:IAO_0000115>
<rdfs:label xml:lang="en">laboratory test report document</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000104 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000104">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000108"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/LABO_0000107"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/LABO_0000115"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="http://purl.obolibrary.org/obo/LABO_0000105"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000112 xml:lang="en">All tests (white blood cells, red blood cells, etc.) realized when executing a prescription of CBC for John Smith on 2018/07/28.</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A health care process assay that is the mereological sum of laboratory test(s) that are directed by a single prescription directive item.</obo:IAO_0000115>
<rdfs:label xml:lang="en">directed laboratory test group</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000105 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000105">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000007"/>
<obo:IAO_0000112 xml:lang="en">'complete blood count'
'serum sodium'</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">An action specification that directs one or several laboratory tests and such that none of its proper parts directs some but not all of those laboratory tests.</obo:IAO_0000115>
<obo:IAO_0000600 xml:lang="en">A laboratory test directive item can direct several tests - consider e.g. 'CBC' (complete blood count), which directs more than 20 tests (red blood cells, white blood cells, hemoglobin, etc.)
Many laboratory test directive items are parts of a prescription, but not all - consider e.g. an instruction directing a laboratory test as part of a research study.</obo:IAO_0000600>
<rdfs:label xml:lang="en">laboratory test directive item</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000106 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000106">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/LABO_0000105"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000112 xml:lang="en">'2018/08/22' in 'CBC on 2018/08/22'</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">An information content entity that specifies at what time a laboratory test should start.</obo:IAO_0000115>
<obo:IAO_0000600 xml:lang="en">Not all laboratory test prescription items specify a start time. It is sometimes implicit when it is to be done.</obo:IAO_0000600>
<rdfs:label xml:lang="en">laboratory test start time specification</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000107 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000107">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000108"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/LABO_0000115"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000007"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000104"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/IAO_0000005"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000001"/>
<owl:Restriction>
<owl:onProperty>
<rdf:Description>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000136"/>
</rdf:Description>
</owl:onProperty>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/LABO_0000102"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/OBI_0000293"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0100051"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A measurement assay that has as input a specimen derived from an organism and that aims as having as output a data item that is about an entity related to the specimen.</obo:IAO_0000115>
<obo:IAO_0000600 xml:lang="en">Not all laboratory tests are directed by a prescription, e.g. a laboratory test executed as part of a research project, or an additional test realized by a laboratory technician in case a first prescribed laboratory test led to an abnormal result.
A laboratory test is directed by some instruction that is part of a plan specification with the objective to assess some entity related to a specimen (e.g. one of its quality) specified by a specimen characteristic specification. However, a laboratory test can be interrupted without leading to a completed laboratory test.</obo:IAO_0000600>
<rdfs:label xml:lang="en">laboratory test</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000108 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000108">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OGMS_0000056"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/OBI_0000299"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000018"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<obo:IAO_0000115 xml:lang="en">A completed laboratory test that has as specified output a laboratory finding.</obo:IAO_0000115>
<obo:IAO_0000600 xml:lang="en">A completed laboratory test that involved a problem of calibration can lead to some result, but this result does not support an inference about a quality of the patient, and therefore is not a laboratory finding.</obo:IAO_0000600>
<rdfs:label xml:lang="en">validated laboratory test</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000109 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000109">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000014"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/OBI_0000312"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/LABO_0000107"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A representation of an entity related to a specimen that is the output of a laboratory test.</obo:IAO_0000115>
<obo:IAO_0000600 xml:lang="en">A laboratory result is not necessarily a laboratory finding, as it cannot always support an inference to an assertion about some quality of the patient. For example, the serum sodium result of a miscalibrated machine is not a laboratory finding. Also, a laboratory result by automatic detection "70.10^3 /microliter" for platelets might be falsely low due to platelets clumping.
However, a laboratory finding is always a laboratory result.</obo:IAO_0000600>
<rdfs:label xml:lang="en">laboratory result</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000110 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000110">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/LABO_0000019"/>
<obo:IAO_0000112 xml:lang="en">'2018/07/25, 12:34 pm' in a laboratory test reporting information 'serum sodium in progress, 2018/07/25, 12:34 pm'</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A laboratory test reporting information that specifies a time at which a laboratory test reporting item was valid.</obo:IAO_0000115>
<obo:IAO_0000600 xml:lang="en">This time specification does not refer to the time when a given lab document was generated, but rather the moment at which information from the laboratory test process was created as it unfolded.</obo:IAO_0000600>
<rdfs:label xml:lang="en">laboratory test reporting item time specification</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000111 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000111">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PDRO_0010010"/>
<obo:IAO_0000112 xml:lang="en">'to follow rhumatoid arthritis' on a prescription for a test of sedimentation rate
'to exclude pulmonary embolism' on a guideline document about d-dimer</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">A health care objective specification that specifies why a laboratory test should be performed.</obo:IAO_0000115>
<rdfs:label xml:lang="en">laboratory test objective specification</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000112 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000112">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/LABO_0000111"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/LABO_0000018"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<obo:IAO_0000115 xml:lang="en">A laboratory test objective specification that is a part of a laboratory test prescription.</obo:IAO_0000115>
<rdfs:label xml:lang="en">prescription of laboratory test objective specification</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000113 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000113">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/LABO_0000005"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="http://purl.obolibrary.org/obo/OBI_0001616"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000112 xml:lang="en">'accession-id #150 whole blood 3 ml'</obo:IAO_0000112>
<obo:IAO_0000115 xml:lang="en">An information content entity that denotes a particular specimen on which a laboratory test is intended to be executed or has already been executed.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="fr">Une entité de contenu informationnel qui est à propos d'une entité biologique particulière ou d'une classe d'entité biologique sur laquelle quelqu'un a l'intention de prendre une mesure ou sur laquelle une mesure a déjà été prise.</obo:IAO_0000115>
<rdfs:label xml:lang="en">laboratory test specimen specification</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000114 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000114">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000031"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/OBI_0001938"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/LABO_0000154"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A generically dependent continuant that specifies a lower bound and an upper bound.
It can also specify whether each bound is included or not in the interval.</obo:IAO_0000115>
<rdfs:label xml:lang="en">range</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000117 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000117">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/LABO_0000114"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="http://purl.obolibrary.org/obo/LABO_0000122"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
<owl:onClass rdf:resource="http://purl.obolibrary.org/obo/LABO_0000123"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A range of values asserted by the testing lab or the kit manufacturer to be normal based on a statistical treatment of values from a reference population.</obo:IAO_0000115>
<rdfs:comment xml:lang="en">Definition adapted from OGMS' definition for "normal value". "Normal value" and "normal range" should be coordinated.</rdfs:comment>
<rdfs:label xml:lang="en">laboratory test result normal range</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000120 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000120">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/LABO_0000023"/>
<obo:IAO_0000115 xml:lang="en">A bound that is the lower bound of a range.</obo:IAO_0000115>
<rdfs:label xml:lang="en">lower bound</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000121 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000121">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/LABO_0000023"/>
<obo:IAO_0000115 xml:lang="en">A bound that is the upper bound of a range.</obo:IAO_0000115>
<rdfs:label xml:lang="en">upper bound</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/LABO_0000122 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/LABO_0000122">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/LABO_0000120"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>