-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpato_import.owl
6625 lines (4261 loc) · 304 KB
/
pato_import.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/envo/imports/pato_import.owl#"
xml:base="http://purl.obolibrary.org/obo/envo/imports/pato_import.owl"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/envo/imports/pato_import.owl"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
<!-- http://purl.obolibrary.org/obo/IAO_0100001 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0100001"/>
<!-- http://www.geneontology.org/formats/oboInOwl#SubsetProperty -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
<!-- http://www.geneontology.org/formats/oboInOwl#consider -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#consider"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasExactSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label"/>
<!-- http://www.w3.org/2002/07/owl#deprecated -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#deprecated"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/CHEBI_138675 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_138675">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33579"/>
<obo:IAO_0000115>Any main group molecular entity that is gaseous at standard temperature and pressure (STP; 0degreeC and 100 kPa).</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>gas molecular entities</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>gaseous molecular entities</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>gaseous molecular entity</oboInOwl:hasRelatedSynonym>
<rdfs:label>gas molecular entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_15379 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_15379">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_138675"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_25362"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33263"/>
<oboInOwl:hasRelatedSynonym>Disauerstoff</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>E 948</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>E-948</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>E948</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>O2</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>OXYGEN MOLECULE</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Oxygen</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>[OO]</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>dioxygene</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>molecular oxygen</oboInOwl:hasRelatedSynonym>
<rdfs:label>dioxygen</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_16134 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_16134">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_138675"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_35107"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_37176"/>
<obo:IAO_0000115>An azane that consists of a single nitrogen atom covelently bonded to three hydrogen atoms.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>AMMONIA</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>Ammonia</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>Ammoniak</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>NH3</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>R-717</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>[NH3]</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>ammoniac</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>amoniaco</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>spirit of hartshorn</oboInOwl:hasRelatedSynonym>
<rdfs:label>ammonia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_16189 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_16189">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33482"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_48154"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_79388"/>
<obo:IAO_0000115>A sulfur oxoanion obtained by deprotonation of both OH groups of sulfuric acid.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>Sulfate</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>sulfate</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>SO4(2-)</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>SULFATE ION</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Sulfate anion(2-)</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Sulfate dianion</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Sulfate(2-)</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Sulfuric acid ion(2-)</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>[SO4](2-)</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>sulphate</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>sulphate ion</oboInOwl:hasRelatedSynonym>
<rdfs:label>sulfate</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_16646 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_16646">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_78616"/>
<obo:IAO_0000115>Any member of the class of organooxygen compounds that is a polyhydroxy-aldehyde or -ketone or a lactol resulting from their intramolecular condensation (monosaccharides); substances derived from these by reduction of the carbonyl group (alditols), by oxidation of one or more hydroxy groups to afford the corresponding aldehydes, ketones, or carboxylic acids, or by replacement of one or more hydroxy group(s) by a hydrogen atom; and polymeric products arising by intermolecular acetal formation between two or more such molecules (disaccharides, polysaccharides and oligosaccharides). Carbohydrates contain only carbon, hydrogen and oxygen atoms; prior to any oxidation or reduction, most have the empirical formula Cm(H2O)n. Compounds obtained from carbohydrates by substitution, etc., are known as carbohydrate derivatives and may contain other elements. Cyclitols are generally not regarded as carbohydrates.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>Kohlenhydrat</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Kohlenhydrate</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>a carbohydrate</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>carbohidrato</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>carbohidratos</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>glucide</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>glucides</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>glucido</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>glucidos</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>hydrates de carbone</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>saccharide</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>saccharides</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>saccharidum</oboInOwl:hasRelatedSynonym>
<rdfs:label>carbohydrate</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_167559 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_167559">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_78616"/>
<obo:IAO_0000115>Any oligosaccharide, polysaccharide or their derivatives consisting of monosaccharides or monosaccharide derivatives linked by glycosidic bonds. See also http://www.ontobee.org/ontology/GNO?iri=http://purl.obolibrary.org/obo/GNO_00000001.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>glycans</oboInOwl:hasRelatedSynonym>
<rdfs:label>glycan</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_18154 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_18154">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_16646"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_167559"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33694"/>
<obo:IAO_0000115>A biomacromolecule consisting of large numbers of monosaccharide residues linked glycosidically. This term is commonly used only for those containing more than ten monosaccharide residues.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>Polysaccharide</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>Glycan</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Glycane</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Glykan</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Glykane</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>glycans</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>polisacarido</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>polisacaridos</oboInOwl:hasRelatedSynonym>
<rdfs:label>polysaccharide</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_22563 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_22563">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24870"/>
<obo:IAO_0000115>A monoatomic or polyatomic species having one or more elementary charges of the electron.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>Anion</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>anion</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>Anionen</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>aniones</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>anions</oboInOwl:hasRelatedSynonym>
<rdfs:label>anion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_23367 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_23367">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24431"/>
<obo:IAO_0000115>Any constitutionally or isotopically distinct atom, molecule, ion, ion pair, radical, radical ion, complex, conformer etc., identifiable as a separately distinguishable entity.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>entidad molecular</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>entidades moleculares</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>entite moleculaire</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>molecular entities</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>molekulare Entitaet</oboInOwl:hasRelatedSynonym>
<rdfs:label>molecular entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_24431 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_24431">
<obo:IAO_0000115>A chemical entity is a physical entity of interest in chemistry including molecular entities, parts thereof, and chemical substances.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>chemical entity</oboInOwl:hasExactSynonym>
<rdfs:label>chemical entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_24432 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_24432">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_50906"/>
<obo:IAO_0000115>A role played by the molecular entity or part thereof within a biological context.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>biological function</oboInOwl:hasRelatedSynonym>
<rdfs:label>biological role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_24651 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_24651">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_25806"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33608"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_37577"/>
<obo:IAO_0000115>Hydroxides are chemical compounds containing a hydroxy group or salts containing hydroxide (OH(-)).</obo:IAO_0000115>
<rdfs:label>hydroxides</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_24833 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_24833">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24651"/>
<obo:IAO_0000115>A compound which contains oxygen, at least one other element, and at least one hydrogen bound to oxygen, and which produces a conjugate base by loss of positive hydrogen ion(s) (hydrons).</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>oxacids</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>oxiacids</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>oxo acid</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>oxy-acids</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>oxyacids</oboInOwl:hasRelatedSynonym>
<rdfs:label>oxoacid</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_24834 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_24834">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_22563"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_36914"/>
<oboInOwl:hasRelatedSynonym>inorganic anions</oboInOwl:hasRelatedSynonym>
<rdfs:label>inorganic anion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_24835 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_24835">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<obo:IAO_0000115>A molecular entity that contains no carbon.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>anorganische Verbindungen</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>inorganic compounds</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>inorganic entity</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>inorganic molecular entities</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>inorganics</oboInOwl:hasRelatedSynonym>
<rdfs:label>inorganic molecular entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_24836 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_24836">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24835"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_25741"/>
<oboInOwl:hasRelatedSynonym>inorganic oxides</oboInOwl:hasRelatedSynonym>
<rdfs:label>inorganic oxide</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_24870 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_24870">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<obo:IAO_0000115>A molecular entity having a net electric charge.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>Ion</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>ion</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>Ionen</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>iones</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>ions</oboInOwl:hasRelatedSynonym>
<rdfs:label>ion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_25362 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_25362">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_25367"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33259"/>
<obo:IAO_0000115>A molecule all atoms of which have the same atomic number.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>homoatomic molecule</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>homoatomic molecules</oboInOwl:hasRelatedSynonym>
<rdfs:label>elemental molecule</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_25367 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_25367">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_36357"/>
<obo:IAO_0000115>Any polyatomic entity that is an electrically neutral entity consisting of more than one atom.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>molecule</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>Molekuel</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>molecula</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>molecules</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>neutral molecular compounds</oboInOwl:hasRelatedSynonym>
<rdfs:label>molecule</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_25555 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_25555">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_25585"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33300"/>
<oboInOwl:hasRelatedSynonym>7N</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>N</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Stickstoff</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>azote</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>nitrogen</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>nitrogeno</oboInOwl:hasRelatedSynonym>
<rdfs:label>nitrogen atom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_25585 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_25585">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33250"/>
<oboInOwl:hasRelatedSynonym>Nichtmetall</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Nichtmetalle</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>no metal</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>no metales</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>non-metal</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>non-metaux</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>nonmetal</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>nonmetals</oboInOwl:hasRelatedSynonym>
<rdfs:label>nonmetal atom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_25741 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_25741">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_25806"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_37577"/>
<obo:IAO_0000115>An oxide is a chemical compound of oxygen with other chemical elements.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>oxide</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>oxides</oboInOwl:hasRelatedSynonym>
<rdfs:label>oxide</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_25806 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_25806">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33304"/>
<oboInOwl:hasExactSynonym>oxygen molecular entity</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>oxygen molecular entities</oboInOwl:hasRelatedSynonym>
<rdfs:label>oxygen molecular entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_26833 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_26833">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_25585"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33303"/>
<oboInOwl:hasRelatedSynonym>16S</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Elemental sulfur</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>S</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Schwefel</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>azufre</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>soufre</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>sulfur</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>sulphur</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>theion</oboInOwl:hasRelatedSynonym>
<rdfs:label>sulfur atom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_26835 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_26835">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33304"/>
<oboInOwl:hasExactSynonym>sulfur molecular entity</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>sulfur molecular entities</oboInOwl:hasRelatedSynonym>
<rdfs:label>sulfur molecular entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_26836 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_26836">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33402"/>
<obo:IAO_0000115>A sulfur oxoacid that consists of two oxo and two hydroxy groups joined covalently to a central sulfur atom.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>Sulfuric acid</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>sulfuric acid</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>Acide sulfurique</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Acido sulfurico</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Acidum sulfuricum</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>H2SO4</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Schwefelsaeureloesungen</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>[S(OH)2O2]</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>[SO2(OH)2]</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>sulphuric acid</oboInOwl:hasRelatedSynonym>
<rdfs:label>sulfuric acid</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_27594 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_27594">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_25585"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33306"/>
<oboInOwl:hasRelatedSynonym>6C</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>C</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Carbon</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Kohlenstoff</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>carbon</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>carbone</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>carbonium</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>carbono</oboInOwl:hasRelatedSynonym>
<rdfs:label>carbon atom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_28938 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_28938">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_35106"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_50313"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_60242"/>
<obo:IAO_0000115>An onium cation obtained by protonation of ammonia.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>ammonium</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>Ammonium(1+)</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>NH4(+)</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>NH4+</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>[NH4](+)</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>ammonium cation</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>ammonium ion</oboInOwl:hasRelatedSynonym>
<rdfs:label>ammonium</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33232 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33232">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_50906"/>
<obo:IAO_0000115>Intended use of the molecular entity or part thereof by humans.</obo:IAO_0000115>
<rdfs:label>application</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33242 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33242">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24835"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33692"/>
<oboInOwl:hasRelatedSynonym>inorganic hydrides</oboInOwl:hasRelatedSynonym>
<rdfs:label>inorganic hydride</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33250 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33250">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24431"/>
<obo:IAO_0000115>A chemical entity constituting the smallest component of an element having the chemical properties of the element.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>atome</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>atomo</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>atoms</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>atomus</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>element</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>elements</oboInOwl:hasRelatedSynonym>
<rdfs:label>atom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33259 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33259">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<obo:IAO_0000115>A molecular entity all atoms of which have the same atomic number.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>homoatomic entity</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>homoatomic molecular entities</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>homoatomic molecular entity</oboInOwl:hasRelatedSynonym>
<rdfs:label>elemental molecular entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33262 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33262">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24835"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_25806"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33259"/>
<rdfs:label>elemental oxygen</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33263 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33263">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33262"/>
<rdfs:label>diatomic oxygen</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33273 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33273">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_22563"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_36358"/>
<obo:IAO_0000115>An anion consisting of more than one atom.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>polyatomic anions</oboInOwl:hasRelatedSynonym>
<rdfs:label>polyatomic anion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33284 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33284">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_78295"/>
<obo:IAO_0000115>A nutrient is a food component that an organism uses to survive and grow.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>nutrients</oboInOwl:hasRelatedSynonym>
<rdfs:label>nutrient</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33285 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33285">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_50860"/>
<obo:IAO_0000115>A heteroorganic entity is an organic molecular entity in which carbon atoms or organic groups are bonded directly to one or more heteroatoms.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>heteroorganic entities</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>organoelement compounds</oboInOwl:hasRelatedSynonym>
<rdfs:label>heteroorganic entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33300 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33300">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33560"/>
<obo:IAO_0000115>Any p-block element atom that is in group 15 of the periodic table: nitrogen, phosphorus, arsenic, antimony and bismuth.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>group 15 elements</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>group V elements</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>nitrogenoideos</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>nitrogenoides</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>pnictogene</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>pnictogenes</oboInOwl:hasRelatedSynonym>
<rdfs:label>pnictogen</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33302 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33302">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33675"/>
<obo:IAO_0000115>A p-block molecular entity containing any pnictogen.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>pnictogen molecular entity</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>pnictogen molecular entities</oboInOwl:hasRelatedSynonym>
<rdfs:label>pnictogen molecular entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33303 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33303">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33560"/>
<obo:IAO_0000115>Any p-block element belonging to the group 16 family of the periodic table.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>Chalkogen</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Chalkogene</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>anfigeno</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>anfigenos</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>calcogeno</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>calcogenos</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>chalcogene</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>chalcogenes</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>group 16 elements</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>group VI elements</oboInOwl:hasRelatedSynonym>
<rdfs:label>chalcogen</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33304 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33304">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33675"/>
<obo:IAO_0000115>Any p-block molecular entity containing a chalcogen.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>chalcogen molecular entity</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>chalcogen compounds</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>chalcogen molecular entities</oboInOwl:hasRelatedSynonym>
<rdfs:label>chalcogen molecular entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33306 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33306">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33560"/>
<oboInOwl:hasRelatedSynonym>carbon group element</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>carbon group elements</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>carbonoides</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>cristallogene</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>cristallogenes</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>group IV elements</oboInOwl:hasRelatedSynonym>
<rdfs:label>carbon group element atom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33318 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33318">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33250"/>
<obo:IAO_0000115>An atom belonging to one of the main groups (found in the s- and p- blocks) of the periodic table.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>Hauptgruppenelement</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>Hauptgruppenelemente</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>main group element</oboInOwl:hasRelatedSynonym>
<rdfs:label>main group element atom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33402 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33402">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_26835"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33484"/>
<oboInOwl:hasRelatedSynonym>oxoacids of sulfur</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>sulfur oxoacids</oboInOwl:hasRelatedSynonym>
<rdfs:label>sulfur oxoacid</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33482 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33482">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_26835"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33485"/>
<oboInOwl:hasExactSynonym>sulfur oxoanion</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>oxoanions of sulfur</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>sulfur oxoanions</oboInOwl:hasRelatedSynonym>
<rdfs:label>sulfur oxoanion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33484 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33484">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24833"/>
<oboInOwl:hasExactSynonym>chalcogen oxoacid</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>chalcogen oxoacids</oboInOwl:hasRelatedSynonym>
<rdfs:label>chalcogen oxoacid</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33485 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33485">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_35406"/>
<oboInOwl:hasExactSynonym>chalcogen oxoanion</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>chalcogen oxoanions</oboInOwl:hasRelatedSynonym>
<rdfs:label>chalcogen oxoanion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33560 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33560">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33318"/>
<obo:IAO_0000115>Any main group element atom belonging to the p-block of the periodic table.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>p-block element</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>p-block elements</oboInOwl:hasRelatedSynonym>
<rdfs:label>p-block element atom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33579 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33579">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<obo:IAO_0000115>A molecular entity containing one or more atoms from any of groups 1, 2, 13, 14, 15, 16, 17, and 18 of the periodic table.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>main group compounds</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>main group molecular entities</oboInOwl:hasRelatedSynonym>
<rdfs:label>main group molecular entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33582 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33582">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33675"/>
<oboInOwl:hasExactSynonym>carbon group molecular entity</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>carbon group molecular entities</oboInOwl:hasRelatedSynonym>
<rdfs:label>carbon group molecular entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33595 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33595">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_25367"/>
<obo:IAO_0000115>Any molecule that consists of a series of atoms joined together to form a ring.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>cyclic compounds</oboInOwl:hasRelatedSynonym>
<rdfs:label>cyclic compound</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33608 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33608">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33674"/>
<oboInOwl:hasRelatedSynonym>hydrogen compounds</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>hydrogen molecular entities</oboInOwl:hasRelatedSynonym>
<rdfs:label>hydrogen molecular entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33655 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33655">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33595"/>
<obo:IAO_0000115>A cyclically conjugated molecular entity with a stability (due to delocalization) significantly greater than that of a hypothetical localized structure (e.g. Kekule structure) is said to possess aromatic character.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>aromatics</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>aromatische Verbindungen</oboInOwl:hasRelatedSynonym>
<rdfs:label>aromatic compound</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33674 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33674">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33579"/>
<obo:IAO_0000115>An s-block molecular entity is a molecular entity containing one or more atoms of an s-block element.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>s-block molecular entity</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>s-block compounds</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>s-block molecular entities</oboInOwl:hasRelatedSynonym>
<rdfs:label>s-block molecular entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33675 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33675">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33579"/>
<obo:IAO_0000115>A main group molecular entity that contains one or more atoms of a p-block element.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>p-block compounds</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>p-block molecular entities</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>p-block molecular entitiy</oboInOwl:hasRelatedSynonym>
<rdfs:label>p-block molecular entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33692 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33692">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33608"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_37577"/>
<obo:IAO_0000115>Hydrides are chemical compounds of hydrogen with other chemical elements.</obo:IAO_0000115>
<rdfs:label>hydrides</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33694 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33694">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33839"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_50860"/>
<obo:IAO_0000115>A macromolecule formed by a living organism.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>Biopolymere</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>biomacromolecules</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>biopolymers</oboInOwl:hasRelatedSynonym>
<rdfs:label>biomacromolecule</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33839 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33839">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_36357"/>
<obo:IAO_0000115>A macromolecule is a molecule of high relative molecular mass, the structure of which essentially comprises the multiple repetition of units derived, actually or conceptually, from molecules of low relative molecular mass.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>macromolecules</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>polymer</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>polymer molecule</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>polymers</oboInOwl:hasRelatedSynonym>
<rdfs:label>macromolecule</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_33937 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_33937">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33284"/>
<obo:IAO_0000115>Any nutrient required in large quantities by organisms throughout their life in order to orchestrate a range of physiological functions. Macronutrients are usually chemical elements (carbon, hydrogen, nitrogen, oxygen, phosphorus and sulfur) that humans consume in the largest quantities. Calcium, sodium, magnesium and potassium are sometimes included as macronutrients because they are required in relatively large quantities compared with other vitamins and minerals.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>macronutrients</oboInOwl:hasRelatedSynonym>
<rdfs:label>macronutrient</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_35106 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_35106">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_35881"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_51143"/>
<oboInOwl:hasRelatedSynonym>nitrogen hydrides</oboInOwl:hasRelatedSynonym>
<rdfs:label>nitrogen hydride</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_35107 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_35107">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_35106"/>
<obo:IAO_0000115>Saturated acyclic nitrogen hydrides having the general formula NnHn+2.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>azanes</oboInOwl:hasRelatedSynonym>
<rdfs:label>azane</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_35406 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_35406">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_25741"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33273"/>
<obo:IAO_0000115>An oxoanion is an anion derived from an oxoacid by loss of hydron(s) bound to oxygen.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>oxoanion</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>oxoacid anions</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>oxoanions</oboInOwl:hasRelatedSynonym>
<rdfs:label>oxoanion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_35881 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_35881">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33242"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33302"/>
<oboInOwl:hasExactSynonym>pnictogen hydride</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>pnictogen hydrides</oboInOwl:hasRelatedSynonym>
<rdfs:label>pnictogen hydride</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_36342 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_36342">
<obo:IAO_0000115>A particle smaller than an atom.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>subatomic particles</oboInOwl:hasRelatedSynonym>
<rdfs:label>subatomic particle</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_36357 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_36357">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<obo:IAO_0000115>Any molecular entity consisting of more than one atom.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>polyatomic entities</oboInOwl:hasRelatedSynonym>
<rdfs:label>polyatomic entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_36358 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_36358">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24870"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_36357"/>
<obo:IAO_0000115>An ion consisting of more than one atom.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym>polyatomic ions</oboInOwl:hasRelatedSynonym>
<rdfs:label>polyatomic ion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_36914 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_36914">