-
Notifications
You must be signed in to change notification settings - Fork 0
/
chear.owl
8218 lines (8216 loc) · 532 KB
/
chear.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:dcterms="http://purl.org/dc/terms/"
xmlns:ns1="http://hadatac.org/ont/hasco/"
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:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
>
<rdf:Description rdf:nodeID="fd519b218bda04adb9a746ca009f1dff8b2">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:nodeID="ub5bL27C195"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#BDE47">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134094"/>
<skos:notation>BDE47</skos:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>2,2',4,4'-Tetrabromodiphenyl ether</rdfs:label>
<skos:editorialNote>To Do: align with CHEBI.</skos:editorialNote>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/NCIT_C53262">
<rdfs:label>Domestic Partnership</rdfs:label>
<skos:definition>Indicates a person who is a member of an unmarried couple, including same sex couples, living together in longstanding relationships, that are registered or unregistered.</skos:definition>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#Unmarried"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:notation>42</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_30512">
<skos:definition>Silver. An element with the atomic symbol Ag, atomic number 47, and atomic weight 107.87. It is a soft metal that is used medically in surgical instruments, dental prostheses, and alloys. Long-continued use of silver salts can lead to a form of poisoning known as ARGYRIA.</skos:definition>
<skos:notation>Ag</skos:notation>
<rdfs:label>Silver</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#Metal"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#DCVMA12">
<rdfs:label>N-Acetyl-S-(1,2-dichlorovinyl)-L-cysteine</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:notation>DCVMA12</skos:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134179"/>
<skos:editorialNote>To Do: align with CHEBI.</skos:editorialNote>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#PHEMA">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134179"/>
<skos:editorialNote>To Do: align with CHEBI.</skos:editorialNote>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>N-Acetyl-S-(1-phenyl-2-hydroxyethyl-L-cysteine + N-Acetyl-S-(2-phenyl-2-hydroxyethyl)-L-cysteine</rdfs:label>
<skos:notation>PHEMA</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#MHNCH">
<rdfs:label>Cyclohexane-1,2-dicarboxylic acid mono hydroxyisononyl ester (DINCH)</rdfs:label>
<skos:notation>MHNCH</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_34093">
<skos:notation>PYR1</skos:notation>
<rdfs:label>1-hydroxypyrene</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33666"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.uniprot.org/uniprot/Q9HBE4">
<rdfs:label>Interleukin-21</rdfs:label>
<skos:notation>IL21</skos:notation>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Protein"/>
<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/118770">
<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>Monoisopropyl phthalate</rdfs:label>
<skos:notation>MiPP</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#AFSInstrument">
<skos:definition>a type of electromagnetic spectroscopy that analyzes fluorescence from a sample. It involves using a beam of light, usually ultraviolet light, that excites the electrons in molecules of certain compounds and causes them to emit light; typically, but not necessarily, visible light.</skos:definition>
<rdfs:label>Atomic Fluorescence Spectroscopy Instrument</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/vstoi#PhysicalInstrument"/>
<ns1:wasApprovedBy>chear-kb:PER-Jim-McCusker</ns1:wasApprovedBy>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#QuitBeforePregnancy">
<skos:definition>A Previous Smoker who Quit Smoking Before Pregnancy</skos:definition>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#QuitSmoking"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#PregnancyCharacteristic"/>
<skos:notation>81</skos:notation>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Quit Smoking Before Pregnancy</rdfs:label>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#PrenatalNonSmoker"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#DietAndNutrition">
<rdfs:label>Diet and Nutrition</rdfs:label>
<skos:editorialNote>• [WARNING] SDD_00014: The Attributes: [sio:SpecificGravity] are subclasses of neither hasco:StudyIndicator nor hasco:SampleIndicator .</skos:editorialNote>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:definition>Diet and Nutrition Indicator</skos:definition>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/hasco/StudyIndicator"/>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000321">
<skos:notation>µcurie/ml</skos:notation>
<rdfs:label>microcurie per milliliter</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/UnitOfMeasurement"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#ElectrosprayIonizationMassSpectrometry">
<rdfs:label>Electrospray Ionization Mass Spectrometry</rdfs:label>
<skos:definition>Mass spectrometry using ESI is called electrospray ionization mass spectrometry (ESI-MS) or, less commonly, electrospray mass spectrometry (ES-MS). ESI is a so-called 'soft ionization' technique, since there is very little fragmentation. This can be advantageous in the sense that the molecular ion (or more accurately a pseudo molecular ion) is always observed, however very little structural information can be gained from the simple mass spectrum obtained. This disadvantage can be overcome by coupling ESI with tandem mass spectrometry (ESI-MS/MS). Another important advantage of ESI is that solution-phase information can be retained into the gas-phase.</skos:definition>
<ns1:wasApprovedBy>chear-kb:PER-Jim-McCusker</ns1:wasApprovedBy>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/hasco/MassSpectrometry"/>
</rdf:Description>
<rdf:Description rdf:nodeID="Nedd5bcd634934078801f2988524541bc">
<owl:onProperty rdf:resource="http://semanticscience.org/resource/inRelationTo"/>
<owl:allValuesFrom rdf:nodeID="N0fa411f480864de4aaf589fe1fc6752b"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/HP_0025502">
<rdfs:label>Overweight</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:notation>71</skos:notation>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#BodyWeightQuality"/>
<rdfs:subClassOf rdf:nodeID="ub5bL108C61"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#BIRD-MS">
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/hasco/TandemMassSpectrometry"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Blackbody Infrared Radiative Dissociation (BIRD)</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#VOC34M">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:notation>VOC34M</skos:notation>
<rdfs:label>3-methipurc acd & 4-methipurc acd(ng/mL)</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134179"/>
<skos:editorialNote>To Do: align with CHEBI.</skos:editorialNote>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#mIDP">
<rdfs:label>mono-isodecyl phthalate</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:notation>mIDP</skos:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_26092"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CL_0002319">
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Cell"/>
<rdfs:label>neural cell</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#UnknownEducationLevel">
<skos:notation>101</skos:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
<rdfs:label>Unknown Education Level</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ExO_0000041"/>
<skos:definition>Level of Education is not known</skos:definition>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#NeurocognitiveAssessment">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#Assessment"/>
<rdfs:label>Neurocognitive Assessment</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#GCMSMS">
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#GCMS"/>
<ns1:wasApprovedBy>chear-kb:PER-Jim-McCusker</ns1:wasApprovedBy>
<skos:definition>MS/MS is the combination of two mass analyzers in one mass spec instrument.</skos:definition>
<rdfs:label>Gas Chromatographer-Tandem Mass Spectrometer</rdfs:label>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#TandemMassSpectrometer"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#PerfumeUse">
<skos:notation>74</skos: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>Perfume Use</rdfs:label>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#PersonalProductUse"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#ConsumedAlcohol">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Consumed Alcohol</rdfs:label>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#AlcoholUse"/>
<skos:notation>52</skos:notation>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
</rdf:Description>
<rdf:Description rdf:about="http://semanticscience.org/resource/Comment">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_18291">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos: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)</skos:definition>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#Metal"/>
<skos:notation>Mn</skos:notation>
<rdfs:label>Manganese</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#UPLCMSMS">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:wasApprovedBy>chear-kb:PER-Jim-McCusker</ns1:wasApprovedBy>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#UPLCMS"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#TandemMassSpectrometer"/>
<rdfs:label>Ultra-Performance Liquid Chromatography - Tandem Mass Spectrometer</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#SleepCharacterisitic">
<skos:definition>Sleep Characterisitics Indicator Class</skos:definition>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
<rdfs:label>Sleep Characterisitic</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/hasco/StudyIndicator"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#thousand_parts_per_microgram">
<rdf:type rdf:resource="http://semanticscience.org/resource/UnitOfMeasurement"/>
<rdfs:label>thousand parts per microgram</rdfs:label>
<skos:notation>x103 µL</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#FastFoodFrequency">
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#DietQuantity"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QuantityVariable"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Fast Food Consumption Frequency</rdfs:label>
<skos:definition>Frequency of Fast Food Consumption.</skos:definition>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#TeCP2456">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:notation>TeCP2456</skos:notation>
<skos:definition>PHYSICAL DESCRIPTION: Brown flakes or beige solid. Strong odor. (NTP, 1992)</skos:definition>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_15882"/>
<rdfs:label>2,4,5,6-Tetrachlorophenol</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/NCIT_C51773">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#MaritalStatus"/>
<skos:definition>Indicates a person currently joined in a legally binding matrimonial union. Classify common law marriage as married. Includes married couples living together and not living together.</skos:definition>
<skos:notation>37</skos:notation>
<rdfs:label>Married</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000258">
<rdfs:label>poise</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/UnitOfMeasurement"/>
<skos:notation>Poise</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#ColorimetricAssay">
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Assay"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Colorimetric Assay</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#Smoker">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:definition>The quality of smoking cigarettes.</skos:definition>
<skos:notation>105</skos:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ExO_0000113"/>
<rdfs:label>Smoker</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_38068">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<skos:definition>A drug used in the treatment of malaria. Antimalarials are usually classified on the basis of their action against Plasmodia at different stages in their life cycle in the human.</skos:definition>
<skos:notation>120</skos:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCIT_C459"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Antimalarial</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_33344">
<skos:definition>Niobium. A metal element atomic number 41, atomic weight 92.906, symbol Nb. (From Dorland, 28th ed)</skos:definition>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#Metal"/>
<rdfs:label>Niobium</rdfs:label>
<skos:notation>Nb</skos:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_17243">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:definition>PHYSICAL DESCRIPTION: Clear colorless to cloudy white viscous liquid. (NTP, 1992)</skos:definition>
<rdfs:label>mono ethyl hexyl phthalate</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_26092"/>
<skos:notation>MEHP</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_52048">
<rdfs:label>2,3,5,6-Tetrachlorophenol</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_15882"/>
<skos:definition>PHYSICAL DESCRIPTION: Leaflets (from ligroin) or light beige powder. (NTP, 1992)</skos:definition>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:notation>TeCP2356</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UBERON_0001987">
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#PregnancySample"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Tissue"/>
<dcterms:identifier>PL</dcterms:identifier>
<rdfs:label>Placenta</rdfs:label>
<skos: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]</skos:definition>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/DOID_12365">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Malaria</rdfs:label>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<skos:definition>A parasitic protozoa infectious disease characterized as a vector-borne infectious disease caused by the presence of protozoan parasites of the genus Plasmodium in the red blood cells, transmitted from an infected to an uninfected individual by the bite of anopheline mosquitoes, and characterized by periodic attacks of chills and fever that coincide with mass destruction of blood cells and the release of toxic substances by the parasite at the end of each reproductive cycle.</skos:definition>
<skos:notation>121</skos:notation>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#MedicalHistory"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Disease"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#ElectiveCaesarianSection">
<skos:notation>19</skos:notation>
<rdfs:label>Elective Caesarian Section</rdfs:label>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<skos:definition>A caesarian section that was chosen by the mother but was not medically necessary.</skos:definition>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#CaesareanSection"/>
</rdf:Description>
<rdf:Description rdf:nodeID="ub5bL25C170">
<owl:withRestrictions rdf:nodeID="fd519b218bda04adb9a746ca009f1dff8b2"/>
<owl:onDatatype rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Datatype"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#Comment_13">
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Comment"/>
<rdfs:label>Fibrin present</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_0002446">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/BiologicalEntity"/>
<rdfs:label>Patella</rdfs:label>
<skos:definition>The patella, also known as the knee cap or kneepan, is the largest sesamoid bone in the human body. The primary functional role of the patella is knee extension. The patella has convergently evolved in placental mammals and birds; marsupials have only rudimentary, non-ossified patellae. In more primitive tetrapods, including living amphibians and reptiles, the muscle tendons from the upper leg are attached directly to the tibia, and the patella is not present. See also: fabella.</skos:definition>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#mIPrP">
<rdfs:label>mono-isopropyl phthalate</rdfs:label>
<skos:editorialNote>Duplicate of MiPP?</skos:editorialNote>
<skos:notation>mIPrP</skos:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_26092"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CMO_0000000">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Clinical Measurement</rdfs:label>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#Assessment"/>
<skos:definition>A quantitative or qualitative value which is the result of an act of assessing a morphological or physiological state or property in a single individual or sample or a group of individuals or samples, based on direct observation or experimental manipulation. </skos:definition>
</rdf:Description>
<rdf:Description rdf:about="http://www.uniprot.org/uniprot/P49771">
<skos:notation>FLT3L</skos:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Protein"/>
<rdfs:label>Fms-related tyrosine kinase 3 ligand</rdfs:label>
</rdf:Description>
<rdf:Description rdf:nodeID="f2869531262474769bed25030323a1ba6b10">
<xsd:maxInclusive rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">10</xsd:maxInclusive>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#mHpP">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:notation>mHpP</skos:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_26092"/>
<rdfs:label>mono-2-heptyl phthalate</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#CHRY3">
<skos:notation>CHRY3</skos: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>3-hydroxychrysene</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#MU">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134179"/>
<skos:notation>MU</skos:notation>
<skos:editorialNote>To Do: align with CHEBI.</skos:editorialNote>
<rdfs:label>trans, trans -Muconic acid</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000139">
<skos:notation>µSv</skos:notation>
<rdfs:label>microsievert</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/UnitOfMeasurement"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_33387">
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#Metal"/>
<skos:notation>Np</skos:notation>
<rdfs:label>Neptunium</rdfs:label>
<skos:definition>Neptunium. A radioactive element of the actinide metals family. NEPTUNIUM has the atomic symbol Np, atomic number 93, and atomic weight 237.</skos:definition>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="fd519b218bda04adb9a746ca009f1dff8b18">
<rdf:first rdf:nodeID="ub5bL116C170"/>
<rdf:rest rdf:nodeID="fd519b218bda04adb9a746ca009f1dff8b19"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CL_0001061">
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Cell"/>
<rdfs:label>native cell</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#SpectraMax_Plus_384">
<skos:definition>Get absorbance measurements from 190 to 1000 nm quickly for samples in test tubes, cuvettes, and 96- or 384-well microplates. The SpectraMax® Plus 384 Microplate Reader gives you walk-up convenience for both standard spectrophotometer and microplate reader applications on the same instrument. Monochromator wavelength selection saves you the time and trouble of ever having to change out filters. Typical applications for this powerful reader include DNA and RNA quantification, enzyme kinetic assays, and ELISA based assays. When your project is ready for high throughput, take advantage of StakMax® automated microplate handling compatibility for full robotic integration.</skos:definition>
<rdfs:label>SpectraMax Plus 384 Microplate Reader</rdfs:label>
<ns1:wasApprovedBy>chear-kb:PER-Jim-McCusker</ns1:wasApprovedBy>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#MicroplateReader"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#HPLCMSMS">
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#LCMSMS"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:wasApprovedBy>chear-kb:PER-Jim-McCusker</ns1:wasApprovedBy>
<skos:definition>Liquid chromatography and tandem Mass Spectrometry. MS/MS (Tandem MS) is the combination of two mass analyzers in one mass spec instrument.</skos:definition>
<rdfs:label>High Performance Liquid Chromatography - Tandem Mass Spectrometer</rdfs:label>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#HPLCMS"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#Biospecimen">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/hasco/SampleIndicator"/>
<rdfs:label>Biospecimen</rdfs:label>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Specimen"/>
<skos:definition>A biological laboratory specimen held by a biorepository for research. Such a specimen would be taken by sampling so as to be representative of any other specimen taken from the source of the specimen. When biological specimens are stored, ideally they remain equivalent to freshly-collected specimens for the purposes of research.</skos:definition>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#HealthcareAccess">
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/hasco/StudyIndicator"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Healthcare Access</rdfs:label>
<skos:definition>Healthcare Access</skos:definition>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#Comment_33">
<rdfs:label>Result repeated and confirmed</rdfs:label>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Comment"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_15756">
<skos:notation>C160</skos:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_35366"/>
<skos:definition>A straight-chain, sixteen-carbon, saturated long-chain fatty acid.</skos:definition>
<rdfs:label>hexadecanoic acid</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CL_0001034">
<rdfs:label>experimentally modified cell in vitro</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Cell"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000103">
<skos:notation>pl</skos:notation>
<rdfs:label>picoliter</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/UnitOfMeasurement"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#HMOInsurance">
<skos:notation>49</skos:notation>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#Insurance"/>
<rdfs:label>Health Maintenance Organization Insurance</rdfs:label>
<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://hadatac.org/ont/chear#VOCATC">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:notation>VOCATC</skos:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134179"/>
<rdfs:label>2-amnothiazolne-4-carbxylic acid(ng/mL)</rdfs:label>
<skos:editorialNote>To Do: align with CHEBI.</skos:editorialNote>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_83491">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#Perfluorocarbon"/>
<rdfs:label>Perfluoro-n-pentanoic acid</rdfs:label>
<skos:notation>PFPeA</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#SomeMiddleSchool">
<skos:notation>90</skos:notation>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#HighSchoolOrLess"/>
<skos:definition>Attended Some Middle School</skos:definition>
<rdfs:label>Some Middle School</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CL_0000540">
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Cell"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>cell in vitro</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#VOCPMA">
<skos:editorialNote>To Do: align with CHEBI.</skos:editorialNote>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134179"/>
<rdfs:label>N-Acetyl-S-(phenyl)-L-cysteine(ng/mL)</rdfs:label>
<skos:notation>VOCPMA</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UPHENO_0001001">
<owl:equivalentClass rdf:resource="http://semanticscience.org/resource/Phenotype"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/BiologicalQuality"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/NCIT_C89345">
<rdfs:label>Childhood</rdfs:label>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#DevelopmentalQuality"/>
<skos:definition> A time period that begins at the beginning of the human embryonic stage and continues until the end of adolescence.</skos:definition>
<skos:notation>11</skos:notation>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#Demographic"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000169">
<skos:notation>ppm</skos:notation>
<rdfs:label>parts per million</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/UnitOfMeasurement"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#CaesareanSection">
<skos:notation>20</skos:notation>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#RouteOfDelivery"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#PregnancyCharacteristic"/>
<skos:definition>Caesarian Section Medical Procedure. One-third of pregnancies in the US end in C-Sections.</skos:definition>
<rdfs:label>Caesarian Section</rdfs:label>
</rdf:Description>
<rdf:Description rdf:nodeID="ub5bL13C82">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
<owl:someValuesFrom rdf:nodeID="ub5bL15C103"/>
<owl:onProperty rdf:resource="http://semanticscience.org/resource/hasAttribute"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#BDE153">
<rdfs:label>2,2',4,4',5,5'-Hexabromodiphenyl ether</rdfs:label>
<skos:notation>BDE153</skos:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134094"/>
<skos:editorialNote>To Do: align with CHEBI.</skos:editorialNote>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UBERON_0000979">
<skos:definition>The major preaxial endochondral bone in the posterior zeugopod.</skos:definition>
<rdfs:label>Tibia</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/BiologicalEntity"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_22726">
<rdfs:label>Benzophenone</rdfs:label>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#TargetedAnalyte"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#HeadOfHousehold">
<rdfs:subClassOf rdf:nodeID="N40282abb3b1f495d9476621fd511f07e"/>
<skos:definition>The Person is the head of Household</skos:definition>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Role"/>
<rdfs:label>Head of Household</rdfs:label>
<skos:definition>Head of Household is a filing status for individual United States taxpayers. To use the Head of Household filing status, a taxpayer must: (1) Be unmarried or considered unmarried at the end of the year (2) Have paid more than half the cost of keeping up a home for the tax year (either one's own home or the home of a qualifying parent) (3) Usually have a qualifying person who lived with the head in the home for more than half of the tax year unless the qualifying person is a dependent parent.</skos:definition>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Head Of Household</rdfs:label>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#Demographic"/>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#ClaussClottingMethod">
<rdfs:label>Fibrinogen Assay (Clauss method)</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Assay"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000267">
<rdfs:label>electric field strength unit</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/UnitOfMeasurement"/>
<skos:notation>Efs</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000062">
<rdf:type rdf:resource="http://semanticscience.org/resource/UnitOfMeasurement"/>
<rdfs:label>molar</rdfs:label>
<skos:notation>M</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#MHBMA3">
<skos:notation>MHBMA3</skos:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134179"/>
<skos:editorialNote>To Do: align with CHEBI.</skos:editorialNote>
<rdfs:label>N-Acetyl-S-(4-hydroxy-2-buten-1-yl)-L-cysteine</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#VaginalBirth">
<skos:definition>Had a birthing occur via the vagina.</skos:definition>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#PregnancyCharacteristic"/>
<rdfs:label>Vaginal Birth</rdfs:label>
<skos:notation>24</skos:notation>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Birthing"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#RouteOfDelivery"/>
<skos:editorialNote>Again, can we add a delivery class</skos:editorialNote>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#ActiveSmoker">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<skos:notation>2</skos:notation>
<skos:editorialNote>How is this different from "smoker'?</skos:editorialNote>
<skos:definition>The quality of actively smoking.</skos:definition>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ExO_0000113"/>
<rdfs:label>Active Smoker</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/CL_0000232">
<rdfs:label>Red Blood Cell</rdfs:label>
<skos:definition>A red blood cell. In mammals, mature erythrocytes are biconcave disks containing hemoglobin whose function is to transport oxygen.</skos:definition>
<rdfs:subClassOf rdf:resource="http://www.ebi.ac.uk/efo/EFO_0001941"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#PublicInsurance">
<skos:notation>79</skos:notation>
<rdfs:label>Public Insurance</rdfs:label>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#Insurance"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#DietTreatment">
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#MedicalTherapy"/>
<skos:definition>Diet Treatment is a form of Medical Therapy.</skos:definition>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdfs:label>Diet Treatment Medical Therapy</rdfs:label>
<skos:notation>26</skos:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#34202">
<rdfs:label>PCB153</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:notation>PCB153</skos:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_53156"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#HPMA">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134179"/>
<skos:editorialNote>To Do: align with CHEBI.</skos:editorialNote>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:notation>HPMA</skos:notation>
<rdfs:label>N-Acetyl-S- (3-hydroxypropyl)-L-cysteine</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UBERON_0001088">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Urine</rdfs:label>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#BodilyFluid"/>
<skos:definition>Excretion that is the output of a kidney [database_cross_reference: http://en.wikipedia.org/wiki/Urine][database_cross_reference: https://github.com/geneontology/go-ontology/issues/11025]</skos:definition>
<dcterms:identifier>U</dcterms:identifier>
</rdf:Description>
<rdf:Description rdf:about="http://rdf.ncbi.nlm.nih.gov/pubchem/compound/47782">
<skos:notation>CHRY2</skos:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33666"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>2-hydroxychrysene</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#GravimetricAnalysisInstrument">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:wasApprovedBy>chear-kb:PER-Jim-McCusker</ns1:wasApprovedBy>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/vstoi#PhysicalInstrument"/>
<rdfs:label>Gravimetric Analysis Instrument</rdfs:label>
<skos:definition>Gravimetric analysis describes a set of methods used in analytical chemistry for the quantitative determination of an analyte (the ion being analyzed) based on its mass. The principle behind this type of analysis is that once an ion's mass has been determined as a unique compound, that known measurement can then be used to determine the same analyte's mass in a mixture, as long as the relative quantities of the other constituents are known.</skos:definition>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#AdolescentPeriod">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#FromBirth"/>
<rdfs:label>Adolescent Period</rdfs:label>
<rdfs:subClassOf rdf:nodeID="Nc551ccfb774c400d8cbebf76d1ae0be5"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/TimeInterval"/>
<skos:definition>The age span ranging from adolescence to adulthood</skos:definition>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#NonSmoker">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:definition>Doesn't smoker cigarettes.</skos:definition>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ExO_0000113"/>
<rdfs:label>Non-smoker</rdfs:label>
<skos:notation>59</skos:notation>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_16101">
<skos:definition>Ethylbenzene is mainly used in the manufacture of styrene. Acute (short-term) exposure to ethylbenzene in humans results in respiratory effects, such as throat irritation and chest constriction, irritation of the eyes, and neurological effects such as dizziness. Chronic (long-term) exposure to ethylbenzene by inhalation in humans has shown conflicting results regarding its effects on the blood. Animal studies have reported effects on the blood, liver, and kidneys from chronic inhalation exposure to ethylbenzene. Limited information is available on the carcinogenic effects of ethylbenzene in humans. In a study by the National Toxicology Program (NTP), exposure to ethylbenzene by inhalation resulted in an increased incidence of kidney and testicular tumors in rats, and lung and liver tumors in mice. EPA has classified ethylbenzene as a Group D, not classifiable as to human carcinogenicity.</skos:definition>
<rdfs:label>Ethylbenzene</rdfs:label>
<skos:notation>EB</skos:notation>
<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://hadatac.org/ont/chear#ToasterCount">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QuantityVariable"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Toaster Count</rdfs:label>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#HouseholdApplianceCount"/>
<skos:definition>Number of appliances used to toast bread.</skos:definition>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#CollectionDate">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/TimeInterval"/>
<rdfs:label>Collection Date of Sample</rdfs:label>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QuantityVariable"/>
<skos:definition>Collection Date of Sample</skos:definition>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#Comment_200">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Comment"/>
<rdfs:label>Valid measurement, results repeated and confirmed (0,33)</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#Adult">
<skos:notation>3</skos:notation>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#DevelopmentalQuality"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#Demographic"/>
<skos:definition>Refers to a person above a threshold age.</skos:definition>
<rdfs:label>Adult</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_28875">
<skos:definition>A straight-chain, fourteen-carbon, long-chain saturated fatty acid mostly found in milk fat.</skos:definition>
<skos:notation>C140</skos:notation>
<rdfs:label>tetradecanoic acid</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_35366"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#PreviousSmoker">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:definition>The quality of having smoked in the past.</skos:definition>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ExO_0000113"/>
<skos:notation>78</skos:notation>
<rdfs:label>Previous Smoker</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://www.uniprot.org/uniprot/P05112">
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Protein"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:notation>IL4</skos:notation>
<rdfs:label>Interleukin-4</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_18723">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#TobaccoMetabolite"/>
<skos:notation>NIC</skos:notation>
<skos:definition>Nicotine is highly toxic alkaloid. It is the prototypical agonist at nicotinic cholinergic receptors where it dramatically stimulates neurons and ultimately blocks synaptic transmission. Nicotine is also important medically because of its presence in tobacco smoke.</skos:definition>
<rdfs:label>Nicotine</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000199">
<rdfs:label>microliter per kilogram</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/UnitOfMeasurement"/>
<skos:notation>µl/kg</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#Ever_Smoker">
<skos:notation>136</skos:notation>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdfs:label>Ever Smoked</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ExO_0000113"/>
<skos:definition>The quality of having smoking in the past.</skos:definition>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/STATO_0000038">
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Collection"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:definition>A set of 2 subjects which result from a pairing process which assigns subject to a set based on a pairing rule/criteria</skos:definition>
<rdfs:label>Matched Pair of Subjects</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000206">
<rdfs:label>milliliter per cubic meter</rdfs:label>
<skos:notation>ml/m3</skos:notation>
<rdf:type rdf:resource="http://semanticscience.org/resource/UnitOfMeasurement"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000091">
<rdfs:label>kilogram meter per second</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/UnitOfMeasurement"/>
<skos:notation>kg.m/s</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#micrograms_per_meter_cubed">
<rdfs:label>micrograms per meter cubed</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/UnitOfMeasurement"/>
<skos:notation>µg/m3</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000330">
<rdf:type rdf:resource="http://semanticscience.org/resource/UnitOfMeasurement"/>
<rdfs:label>gigabasepair</rdfs:label>
<skos:notation>Gb</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://semanticscience.org/resource/Circumference">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QuantityVariable"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#Anthropometry"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Circumference</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#PGA">
<rdfs:label>Phenylglyoxylic acid</rdfs:label>
<skos:notation>PGA</skos:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_134179"/>
<skos:editorialNote>To Do: align with CHEBI.</skos:editorialNote>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#ICPMSInstrument">
<skos:definition>A type of mass spectrometry which is capable of detecting metals and several non-metals at concentrations as low as one part in 10^15 (part per quadrillion, ppq) on non-interfered low-background isotopes. This is achieved by ionizing the sample with inductively coupled plasma and then using a mass spectrometer to separate and quantify those ions.</skos:definition>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:wasApprovedBy>chear-kb:PER-Jim-McCusker</ns1:wasApprovedBy>
<rdfs:label>Inductively Coupled Plasma Mass Spectrometer</rdfs:label>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#MassSpectrometer"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UBERON_0001988">
<skos: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]</skos:definition>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#Biospecimen"/>
<rdfs:label>Feces</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#StressFrequency">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityVariable"/>
<skos:editorialNote>Again, we might want to link this to a specific assessment?</skos:editorialNote>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:definition>How frequently a person gets stressed.</skos:definition>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
<rdfs:label>Stress Frequency</rdfs:label>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/BiologicalQuality"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#MentalHealth"/>
</rdf:Description>
<rdf:Description rdf:nodeID="f2869531262474769bed25030323a1ba6b19">
<owl:allValuesFrom rdf:resource="http://hadatac.org/ont/chear#Birth"/>
<owl:onProperty rdf:resource="http://semanticscience.org/resource/measuredAt"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
</rdf:Description>
<rdf:Description rdf:about="http://semanticscience.org/resource/hasAttribute">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/HP_0001903">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<skos:definition>A reduction in erythrocytes volume or hemoglobin concentration.</skos:definition>
<rdfs:label>Anemia</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:notation>128</skos:notation>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/HP_0000001"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#HPLC">
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#LiquidChromatographyInstrument"/>
<skos:definition>High-performance liquid chromatography (HPLC; formerly referred to as high-pressure liquid chromatography), is a technique in analytical chemistry used to separate, identify, and quantify each component in a mixture. It relies on pumps to pass a pressurized liquid solvent containing the sample mixture through a column filled with a solid adsorbent material. Each component in the sample interacts slightly differently with the adsorbent material, causing different flow rates for the different components and leading to the separation of the components as they flow out the column.</skos:definition>
<ns1:wasApprovedBy>chear-kb:PER-Jim-McCusker</ns1:wasApprovedBy>
<rdfs:label>High-Performance Liquid Chromatography</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#DETP">
<rdfs:label>diethylthiophosphate</rdfs:label>
<skos:editorialNote>To Do: align with CHEBI.</skos:editorialNote>
<skos:notation>DETP</skos:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#AlkylPhosphatePesticideMetabolite"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_48347">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_15882"/>
<skos:definition>Triclocarban is a triclosan analogue with an antibacterial property. Triclocarban exerts its effect by inhibiting the activity of enoyl-(acyl-carrier protein) (ACP) reductase, widely distributed in bacteria, fungi and plants. ACP reductase catalyses the last step in each cycle of fatty acid elongation in the type II fatty acid synthase systems. As a result, this agent interrupts cell membrane synthesis and leads to bacterial growth inhibition.</skos:definition>
<rdfs:label>Triclocarban</rdfs:label>
<skos:notation>TCC</skos:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#PhysicalActivityAndFitness">
<skos:definition>Physical Activity and Fitness Indicator Class</skos:definition>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/hasco/StudyIndicator"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Physical Activity and Fitness</rdfs:label>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/DOID_4">
<rdfs:label>Disease</rdfs:label>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#MedicalHistory"/>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Disease"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000014">
<skos:notation>cd</skos:notation>
<rdfs:label>candela</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/UnitOfMeasurement"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#SpontaneousCaesarianSection">
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#CaesareanSection"/>
<skos:notation>22</skos:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Spontaneous Caesarian Section</rdfs:label>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
<skos:definition>Had a spontaneous caesarian section</skos:definition>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_34206">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_53156"/>
<rdfs:label>PCB52</rdfs:label>
<skos:notation>PCB52</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000275">
<rdfs:label>nanogram per milliliter</rdfs:label>
<skos:notation>ng/ml</skos:notation>
<rdf:type rdf:resource="http://semanticscience.org/resource/UnitOfMeasurement"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000097">
<rdfs:label>cubic centimeter</rdfs:label>
<skos:notation>cm3</skos:notation>
<rdf:type rdf:resource="http://semanticscience.org/resource/UnitOfMeasurement"/>
</rdf:Description>
<rdf:Description rdf:nodeID="N69f3539317b4410aab1b9621ac74cfcf">
<owl:intersectionOf rdf:nodeID="N55fdcd8a88ab4d0ea8ccd2c1681fa8a4"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#NonHispanicOrLatino">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Non-Hispanic Ethnicity</rdfs:label>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Ethnicity"/>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
<skos:definition>Non-Hispanic Ethnicity</skos:definition>
<skos:notation>58</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_28941">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_35366"/>
<skos:notation>C220</skos:notation>
<skos:definition>A straight-chain, C22, long-chain saturated fatty acid.</skos:definition>
<rdfs:label>docosanoic acid</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#DietQuantity">
<rdfs:label>Diet Quantity</rdfs:label>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Quantity"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QuantityVariable"/>
<skos:definition>A quantity relating to diet and nutrition.</skos:definition>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#DietAndNutrition"/>
<skos:editorialNote>What differentiated diet from nutrition? That is why is this needed since we have the DietAndNutrition Class</skos:editorialNote>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#FastFoodConsumption">
<skos:definition>Whether or not fast food is consumed.</skos:definition>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<skos:notation>16</skos:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#FastFoodFrequency"/>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
<rdfs:label>Fast Food Consumption</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_29852">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<skos:notation>Monomethylarsonic Acid</skos:notation>
<rdfs:label>Monomethylarsonic Acid</rdfs:label>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#ArsenicSpecies"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/UO_0000274">
<rdfs:label>microgram per milliliter</rdfs:label>
<rdf:type rdf:resource="http://semanticscience.org/resource/UnitOfMeasurement"/>
<skos:notation>µg/ml</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CMO_0000012">
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Mass"/>
<rdfs:label>Weight</rdfs:label>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#Anthropometry"/>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QuantityVariable"/>
<skos:definition>The resulting Force from the interaction between a person's Mass and Gravity.</skos:definition>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.ebi.ac.uk/efo/EFO_0005112">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QuantityVariable"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#BirthOutcome"/>
<rdfs:label>Gestational Age</rdfs:label>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Age"/>
<rdfs:subClassOf rdf:resource="http://www.ebi.ac.uk/efo/EFO_0005112"/>
<skos: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</skos:definition>
</rdf:Description>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/CHEBI_39068">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_36683"/>
<skos:notation>CCHL</skos:notation>
<rdfs:label>Cis-Chlordane</rdfs:label>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#UnplannedCaesarianSection">
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#CaesareanSection"/>
<ns1:wasApprovedBy>chear-kb:PER-Jeanette-Stingone</ns1:wasApprovedBy>
<rdfs:label>Unplanned Caesarian Section</rdfs:label>
<skos:definition>Had an unplanned caesarian section.</skos:definition>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<skos:notation>23</skos:notation>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#EoEMild">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>mild eosinophilic esophagitis</rdfs:label>
<owl:equivalentClass rdf:nodeID="ub2bL71C35"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/DOID_13922"/>
<rdfs:comment>Eosinophilic esophagitis is mild when a biopsy of the esophagus reveals a count of 15-25 eosinophils per high-power field area, or 0.158 mm^2 (400x).</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#CompetitiveImmunoassay">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>Competitive Immunoassay</rdfs:label>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/hasco/Immunoassay"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear#AssistedReproductiveTherapy">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<rdfs:label>Assisted Reproductive Therapy</rdfs:label>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#PregnancyCharacteristic"/>
<skos:notation>7</skos:notation>
</rdf:Description>
<rdf:Description rdf:about="http://www.uniprot.org/uniprot/P02741">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<rdfs:label>C-reactive protein</rdfs:label>
<skos:definition>Displays several functions associated with host defense: it promotes agglutination, bacterial capsular swelling, phagocytosis and complement fixation through its calcium-dependent binding to phosphorylcholine. Can interact with DNA and histones and may scavenge nuclear material released from damaged circulating cells.</skos:definition>
<rdfs:subClassOf rdf:resource="http://semanticscience.org/resource/Protein"/>
<rdfs:subClassOf rdf:resource="http://hadatac.org/ont/chear#BiologicalResponse"/>
</rdf:Description>
<rdf:Description rdf:about="http://hadatac.org/ont/chear">
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/cl-basic.owl"/>
<owl:versionIRI rdf:resource="http://hadatac.org/ont/chear/2.8"/>
<owl:imports rdf:resource="http://hadatac.org/ont/hasco/"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology"/>
<owl:imports rdf:resource="http://hadatac.org/ont/cogat/"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/stato.owl"/>
<owl:imports rdf:resource="http://semanticscience.org/ontology/sio-subset-labels.owl"/>
<rdfs:comment>Children's health and wellbeing are influenced by interactions between environmental and genetic factors. NIEHS is establishing an infrastructure, the Children's Health Exposure Analysis Resource (CHEAR), to provide the extramural research community access to laboratory and data analyses that add or expand the inclusion of environmental exposures in children's health research. The goal of CHEAR is to provide tools so researchers can assess the full range of environmental exposures which may affect children's health. We anticipate that CHEAR will be used by children's health researchers conducting epidemiological or clinical studies that currently have limited consideration of environmental exposures, or those who have collected exposure data but seek more extensive analyses.
Read more at: https://www.niehs.nih.gov/research/supported/exposure/chear/</rdfs:comment>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/cmo.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/uo.owl"/>
</rdf:Description>
<rdf:Description rdf:about="http://semanticscience.org/resource/Hermaphrodite">
<rdf:type rdf:resource="http://hadatac.org/ont/hasco/QualityValue"/>
<skos:notation>109</skos:notation>
</rdf:Description>