-
Notifications
You must be signed in to change notification settings - Fork 0
/
hhear.owl
8663 lines (8661 loc) · 548 KB
/
hhear.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" encoding="UTF-8"?>
<rdf:RDF
xmlns:ns1="http://www.w3.org/2004/02/skos/core#"
xmlns:ns2="http://hadatac.org/ont/hasco/"
xmlns:ns3="http://purl.org/dc/terms/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/NCIT_C41259">
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<rdfs:label>American Indian Or AlaskanNative</rdfs:label>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_001015"/>
<ns1:definition>A person having origins in any of the original peoples of North and South America (including Central America) and who maintains tribal affiliation or community attachment.</ns1:definition>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<ns1:notation>5</ns1:notation>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00522"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="f266b52c89aba4951bddce0ad24f9c76db4">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:nodeID="ub2bL28C170"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.cogpo.org/ontologies/working/CogPOver2011.owl#COGPO_00109">
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00198"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Behavioral Experimental Paradigm Condition</rdfs:label>
</rdf:Description>
<rdf:Description rdf:nodeID="N71fcc76eab9e4f578f75d2903d4bb3a8">
<owl:intersectionOf rdf:nodeID="N83081db605fc4c2882ebe2a12cc9a0c6"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ENVO_01000933">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00080"/>
<rdfs:label>Residential Building</rdfs:label>
<ns1:notation>154</ns1:notation>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityVariable"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
</rdf:Description>
<rdf:Description rdf:about="http://rdf.ncbi.nlm.nih.gov/pubchem/compound/53435014">
<ns1:notation>MCPP</ns1:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_26092"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>mono (3-carboxypropyl) phthalate (multiple)</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00303">
<rdfs:label>Smoker</rdfs:label>
<ns1:definition>The quality of smoking cigarettes.</ns1:definition>
<ns1:notation>105</ns1:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ExO_0000113"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00479">
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00099"/>
<rdfs:label>Ultra Performance Liquid Chromatography - Mass Spectrometer</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00309"/>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jim-McCusker"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000328">
<rdfs:label>kilobasepair</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
<ns1:notation>kbp</ns1:notation>
</rdf:Description>
<rdf:Description rdf:nodeID="ub2bL47C89">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:onProperty rdf:resource="http://semanticscience.org/resource/hasAttribute"/>
<owl:someValuesFrom rdf:nodeID="ub2bL49C110"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00116">
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/hasco/StudyIndicator"/>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:definition>Physical Activity and Fitness Indicator Class</ns1:definition>
<rdfs:label>Physical Activity and Fitness</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000084">
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
<rdfs:label>gram per cubic centimeter</rdfs:label>
<ns1:notation>g/cm3</ns1:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_20469">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:notation>PHEN4</ns1:notation>
<rdfs:label>4-hydroxyphenanthrene</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33666"/>
</rdf:Description>
<rdf:Description rdf:about="http://rdf.ncbi.nlm.nih.gov/pubchem/compound/4129827">
<rdfs:label>3-Hydroxypropyl-1-methyl mercapturic acid + 3-Hydroxypropyl-2-methyl mercapturic acid + 3-Hydroxypropyl-3-methyl mercapturic acid</rdfs:label>
<ns1:notation>HMPMA</ns1:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00265">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QuantityVariable"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00230"/>
<ns1:definition>A boiler is an object that heats up water. This attribute quantifies the number of boilers in the home.</ns1:definition>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<rdfs:label>Boiler Count</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00395">
<rdfs:label>N-Acetyl-S-(n-propyl)-L-cysteine</rdfs:label>
<ns1:notation>BPMA</ns1:notation>
<ns1:editorialNote>To Do: align with CHEBI.</ns1:editorialNote>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134179"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_34317">
<rdfs:label>PCB118</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_53156"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:notation>PCB118</ns1:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00385">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:editorialNote>To Do: align with CHEBI.</ns1:editorialNote>
<rdfs:label>N-Acetyl-S-(2-carbamoyl-2-hydroxyethyl)-L-cysteine</rdfs:label>
<ns1:notation>GAMA</ns1:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134179"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00052">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Developmental Quality</rdfs:label>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityVariable"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_000475"/>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<ns1:definition>Refers to which stage of development a person is in.</ns1:definition>
</rdf:Description>
<rdf:Description rdf:about="http://www.ebi.ac.uk/efo/EFO_0005112">
<rdfs:subClassOf rdf:resource="http://www.ebi.ac.uk/efo/EFO_0005112"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QuantityVariable"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_001013"/>
<rdfs:label>Gestational Age</rdfs:label>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00036"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:definition>The age of the conceptus, beginning from the time of FERTILIZATION. In clinical obstetrics, the gestational age is often estimated as the time from the last day of the last MENSTRUATION which is about 2 weeks before OVULATION and fertilization</ns1:definition>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000211">
<rdfs:label>plaque forming unit</rdfs:label>
<ns1:notation>pfu</ns1:notation>
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OGMS_0000098">
<rdfs:label>Hospitalization</rdfs:label>
<ns1:notation>104</ns1:notation>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_001024"/>
<ns1:definition>Admission to a hospital</ns1:definition>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00188"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00483">
<rdfs:label>Education Grade 3</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<ns1:notation>115</ns1:notation>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00474"/>
<ns1:definition>Finished grade 3</ns1:definition>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000120">
<ns1:notation>kat</ns1:notation>
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
<rdfs:label>katal</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_39069">
<rdfs:label>Trans-Chlordane</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_36683"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:notation>TCHL</ns1:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/NCIT_C28554">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:definition>The cessation of life.</ns1:definition>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCIT_C165585"/>
<rdfs:label>Dead</rdfs:label>
<ns1:notation>173</ns1:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000116">
<ns1:notation>lx</ns1:notation>
<rdfs:label>lux</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
</rdf:Description>
<rdf:Description rdf:nodeID="N5db786f5295349a0bdceba6c2a6e8653">
<owl:allValuesFrom rdf:resource="http://purl.org/twc/HHEAR_00300"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:onProperty rdf:resource="http://semanticscience.org/resource/hasRole"/>
</rdf:Description>
<rdf:Description rdf:about="http://semanticscience.org/resource/SIO_001012">
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00549"/>
<rdfs:label>No Sickle Cell Anemia</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:notation>138</ns1:notation>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_27214">
<ns1:notation>U</ns1:notation>
<ns1:definition>Uranium. A radioactive element of the actinide series of metals. URANIUM has an atomic symbol U, atomic number 92, and atomic weight 238.03. U-235 is used as the fissionable fuel in nuclear weapons and as fuel in nuclear power reactors.</ns1:definition>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00363"/>
<rdfs:label>Uranium</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00089">
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00198"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:definition>Subscale of Kaufman ABC designed to measure the ability to solve problems by remembering and using an ordered series of images or ideas</ns1:definition>
<rdfs:label>Kaufman ABC Sequence Subscale</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://rdf.ncbi.nlm.nih.gov/pubchem/compound/47782">
<ns1:notation>CHRY2</ns1:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33666"/>
<rdfs:label>2-hydroxychrysene</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00520">
<ns1:definition>Who owns the home they live in.</ns1:definition>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QuantityVariable"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00050"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Home Ownership</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UBERON_0001987">
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_010002"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:definition>Organ of metabolic interchange between fetus and mother, partly of embryonic origin and partly of maternal origin[GO]. The fetal portion of the placenta is known as the villous chorion. The maternal portion is known as the decidua basalis. The two portions are held together by anchoring villi that are anchored to the decidua basalis by the cytotrophoblastic shell. [database_cross_reference: http://en.wikipedia.org/wiki/Placenta][database_cross_reference: http://www.med.umich.edu/lrc/coursepages/m1/embryology/embryo/06placenta.htm]</ns1:definition>
<ns3:identifier>PL</ns3:identifier>
<rdfs:label>Placenta</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00243"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/NCIT_C17459">
<rdfs:label>Hispanic or Latino Ethnicity</rdfs:label>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:notation>47</ns1:notation>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<ns1:definition>A person of Cuban, Mexican, Puerto Rican, South or Central American, or other Spanish culture or origin, regardless of race. The term “Spanish origin” can also be used in addition to “Hispanic or Latino.”</ns1:definition>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_001014"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00287">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00230"/>
<ns1:editorialNote>Putting a note here, but it applies to all of the appliances. These are used to calculate the SES Index that was reported within one of the pilots. So, there needs to be some connection between these terms.</ns1:editorialNote>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QuantityVariable"/>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<ns1:definition>Number of machines in the home used to heat up food using microwaves.</ns1:definition>
<rdfs:label>Microwave Oven Count</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_88542">
<ns1:definition>Butylparaben is a Standardized Chemical Allergen. The physiologic effect of butylparaben is by means of Increased Histamine Release, and Cell-mediated Immunity. The chemical classification of butylparaben is Allergens.</ns1:definition>
<rdfs:label>Butyl paraben</rdfs:label>
<ns1:notation>BuPB</ns1:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_85122"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00243">
<rdfs:label>Pregnancy Sample</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00177"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:definition>A sample that is taken at or near pregnancy or birth.</ns1:definition>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00352">
<ns1:notation>16</ns1:notation>
<rdfs:label>Fast Food Consumption</rdfs:label>
<ns1:definition>Whether or not fast food is consumed.</ns1:definition>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00275"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/NCIT_C16352">
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_001015"/>
<rdfs:label>African American</rdfs:label>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00522"/>
<ns1:definition>A person having origins in any of the Black racial groups of Africa. Terms such as "Haitian" or "Negro" can be used in addition to "Black or African American".</ns1:definition>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<ns1:notation>8</ns1:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00463">
<rdfs:label>Gas Chromatographer-Tandem Mass Spectrometer</rdfs:label>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jim-McCusker"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00277"/>
<ns1:definition>MS/MS is the combination of two mass analyzers in one mass spec instrument.</ns1:definition>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00213"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000101">
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
<ns1:notation>µl</ns1:notation>
<rdfs:label>microliter</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00349">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Cousin</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00300"/>
<ns1:definition>A person belonging to the same extended family.</ns1:definition>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UBERON_0001037">
<ns3:identifier>H</ns3:identifier>
<rdfs:label>Hair</rdfs:label>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_010002"/>
<ns1:definition>A filament, mostly protein, that grows from follicles found in the dermis[WP]. [database_cross_reference: http://en.wikipedia.org/wiki/Hair]</ns1:definition>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://rdf.ncbi.nlm.nih.gov/pubchem/compound/92272">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_26092"/>
<ns1:notation>MiBP</ns1:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>mono-isobutyl phthalate (DiBP)</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00169">
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_001167"/>
<rdfs:label>thawed, hemolyzed (covers all three levels) and exposed to light</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/NCIT_C39392">
<ns1:notation>144</ns1:notation>
<ns1:definition>The Doctor's Degree is the highest award a student can earn for graduate study. The doctor's degree classification includes such degrees in any field.</ns1:definition>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdfs:label>Doctorate Degree</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00357"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000210">
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
<rdfs:label>colony forming unit</rdfs:label>
<ns1:notation>cfu</ns1:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00523">
<ns1:definition>Total Standardized Autism Diagnostic Observation Schedule (ADOS) score.</ns1:definition>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QuantityVariable"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://www.cognitiveatlas.org/ontology/cogat.owl#CAO_01168"/>
<rdfs:label>Social Affect + Restricted and Repetitive Behavior Total</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://www.uniprot.org/uniprot/Q16552">
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_010043"/>
<rdfs:label>Interleukin-17A</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:notation>IL17A</ns1:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00048">
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_001167"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Cyclomicrons present</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00361">
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00308"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Mercapturic acids of 1, 3-butadiene</rdfs:label>
<ns1:notation>HEMA</ns1:notation>
</rdf:Description>
<rdf:Description rdf:nodeID="N8ffbb21e8449415c836624d3d11d260b">
<owl:allValuesFrom rdf:nodeID="Neca424d3b369428883d95ea749397c25"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:onProperty rdf:resource="http://semanticscience.org/resource/inRelationTo"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/NCIT_C75561">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ExO_0000034"/>
<ns1:notation>66</ns1:notation>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdfs:label>Student</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://semanticscience.org/resource/SIO_010002">
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00177"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Tissue</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000079">
<rdfs:label>radian per second</rdfs:label>
<ns1:notation>rad/s</ns1:notation>
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.uniprot.org/uniprot/Q9GZX6">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:notation>IL22</ns1:notation>
<rdfs:label>Interleukin-22</rdfs:label>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_010043"/>
</rdf:Description>
<rdf:Description rdf:about="http://rdf.ncbi.nlm.nih.gov/pubchem/compound/104820">
<ns1:notation>Arsenocholine</ns1:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00262"/>
<rdfs:label>Arsenocholine</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000145">
<rdfs:label>millicurie</rdfs:label>
<ns1:notation>mCi</ns1:notation>
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UBERON_0001988">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:definition>Portion of semisolid bodily waste discharged through the anus[MW, modified] [database_cross_reference: http://en.wikipedia.org/wiki/Feces][database_cross_reference: http://www.merriam-webster.com/dictionary/feces]</ns1:definition>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00177"/>
<rdfs:label>Feces</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UBERON_0007311">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Sputum</rdfs:label>
<ns1:definition>Matter ejected from the lungs, bronchi, and trachea, through the mouth. [database_cross_reference: Dorlands_Medical_Dictionary:MerckSource]</ns1:definition>
<ns3:identifier>SU</ns3:identifier>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00220"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_28984">
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00363"/>
<ns1:definition>ALUMINUM is a metallic element that has the atomic number 13, atomic symbol Al, and atomic weight 26.98.</ns1:definition>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Aluminum</rdfs:label>
<ns1:notation>Al</ns1:notation>
</rdf:Description>
<rdf:Description rdf:nodeID="ub6bL37C57">
<owl:intersectionOf rdf:nodeID="fb04ff7627957480ca6988d69bfdf2100b4"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00093">
<rdfs:label>Lipemic and turbid</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_001167"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_28112">
<rdfs:label>Nickel</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:notation>Ni</ns1:notation>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00363"/>
<ns1:definition>NICKEL is a trace element with the atomic symbol Ni, atomic number 28, and atomic weight 58.69. It is a cofactor of the enzyme UREASE.</ns1:definition>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_33115">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00273"/>
<ns1:notation>I</ns1:notation>
<ns1:definition>Iodine is a nonmetallic element of the halogen group that is represented by the atomic symbol I, atomic number 53, and atomic weight of 126.90. It is a nutritionally essential element, especially important in thyroid hormone synthesis. In solution, it has anti-infective properties and is used topically.</ns1:definition>
<rdfs:label>Iodine</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00436">
<ns1:editorialNote>To Do: align with CHEBI.</ns1:editorialNote>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>dimethylthiophosphate</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00260"/>
<ns1:notation>DMTP</ns1:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00334">
<ns1:notation>PHEN2_PHEN3</ns1:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_15882"/>
<rdfs:label>2-hydroxyphenanthrene + 3-hydroxyphenanthrene</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00487">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jim-McCusker"/>
<rdfs:label>Elementary School</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:notation>15</ns1:notation>
<ns1:definition>Finished Elementary School</ns1:definition>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00474"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00387">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134179"/>
<ns1:notation>CYMA</ns1:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:editorialNote>To Do: align with CHEBI.</ns1:editorialNote>
<rdfs:label>N-Acetyl-S-(2-cyanoethyl)-L-cysteine</rdfs:label>
</rdf:Description>
<rdf:Description rdf:nodeID="N1b36467e36a947709e688cef561f2d43">
<owl:someValuesFrom rdf:resource="http://semanticscience.org/resource/SIO_010052"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:onProperty rdf:resource="http://semanticscience.org/resource/hasAttribute"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_28842">
<ns1:definition>A C18 straight-chain saturated fatty acid component of many animal and vegetable lipids. As well as in the diet, it is used in hardening soaps, softening plastics and in making cosmetics, candles and plastics.</ns1:definition>
<ns1:notation>C180</ns1:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_35366"/>
<rdfs:label>octadecanoic acid</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000013">
<rdfs:label>mole</rdfs:label>
<ns1:notation>mol</ns1:notation>
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00135">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_001167"/>
<rdfs:label>Sample frozen</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00306">
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00194"/>
<ns1:definition>How frequently a person gets stressed.</ns1:definition>
<rdfs:label>Stress Frequency</rdfs:label>
<ns1:editorialNote>Again, we might want to link this to a specific assessment?</ns1:editorialNote>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_000475"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityVariable"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_28313">
<rdfs:label>Nornicotine</rdfs:label>
<ns1:notation>NORN</ns1:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00308"/>
</rdf:Description>
<rdf:Description rdf:nodeID="f266b52c89aba4951bddce0ad24f9c76db10">
<rdf:first rdf:nodeID="ub2bL76C172"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00326">
<ns1:notation>BDE66</ns1:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:editorialNote>To Do: align with CHEBI.</ns1:editorialNote>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134094"/>
<rdfs:label>2, 3', 4, 4'-Tetrabromodiphenyl ether</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_30145">
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00363"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:definition>An element in the alkali metals family. It has the atomic symbol Li, atomic number 3, and atomic weight [6.938; 6.997]. Salts of lithium are used in treating BIPOLAR DISORDER.</ns1:definition>
<rdfs:label>Lithium</rdfs:label>
<ns1:notation>Li</ns1:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00186">
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_001007"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:definition>Gel electrophoresis is a method for separation and analysis of macromolecules (DNA, RNA and proteins) and their fragments, based on their size and charge.</ns1:definition>
<rdfs:label>Gel Electrophoresis</rdfs:label>
</rdf:Description>
<rdf:Description rdf:nodeID="N0c93650553604dd18698de3c95753c48">
<owl:allValuesFrom rdf:nodeID="N1b36467e36a947709e688cef561f2d43"/>
<owl:onProperty rdf:resource="http://semanticscience.org/resource/isRoleOf"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00174">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Atomic Absorption Spectroscopy</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00031"/>
</rdf:Description>
<rdf:Description rdf:nodeID="fb04ff7627957480ca6988d69bfdf2100b4">
<rdf:rest rdf:nodeID="fb04ff7627957480ca6988d69bfdf2100b5"/>
<rdf:first rdf:resource="http://purl.obolibrary.org/obo/UBERON_0001043"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00429">
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00267"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdfs:label>Unplanned Caesarian Section</rdfs:label>
<ns1:definition>Had an unplanned caesarian section.</ns1:definition>
<ns1:notation>23</ns1:notation>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00372">
<ns1:notation>VOCHPM</ns1:notation>
<rdfs:label>N-Ace-S-(3-Hydroxypropyl)-L-Cys(ng/mL)</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134179"/>
<ns1:editorialNote>To Do: align with CHEBI.</ns1:editorialNote>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000259">
<rdfs:label>decibel</rdfs:label>
<ns1:notation>dB</ns1:notation>
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00100">
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/hasco/StudyIndicator"/>
<rdfs:label>Medical History</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:definition>Medical History Indicator Class</ns1:definition>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00236">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Limit of Detection</rdfs:label>
<ns1:definition>The lowest quantity of a substance that can be distinguished from the absence of that substance (a blank value) with a stated confidence level (generally 99%). The detection limit is estimated from the mean of the blank, the standard deviation of the blank and some confidence factor. Another consideration that affects the detection limit is the accuracy of the model used to predict concentration from the raw analytical signal.</ns1:definition>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_001088"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00165">
<rdfs:comment>A histological count of the eosinophils in a high-power microscopic field of view, or 0.158 mm^2 (x400).</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_000794"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>eosinophils per high-power field</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://rdf.ncbi.nlm.nih.gov/pubchem/compound/8572">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Benzophenone-1</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_22726"/>
<ns1:notation>BP1</ns1:notation>
</rdf:Description>
<rdf:Description rdf:nodeID="f266b52c89aba4951bddce0ad24f9c76db13">
<rdf:first rdf:nodeID="ub2bL98C172"/>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_27007">
<ns1:notation>Sn</ns1:notation>
<ns1:definition>TIN is a trace element that is required in bone formation. It has the atomic symbol Sn, atomic number 50, and atomic weight 118.71.</ns1:definition>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00363"/>
<rdfs:label>Tin</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00304">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<ns1:definition>The flooring is made of soil.</ns1:definition>
<rdfs:label>Soil Floor</rdfs:label>
<ns1:notation>84</ns1:notation>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00227"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_49900">
<ns1:notation>Arsenous (III) Acid</ns1:notation>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00262"/>
<rdfs:label>Arsenous ( III) Acid</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="N0959bdbef15e47b4ab5a3d9d38319553">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:allValuesFrom rdf:nodeID="Nc0b48ef51ce147cba2b9a007b805ecd2"/>
<owl:onProperty rdf:resource="http://semanticscience.org/resource/inRelationTo"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ENVO_00003064">
<ns1:definition>Drinking Water</ns1:definition>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ENVO_00010483"/>
<ns1:definition>Drinking water is water which may be consumed by humans with no adverse effects on their health.</ns1:definition>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Drinking Water</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_18291">
<ns1:definition>MANGANESE is a trace element with atomic symbol Mn, atomic number 25, and atomic weight 54.94. It is concentrated in cell mitochondria, mostly in the pituitary gland, liver, pancreas, kidney, and bone, influences the synthesis of mucopolysaccharides, stimulates hepatic synthesis of cholesterol and fatty acids, and is a cofactor in many enzymes, including arginase and alkaline phosphatase in the liver. (From AMA Drug Evaluations Annual 1992, p2035)</ns1:definition>
<ns1:notation>Mn</ns1:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Manganese</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00363"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000100">
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
<ns1:notation>dm3</ns1:notation>
<rdfs:label>cubic decimeter</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00426">
<ns1:notation>TNIC</ns1:notation>
<ns1:editorialNote>Duplicate of NIC?</ns1:editorialNote>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00308"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Total nicotine</rdfs:label>
</rdf:Description>
<rdf:Description rdf:nodeID="ub2bL144C82">
<owl:someValuesFrom rdf:nodeID="ub2bL146C103"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:onProperty rdf:resource="http://semanticscience.org/resource/hasAttribute"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00212">
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<rdfs:subClassOf rdf:nodeID="Nde9da7ed9600489ab35c95d00de4c728"/>
<rdfs:label>Subject</rdfs:label>
<ns1:definition>A living individual about whom a research investigator (whether a professional or a student) obtains data through 1) intervention or interaction with the individual, or 2) identifiable private information</ns1:definition>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_000016"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00266">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns3:identifier>BU</ns3:identifier>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_010001"/>
<ns1:definition>Cells collected from the inner epithelium of the cheek</ns1:definition>
<rdfs:label>Buccal Cell</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000245">
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
<ns1:notation>KiB</ns1:notation>
<rdfs:label>kibibyte</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00127">
<rdfs:label>Refractometer</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:definition>A laboratory or field device for the measurement of an index of refraction (refractometry). The index of refraction is calculated from Snell's law while for mixtures, the index of refraction can be calculated from the composition of the material using several mixing rules such as the Gladstone–Dale relation and Lorentz–Lorenz equation.</ns1:definition>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jim-McCusker"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/vstoi#PhysicalInstrument"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00117">
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/hasco/StudyIndicator"/>
<ns1:definition>Physical and Mental Assessments Indicator Class</ns1:definition>
<rdfs:label>Physical and Mental Assessment</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000087">
<rdfs:label>kilogram per mole</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
<ns1:notation>kg/mol</ns1:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000156">
<rdfs:label>einstein per square meter per second</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
<ns1:notation>einstein/sm2</ns1:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_22977">
<rdfs:label>Cadmium</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:definition>An element with atomic symbol Cd, atomic number 48, and atomic weight 114. It is a metal and ingestion will lead to CADMIUM POISONING.</ns1:definition>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00363"/>
<ns1:notation>Cd</ns1:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00131">
<rdfs:label>Result repeated with diluted sample</rdfs:label>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_001167"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00394">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134179"/>
<ns1:editorialNote>To Do: align with CHEBI.</ns1:editorialNote>
<rdfs:label>N-Acetyl-S-(benzyl)-L-cysteine(ng/mL)</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:notation>VOCBMA</ns1:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00485">
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00476"/>
<ns1:definition>Finished grade 6</ns1:definition>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:notation>118</ns1:notation>
<rdfs:label>Education Grade 6</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00058">
<rdfs:label>Electron Capture Dissociation (ECD)</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/hasco/TandemMassSpectrometry"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00150">
<rdfs:label>Torn bag (Mitest intact, capped)</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_001167"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00416">
<ns1:definition>Could be a former smoker or a non-smoker, so neither should be encoded as the superclass.</ns1:definition>
<ns1:notation>76</ns1:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Prenatal Nonsmoker</rdfs:label>
<ns1:editorialNote>Should this be a subClassOf PregnancyCharactistic as well?</ns1:editorialNote>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00290"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_15756">
<ns1:definition>A straight-chain, sixteen-carbon, saturated long-chain fatty acid.</ns1:definition>
<ns1:notation>C160</ns1:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_35366"/>
<rdfs:label>hexadecanoic acid</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ExO_0000113">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityVariable"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00025"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_001326"/>
<rdfs:label>Smoking Status</rdfs:label>
<ns1:definition>An indication of a person's current tobacco and nicotine consumption as well as some indication of smoking history</ns1:definition>
<ns1:editorialNote>We need to discuss this entire hierarchy.</ns1:editorialNote>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00301">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<ns1:definition>In holoendemic transmission areas, Severe Malarial Anemia (SMA) is the primary clinical manifestation of severe childhood malaria, with cerebral malaria occurring only in rare cases. Mortality rates from SMA can exceed 30% in pediatric populations residing in holoendemic transmission areas. The pathophysiological processes that contribute to SMA involve direct and indirect destruction of parasitized and non-parasitized red blood cells (RBCs), inefficient and/or suppression of erythropoiesis, and dyserythropoiesis.</ns1:definition>
<rdfs:label>Severe Malarial Anemia</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:notation>127</ns1:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/HP_0001903"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00280">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:definition>An episode when a patient who had been discharged from a hospital is admitted again within a specified time interval.</ns1:definition>
<rdfs:label>Hospital Readmissions</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00188"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_000794"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00496">
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00479"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00213"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Ultra-Performance Liquid Chromatography - Tandem Mass Spectrometer</rdfs:label>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jim-McCusker"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00189">
<rdfs:label>Hydrogen–Deuterium Exchange Mass Spectrometer</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00099"/>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jim-McCusker"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:definition>Hydrogen–deuterium exchange mass spectrometry can determine the overall deuterium content of molecules which have undergone H/D exchange. Because of the sample preparation required, it is typically considered to provide an accurate measurement of non-exchangeable hydrogen atoms only.</ns1:definition>
</rdf:Description>
<rdf:Description rdf:about="http://semanticscience.org/resource/SIO_010009">
<ns3:identifier>R</ns3:identifier>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>RNA</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00284"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000215">
<rdfs:label>plaque forming unit per milliliter</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
<ns1:notation>pfu/ml</ns1:notation>
</rdf:Description>
<rdf:Description rdf:nodeID="N60f8220e5fd944df9b1c2edbcc39dbe2">
<owl:someValuesFrom rdf:resource="http://semanticscience.org/resource/SIO_010052"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:onProperty rdf:resource="http://semanticscience.org/resource/hasAttribute"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000316">
<rdfs:label>cells per microliter</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
<ns1:notation>cp/µl</ns1:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00312">
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00230"/>
<ns1:definition>Number of devices that play VCRs in the home.</ns1:definition>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QuantityVariable"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>VCR Player Count</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000326">
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
<rdfs:label>centiMorgan</rdfs:label>
<ns1:notation>cM</ns1:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00187">
<ns1:notation>30</ns1:notation>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00115"/>
<rdfs:label>Haircare Product Use</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CL_0009001">
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_010001"/>
<rdfs:label>neuron</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00223">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00172"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:notation>52</ns1:notation>
<rdfs:label>Consumed Alcohol</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://rdf.ncbi.nlm.nih.gov/pubchem/compound/20269373">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_26092"/>
<ns1:notation>mHxP</ns1:notation>
<rdfs:label>mono-hexyl phthalate</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UBERON_0001977">
<ns3:identifier>S</ns3:identifier>
<rdfs:subClassOf rdf:resource="http://www.ebi.ac.uk/efo/EFO_0001941"/>
<ns1:definition>Liquid derived from blood plasma that has clotting factors removed. [database_cross_reference: http://en.wikipedia.org/wiki/Serum_(blood)][database_cross_reference: http://orcid.org/0000-0002-6601-2165]</ns1:definition>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Serum</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://semanticscience.org/resource/SIO_001014">
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00050"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_000475"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityVariable"/>
<rdfs:label>Ethnicity</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://www.ebi.ac.uk/efo/EFO_0006525">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>cigarettes per day</rdfs:label>
<ns1:notation>152</ns1:notation>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00025"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_33204">
<ns1:notation>C2H5Hg</ns1:notation>
<rdfs:label>Ethyl mercury (C2H5Hg+)</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00286"/>
</rdf:Description>
<rdf:Description rdf:about="http://rdf.ncbi.nlm.nih.gov/pubchem/compound/75575">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:notation>BPF</ns1:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_15882"/>
<rdfs:label>Bisphenol F</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://www.uniprot.org/uniprot/P00738">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Haptoglobin</rdfs:label>
<ns1:notation>HAPTOGLOBIN</ns1:notation>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_010043"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_15843">
<rdfs:label>arachidonic acid</rdfs:label>
<ns1:notation>C204N6</ns1:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_35366"/>
<ns1:definition>A long-chain fatty acid that is a C20, polyunsaturated fatty acid having four (Z)-double bonds at positions 5, 8, 11 and 14.</ns1:definition>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_83491">
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00293"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Perfluoro-n-pentanoic acid</rdfs:label>
<ns1:notation>PFPeA</ns1:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000176">
<ns1:notation>mg/ml</ns1:notation>
<rdfs:label>milligram per milliliter</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/SIO_000074"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/NCIT_C75562">
<ns1:notation>65</ns1:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Part Time Employment</rdfs:label>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ExO_0000034"/>
<ns1:definition>Employment involving less than the standard or customary working time.</ns1:definition>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/hasco/Immunoassay">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00340">
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00308"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:notation>NNAL</ns1:notation>
<ns1:editorialNote>To Do: align with CHEBI.</ns1:editorialNote>
<rdfs:label>4-(methlynitrosamino)-1-(3-pyridyl)-1-butanol</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00279">
<ns1:notation>49</ns1:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdfs:label>Health Maintenance Organization Insurance</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00232"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00183">
<ns1:notation>14</ns1:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00025"/>
<rdfs:label>Drug History</rdfs:label>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityVariable"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00413">
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<ns1:notation>18</ns1:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00267"/>
<rdfs:label>Planned Caesarian Section</rdfs:label>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<ns1:definition>Planned caesarian section.</ns1:definition>
</rdf:Description>
<rdf:Description rdf:nodeID="N8f9d1bbf7aad4abe81efbcbac42bb2b7">
<owl:onProperty rdf:resource="http://semanticscience.org/resource/inRelationTo"/>
<owl:allValuesFrom rdf:nodeID="Ne6868dd40af84b51944acf66ee0c422f"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
</rdf:Description>
<rdf:Description rdf:about="http://rdf.ncbi.nlm.nih.gov/pubchem/compound/31736">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_26092"/>
<rdfs:label>mono benzyl phthalate (BzBP)</rdfs:label>
<ns1:notation>MBP</ns1:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00285">
<ns1:notation>130</ns1:notation>
<ns1:definition>Retinopathy due to malaria.</ns1:definition>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdfs:label>Malarial Retinopathy</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/HP_0000488"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_68641">
<ns1:definition>The N-glucuronide conjugate of cotinine is a major urinary metabolite of NICOTINE. It thus serves as a biomarker of exposure to tobacco SMOKING. It has CNS stimulating properties.</ns1:definition>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00308"/>
<ns1:notation>COT</ns1:notation>
<rdfs:label>Cotinine</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/twc/HHEAR_00227">
<rdfs:label>Floor Type</rdfs:label>
<ns2:wasApprovedBy rdf:resource="http://hadatac.org/kb/hhear#PER-Jeanette-Stingone"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityVariable"/>
<ns1:definition>Type of material that makes up the floor.</ns1:definition>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00080"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/SIO_000004"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_30440">
<ns1:definition>THALLIUM is a heavy, bluish white metal, atomic number 81, atomic weight [204.382; 204.385], symbol Tl.</ns1:definition>
<rdfs:subClassOf rdf:resource="http://purl.org/twc/HHEAR_00363"/>
<rdfs:label>Thallium</rdfs:label>
<ns1:notation>Tl</ns1:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/HP_0001945">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/HP_0000001"/>
<ns1:notation>123</ns1:notation>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:definition>Elevated body temperature due to failed thermoregulation.</ns1:definition>
<rdfs:label>Fever</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/DOID_0060037">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/DOID_4"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Developmental Disorder of Mental Health</rdfs:label>
</rdf:Description>