forked from obi-ontology/obi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
medical-history.owl
1020 lines (680 loc) · 67.3 KB
/
medical-history.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/obi/dev/modules/medical-history.owl#"
xml:base="http://purl.obolibrary.org/obo/obi/dev/modules/medical-history.owl"
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:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/obi/dev/modules/medical-history.owl"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- 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_0000117 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000118 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000119 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000234 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000234"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000030 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000030"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000109 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000109"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000047 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000047"/>
<!-- http://purl.obolibrary.org/obo/OBI_0001167 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001167"/>
<!-- http://purl.obolibrary.org/obo/OBI_0002368 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002368">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000015"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which there is a diagnosis of cancer.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">clinical history of cancer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002369 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002369">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000015"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which there was no diagnosis of cancer.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">clinical history of no cancer</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">clinical history devoid of cancer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002370 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002370">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000015"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which it is not known whether there was a diagnosis of cancer.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">unknown clinical history of cancer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002371 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002371">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000073"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A diagnosis that is an assertion that a patient who is the subject of a diagnostic process has cancer.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cancer diagnosis</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">diagnosis of cancer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002372 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002372">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000015"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which there is a diagnosis of cancer in a blood relative.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">family history of cancer</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">family clinical history of cancer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002373 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002373">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002372"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which there is a diagnosis of cancer in the female sibling of a parent.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aunt clinical history of cancer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002374 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002374">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002372"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which there is a diagnosis of cancer in a male sibling.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">brother clinical history of cancer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002375 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002375">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002372"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which there is a diagnosis of cancer in a person's female child.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">daughter clinical history of cancer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002376 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002376">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002372"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which there is a diagnosis of cancer in a male parent.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">father clinical history of cancer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002377 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002377">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002372"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which there is a diagnosis of cancer in a female parent.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mother clinical history of cancer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002378 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002378">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002372"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which there is a diagnosis of cancer in a female sibling.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sister clinical history of cancer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002379 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002379">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002372"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which there is a diagnosis of cancer in a person's male child.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">son clinical history of cancer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002380 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002380">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002372"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which there is a diagnosis of cancer in a male sibling of a parent.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">uncle clinical history of cancer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002381 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002381">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002372"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which there is a diagnosis of cancer in a female parent of a parent.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">grandmother clinical history of cancer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002382 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002382">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002372"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which there is a diagnosis of cancer in a male parent of a parent.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">grandfather clinical history of cancer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002383 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002383">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002372"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which there is a diagnosis of cancer in a male child of a sibling.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nephew clinical history of cancer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002384 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002384">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002372"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which there is a diagnosis of cancer in a female child of a sibling.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">niece clinical history of cancer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002385 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002385">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000073"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A diagnosis that is an assertion that a patient who is the subject of a diagnostic process has an infectious disease.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">diagnosis of infectious disease</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002386 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002386">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002385"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A diagnosis of infectious disease caused by the hepatitis B virus.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">diagnosis of hepatitis B</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002387 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002387">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002385"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A diagnosis of infectious disease caused by the hepatitis C virus.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">diagnosis of hepatitis C</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002388 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002388">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002385"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A diagnosis of infectious disease caused by the human immunodeficiency virus (1 or 2).</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">diagnosis of HIV</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002389 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002389">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000015"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which there is repeated reactive screening assays for human immunodeficiency virus (1 or 2) antibodies regardless of the results of supplemental assays.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">clinical history of repeated HIV assays</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002390 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002390">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000015"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which there has been second hand exposure to tobacco smoking. </obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">exposure to second hand smoke</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002391 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002391">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002390"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exposure to second hand smoke that occurred in the (patient's) household when the person was a child.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">exposure to second hand smoke in household during childhood</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002392 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002392">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002390"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exposure to second hand smoke in person's current household.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">exposure to second hand smoke in current household</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002393 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002393">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000015"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which a female has had a pregnancy.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pregnancy history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002394 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002394">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000109"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A measurement datum of the total number of pregnancies a woman has had.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">number of pregnancies</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002395 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002395">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000109"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A measurement datum of the total number of live births a female has had.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">number of live births</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002396 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002396">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0001167"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An age measurement datum performed on a female when her first biological child was born.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">age when gave birth to first child</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002397 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002397">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000015"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which a woman has had gynecologic surgery in the past.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gynecologic surgery history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002398 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002398">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002397"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A gynecologic surgery history in which a woman has had a hysterectomy.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hysterectomy history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002399 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002399">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002397"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A gynecologic surgery history in which a woman has had a unilateral oophorectomy.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">unilateral oophorectomy history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002400 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002400">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002397"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A gynecologic surgery history in which a woman has not had either a hysterectomy or an oophorectomy.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">neither hysterectomy nor oophorectomy history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002401 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002401">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An information content entity that indicates whether a woman has ever used oral contraceptives in order to block ovulation and prevent the occurrence of pregnancy.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hormonal birth control use history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002402 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002402">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002401"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A hormonal birth control use history that indicates an individual has previously been a hormonal birth control user but is not a current user.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hormonal birth control former use history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002403 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002403">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002401"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A hormonal birth control use history that indicates an individual is currently a hormonal birth control user.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hormonal birth control current use history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002404 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002404">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002401"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A hormonal birth control use history that indicates an individual has not ever been a hormonal birth control user.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">no hormonal birth control use history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002405 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002405">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OGMS_0000015"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A clinical history in which an individual has had hormonal replacement therapy in the past.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hormonal replacement therapy history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002406 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002406">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000047"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A processed material used for delivery of hormones in hormone replacement therapy.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">form of hormone replacement therapy</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">delivery form for hormonal replacement therapy</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002407 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002407">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002406"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A delivery form for hormonal replacement therapy that is a pill for oral administration.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pill delivery form for hormonal replacement therapy</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002408 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002408">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002406"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A delivery form for hormonal replacement therapy that is a patch for transdermal administration.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">patch delivery form for hormonal replacement therapy</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002409 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002409">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002406"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A delivery form for hormonal replacement therapy that is a cream for transdermal administration.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cream delivery form for hormonal replacement therapy</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002410 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002410">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An information content entity that indicates the state of a female's cessation of menstruation.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">menopausal status</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002411 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002411">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002410"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A menopausal status that is neither pre- nor post-menopausal.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">indeterminate menopausal status</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002412 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002412">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002410"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A menopausal status indicating that less than 6 months has passed since the last menstrual period and there has not been prior bilateral oophorectomy and not on estrogen replacement.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">premenopausal status</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002413 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002413">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002410"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A menopausal status indicating that it has been 6-12 months since last menstrual period.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">perimenopausal status</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002414 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002414">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002410"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A menopausal status indicating that it has been more than 12 months since the last menstrual period with no prior hysterectomy or that there has been a prior bilateral oophorectomy.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">postmenopausal status</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002415 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002415">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An information content entity that indicates the exposure of an individual to carcinogens in the workplace or environment.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">exposure to environmental and workplace carcinogens history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002416 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002416">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002415"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exposure to environmental and workplace carcinogens history where the carcinogen is arsenic.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">exposure to arsenic history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002417 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002417">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002415"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exposure to environmental and workplace carcinogens history where the carcinogen is asbestos.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">exposure to asbestos history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002418 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002418">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002415"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exposure to environmental and workplace carcinogens history where the carcinogen is diesel exhaust.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">exposure to diesel exhaust history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002419 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002419">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002415"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exposure to environmental and workplace carcinogens history where the carcinogen is chromium.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">exposure to chromium history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002420 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002420">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0002415"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exposure to environmental and workplace carcinogens history where the carcinogen is silica.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">exposure to silica history</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002421 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002421">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An information content entity that indicates whether or not an entity has met a specific requirement in order to take part in a given process.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eligibility criterion met</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">indicator of whether an inclusion criterion was met</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002422 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002422">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An information content entity that indicates whether or not an entity has met all specific requirements in order to take part in a given process.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">all eligibility criteria met</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">indicator of whether all inclusion criteria were met</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002423 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002423">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0500027"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An inclusion criterion that uses the age of majority for a state or institution, where one is generally considered to be an adult, which if met, makes an individual suitable for a given task or participation in a given process.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">age of majority inclusion criterion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002424 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002424">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0500028"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exclusion criterion that defines whether chemotherapy was received or is being received for a previous or current cancer, which when met, makes an individual unsuitable for a given task or participation in a given process</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chemotherapy treatment exclusion criterion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002425 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002425">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0500028"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exclusion criterion that defines whether radiation was received or is being received for a previous or current cancer, which when met, makes an individual unsuitable for a given task or participation in a given process</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">radiation treatment exclusion criteria</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002426 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002426">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0500028"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exclusion criterion defined by the pathologist is defined as whether the individual received chemotherapy within the last two years. </obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exclusion criterion that defines whether chemotherapy was received within a certain timeframe, which when met, makes an individual unsuitable for a given task or participation in a given process.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chemotherapy treatment within the recent past exclusion criterion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002427 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002427">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0500028"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exclusion criterion defined by the pathologist is defined as whether the individual received radiation therapy within the last two years. </obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exclusion criterion that defines whether radiation was received within a certain timeframe, which when met, makes an individual unsuitable for a given task or participation in a given process.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">radiation treatment within the recent past exclusion criterion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002428 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002428">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0500027"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An important inclusion criterion is for for the individual to have a BMI between 18.5 and 35.0</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An inclusion criterion that defines and states a Body Mass Index range, which if met, makes an individual suitable for a given task or participation in a given process.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BMI range inclusion criterion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002429 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002429">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0500028"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exclusion criterion that is defined by whether the specimen donor received a whole blood transfusion within 48 hours prior to death.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exclusion criterion that is defined by whether the specimen donor received a whole blood transfusion within a specified time frame prior to death, which if met, makes a specimen donor unsuitable for a given task or participation in a given process.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">blood transfusion exclusion criterion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002430 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002430">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0500028"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exclusion criterion defined as whether an individual has ever been diagnosed with metastatic cancer (cancer that spread beyond the initial site such as to other organs like brain bone or liver), which if met, makes the individual unsuitable for a given task or participation in a given process.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">history of metastatic cancer exclusion criterion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002431 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002431">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0500028"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Donor eligibility based on history of intravenous drug abuse in the last 5 years.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exclusion criterion defined as when an individual has a history of intravenous drug abuse for a specific timeframe, which if met, makes the individual unsuitable for a given task or participation in a given process.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">intravenous drug use exclusion criterion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002432 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002432">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0500028"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Donor eligibility based on whether the donor has a history of sex with someone who has been diagnosed or at risk for HIV/AIDS and/or HCV and/or HBV in the last 5 years.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exclusion criterion defined as whether an individual has a history of sex with someone who has been diagnosed or at risk for a blood borne infections disease in a specified time frame, which if met, makes the individual unsuitable for a given task or participation in a given process.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">history of sex with someone with a history of blood borne infection exclusion criterion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002433 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002433">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0500028"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Donor eligibility based on whether the donor has a history of sex with someone who has used intravenous drugs in the last 5 years.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exclusion criterion defined as whether an individual has a history of sex with someone who has used intravenous drugs in a specified time frame, which if met, makes the individual unsuitable for a given task or participation in a given process.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">history of sex with someone with a history of intravenous drugs exclusion criterion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002434 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002434">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0500028"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exclusion criterion defined as whether an individual has a history of repeatedly reactive screening assays for HIV-1 or HIV-2 antibody regardless of the results of supplemental assays, which if met, makes the individual unsuitable for a given task or participation in a given process. </obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">HIV exclusion criterion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0002435 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0002435">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0500028"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Donor eligibility based on whether the donor has been exposed to HIV/AIDS. </obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An exclusion criterion defined as whether an individual has been exposed to a blood borne infections disease through needle sticks and/or contact with non-intact skin and/or contact with open wounds and/or contact with mucous membranes, which if met, makes the individual unsuitable for a given task or participation in a given process.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chris Stoeckert, Helena Ellis</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB, OBIB</obo:IAO_0000119>
<obo:IAO_0000234 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCI BBRB</obo:IAO_0000234>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">exposure to blood borne infectious disease exclusion criterion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0500027 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0500027"/>
<!-- http://purl.obolibrary.org/obo/OBI_0500028 -->