-
Notifications
You must be signed in to change notification settings - Fork 0
/
dental_material_ontology.owl
12708 lines (12090 loc) · 851 KB
/
dental_material_ontology.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/ohd/components/dental_material.owl#"
xml:base="http://purl.obolibrary.org/obo/ohd/components/dental_material.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:prov="http://www.w3.org/ns/prov#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:swrl="http://www.w3.org/2003/11/swrl#"
xmlns:chebi="http://purl.obolibrary.org/obo/chebi/"
xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/ohd/components/dental_material.owl"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115">
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/envo_import.owl"/>
<rdfs:label>definition</rdfs:label>
</owl:AnnotationProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>
<owl:annotatedTarget rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>
<owl:annotatedTarget rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/envo_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<owl:annotatedTarget>definition</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<owl:annotatedTarget>definition</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/envo_import.owl"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/IAO_0000116 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000116">
<rdfs:label>editor note</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000118 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118">
<rdfs:label>alternative term</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000119 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119">
<rdfs:label>definition source</rdfs:label>
<rdfs:label xml:lang="en">definition source</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/chebi/charge -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi/charge"/>
<!-- http://purl.obolibrary.org/obo/chebi/formula -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi/formula"/>
<!-- http://purl.obolibrary.org/obo/chebi/inchi -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi/inchi"/>
<!-- http://purl.obolibrary.org/obo/chebi/inchikey -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi/inchikey"/>
<!-- http://purl.obolibrary.org/obo/chebi/mass -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi/mass"/>
<!-- http://purl.obolibrary.org/obo/chebi/monoisotopicmass -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi/monoisotopicmass"/>
<!-- http://purl.obolibrary.org/obo/chebi/smiles -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/chebi/smiles"/>
<!-- http://purl.org/dc/terms/contributor -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/contributor"/>
<!-- http://purl.org/dc/terms/created -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/created">
<rdfs:label>date created</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasAlternativeId -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasAlternativeId">
<rdfs:label>has_alternative_id</rdfs:label>
</owl:AnnotationProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasAlternativeId"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<owl:annotatedTarget>has_alternative_id</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<!-- http://www.geneontology.org/formats/oboInOwl#hasDbXref -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasDbXref">
<rdfs:label>database_cross_reference</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasExactSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym">
<rdfs:label>has_exact_synonym</rdfs:label>
</owl:AnnotationProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<owl:annotatedTarget>has_exact_synonym</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<owl:annotatedTarget>has_exact_synonym</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/envo_import.owl"/>
</owl:Axiom>
<!-- http://www.geneontology.org/formats/oboInOwl#hasOBONamespace -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasOBONamespace">
<rdfs:label>has_obo_namespace</rdfs:label>
</owl:AnnotationProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasOBONamespace"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<owl:annotatedTarget>has_obo_namespace</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<!-- http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym">
<rdfs:label>has_related_synonym</rdfs:label>
</owl:AnnotationProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<owl:annotatedTarget>has_related_synonym</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<!-- http://www.geneontology.org/formats/oboInOwl#hasSynonymType -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasSynonymType"/>
<!-- http://www.geneontology.org/formats/oboInOwl#id -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#id"/>
<!-- http://www.geneontology.org/formats/oboInOwl#inSubset -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#inSubset">
<rdfs:label>in_subset</rdfs:label>
</owl:AnnotationProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://www.geneontology.org/formats/oboInOwl#inSubset"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<owl:annotatedTarget>in_subset</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<!-- http://www.geneontology.org/formats/oboInOwl#source -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#source"/>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label">
<rdfs:label>label</rdfs:label>
<rdfs:label xml:lang="en">rdfs:label</rdfs:label>
</owl:AnnotationProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>
<owl:annotatedTarget rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>
<owl:annotatedTarget rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/envo_import.owl"/>
</owl:Axiom>
<!-- http://www.w3.org/ns/prov#wasDerivedFrom -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#wasDerivedFrom"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000051 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000051">
<obo:IAO_0000115 xml:lang="en">a core relation that holds between a whole and its part</obo:IAO_0000115>
<rdfs:label xml:lang="en">has part</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000053 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000053">
<rdfs:label xml:lang="en">is bearer of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0000087 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000087">
<obo:IAO_0000115 xml:lang="en">a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence</obo:IAO_0000115>
<rdfs:label xml:lang="en">has role</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002013 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002013">
<obo:IAO_0000115>A 'has regulatory component activity' B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.</obo:IAO_0000115>
<rdfs:label>has regulatory component activity</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002014 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002014">
<obo:IAO_0000115>A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.</obo:IAO_0000115>
<rdfs:label>has negative regulatory component activity</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002015 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002015">
<obo:IAO_0000115>A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.</obo:IAO_0000115>
<rdfs:label>has positive regulatory component activity</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002025 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002025">
<obo:IAO_0000115>A 'has effector activity' B if A and B are GO molecular functions (GO_0003674), A 'has component activity' B and B is the effector (output function) of B. Each compound function has only one effector activity.</obo:IAO_0000115>
<rdfs:label>has effector activity</rdfs:label>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/RO_0002025"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A 'has effector activity' B if A and B are GO molecular functions (GO_0003674), A 'has component activity' B and B is the effector (output function) of B. Each compound function has only one effector activity.</owl:annotatedTarget>
<oboInOwl:hasDbXref>GOC:dos</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_0002131 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002131">
<obo:IAO_0000115>x overlaps y if and only if there exists some z such that x has part z and z part of y</obo:IAO_0000115>
<rdfs:label xml:lang="en">overlaps</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002233 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002233">
<obo:IAO_0000115>p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.</obo:IAO_0000115>
<rdfs:label xml:lang="en">has input</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002333 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002333">
<obo:IAO_0000115>inverse of enables</obo:IAO_0000115>
<rdfs:label xml:lang="en">enabled by</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002352 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002352">
<obo:IAO_0000115>inverse of has input</obo:IAO_0000115>
<rdfs:label xml:lang="en">input of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002404 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002404">
<obo:IAO_0000115>inverse of upstream of</obo:IAO_0000115>
<rdfs:label xml:lang="en">causally downstream of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002411 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002411">
<obo:IAO_0000115>p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.</obo:IAO_0000115>
<rdfs:label xml:lang="en">causally upstream of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002578 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002578">
<obo:IAO_0000115>p directly regulates q iff p is immediately causally upstream of q and p regulates q.</obo:IAO_0000115>
<rdfs:label>directly regulates</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002629 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002629">
<obo:IAO_0000115>p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.</obo:IAO_0000115>
<rdfs:label>directly positively regulates</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002630 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002630">
<obo:IAO_0000115>p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.</obo:IAO_0000115>
<rdfs:label>directly negatively regulates</rdfs:label>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/CHEBI_131189 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_131189">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_60004"/>
<obo:IAO_0000115>A hard, amorphous, brittle, inorganic, usually transparent, polymerous silicate of basic oxides, usually potassium or sodium.</obo:IAO_0000115>
<oboInOwl:hasDbXref>Wikipedia:Glass</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:131189</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
<rdfs:label>glass</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_131189"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>
<owl:annotatedTarget rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_131189"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subClassOf"/>
<owl:annotatedTarget rdf:resource="http://purl.obolibrary.org/obo/CHEBI_60004"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_131189"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A hard, amorphous, brittle, inorganic, usually transparent, polymerous silicate of basic oxides, usually potassium or sodium.</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_131189"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasDbXref"/>
<owl:annotatedTarget>Wikipedia:Glass</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_131189"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasOBONamespace"/>
<owl:annotatedTarget>chebi_ontology</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_131189"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#id"/>
<owl:annotatedTarget>CHEBI:131189</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_131189"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#inSubset"/>
<owl:annotatedTarget rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_131189"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<owl:annotatedTarget>glass</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHEBI_140503 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_140503">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_48730"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_60004"/>
<obo:IAO_0000115>An aluminosilicate soft white mineral named after the hill in China (Kao-ling) from which it was mined for centuries. In its natural state kaolin is a white, soft powder consisting principally of the mineral kaolinite, and varying amounts of other minerals such as muscovite, quartz, feldspar, and anatase. It is used in the manufacture of china and porcelain and also widely used in the production of paper, rubber, paint, drying agents, and many other products.</obo:IAO_0000115>
<chebi:charge>0</chebi:charge>
<chebi:formula>Al2H4O9Si2</chebi:formula>
<chebi:inchi>InChI=1S/2Al.O5Si2.2H2O.2O/c;;1-6(2)5-7(3)4;;;;/h;;;2*1H2;;/q2*+1;-2;;;;</chebi:inchi>
<chebi:inchikey>NLYAJNPCOHFWQQ-UHFFFAOYSA-N</chebi:inchikey>
<chebi:mass>258.160</chebi:mass>
<chebi:monoisotopicmass>257.90246</chebi:monoisotopicmass>
<chebi:smiles>[Al](O[Si](O[Si](O[Al]=O)=O)=O)=O.O.O</chebi:smiles>
<oboInOwl:hasDbXref>CAS:1332-58-7</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>DrugBank:DB01575</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>KEGG:D03244</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>PMID:32322315</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>PPDB:1306</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Reaxys:11323021</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>VSDB:1306</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:hasRelatedSynonym>Bolus alba</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>China clay</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>argilla</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>porcelain clay</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>white bole</oboInOwl:hasRelatedSynonym>
<oboInOwl:id>CHEBI:140503</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
<rdfs:label>kaolin</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>
<owl:annotatedTarget rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subClassOf"/>
<owl:annotatedTarget rdf:resource="http://purl.obolibrary.org/obo/CHEBI_48730"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subClassOf"/>
<owl:annotatedTarget rdf:resource="http://purl.obolibrary.org/obo/CHEBI_60004"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>An aluminosilicate soft white mineral named after the hill in China (Kao-ling) from which it was mined for centuries. In its natural state kaolin is a white, soft powder consisting principally of the mineral kaolinite, and varying amounts of other minerals such as muscovite, quartz, feldspar, and anatase. It is used in the manufacture of china and porcelain and also widely used in the production of paper, rubber, paint, drying agents, and many other products.</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/chebi/charge"/>
<owl:annotatedTarget>0</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/chebi/formula"/>
<owl:annotatedTarget>Al2H4O9Si2</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/chebi/inchi"/>
<owl:annotatedTarget>InChI=1S/2Al.O5Si2.2H2O.2O/c;;1-6(2)5-7(3)4;;;;/h;;;2*1H2;;/q2*+1;-2;;;;</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/chebi/inchikey"/>
<owl:annotatedTarget>NLYAJNPCOHFWQQ-UHFFFAOYSA-N</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/chebi/mass"/>
<owl:annotatedTarget>258.160</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/chebi/monoisotopicmass"/>
<owl:annotatedTarget>257.90246</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/chebi/smiles"/>
<owl:annotatedTarget>[Al](O[Si](O[Si](O[Al]=O)=O)=O)=O.O.O</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasDbXref"/>
<owl:annotatedTarget>CAS:1332-58-7</owl:annotatedTarget>
<oboInOwl:source>ChemIDplus</oboInOwl:source>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasDbXref"/>
<owl:annotatedTarget>CAS:1332-58-7</owl:annotatedTarget>
<oboInOwl:source>NIST Chemistry WebBook</oboInOwl:source>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasDbXref"/>
<owl:annotatedTarget>DrugBank:DB01575</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasDbXref"/>
<owl:annotatedTarget>KEGG:D03244</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasDbXref"/>
<owl:annotatedTarget>PMID:32322315</owl:annotatedTarget>
<oboInOwl:source>Europe PMC</oboInOwl:source>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasDbXref"/>
<owl:annotatedTarget>PPDB:1306</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasDbXref"/>
<owl:annotatedTarget>Reaxys:11323021</owl:annotatedTarget>
<oboInOwl:source>Reaxys</oboInOwl:source>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasDbXref"/>
<owl:annotatedTarget>VSDB:1306</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasOBONamespace"/>
<owl:annotatedTarget>chebi_ontology</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget>Bolus alba</owl:annotatedTarget>
<oboInOwl:hasDbXref>ChemIDplus</oboInOwl:hasDbXref>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget>China clay</owl:annotatedTarget>
<oboInOwl:hasDbXref>ChemIDplus</oboInOwl:hasDbXref>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget>argilla</owl:annotatedTarget>
<oboInOwl:hasDbXref>ChemIDplus</oboInOwl:hasDbXref>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget>porcelain clay</owl:annotatedTarget>
<oboInOwl:hasDbXref>ChemIDplus</oboInOwl:hasDbXref>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget>white bole</owl:annotatedTarget>
<oboInOwl:hasDbXref>ChemIDplus</oboInOwl:hasDbXref>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#id"/>
<owl:annotatedTarget>CHEBI:140503</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#inSubset"/>
<owl:annotatedTarget rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_140503"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<owl:annotatedTarget>kaolin</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHEBI_190496 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_190496">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24870"/>
<chebi:charge>+3</chebi:charge>
<chebi:formula>Ti</chebi:formula>
<chebi:inchi>InChI=1S/Ti/q+3</chebi:inchi>
<chebi:inchikey>CMWCOKOTCLFJOP-UHFFFAOYSA-N</chebi:inchikey>
<chebi:mass>47.865</chebi:mass>
<chebi:monoisotopicmass>47.94630</chebi:monoisotopicmass>
<chebi:smiles>[Ti+3]</chebi:smiles>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:190496</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#2_STAR"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
<rdfs:label>titanium(3+)</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_190496"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>
<owl:annotatedTarget rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_190496"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subClassOf"/>
<owl:annotatedTarget rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24870"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_190496"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/chebi/charge"/>
<owl:annotatedTarget>+3</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_190496"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/chebi/formula"/>
<owl:annotatedTarget>Ti</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_190496"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/chebi/inchi"/>
<owl:annotatedTarget>InChI=1S/Ti/q+3</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_190496"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/chebi/inchikey"/>
<owl:annotatedTarget>CMWCOKOTCLFJOP-UHFFFAOYSA-N</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_190496"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/chebi/mass"/>
<owl:annotatedTarget>47.865</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_190496"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/chebi/monoisotopicmass"/>
<owl:annotatedTarget>47.94630</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_190496"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/chebi/smiles"/>
<owl:annotatedTarget>[Ti+3]</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_190496"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasOBONamespace"/>
<owl:annotatedTarget>chebi_ontology</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_190496"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#id"/>
<owl:annotatedTarget>CHEBI:190496</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_190496"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#inSubset"/>
<owl:annotatedTarget rdf:resource="http://purl.obolibrary.org/obo/chebi#2_STAR"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_190496"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<owl:annotatedTarget>titanium(3+)</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHEBI_22712 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_22712">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33598"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33659"/>
<obo:IAO_0000115>Any benzenoid aromatic compound consisting of the benzene skeleton and its substituted derivatives.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:22712</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
<rdfs:label>benzenes</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_22712"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>
<owl:annotatedTarget rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_22712"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subClassOf"/>
<owl:annotatedTarget rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33598"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_22712"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subClassOf"/>
<owl:annotatedTarget rdf:resource="http://purl.obolibrary.org/obo/CHEBI_33659"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_22712"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Any benzenoid aromatic compound consisting of the benzene skeleton and its substituted derivatives.</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_22712"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasOBONamespace"/>
<owl:annotatedTarget>chebi_ontology</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_22712"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#id"/>
<owl:annotatedTarget>CHEBI:22712</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_22712"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#inSubset"/>
<owl:annotatedTarget rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_22712"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<owl:annotatedTarget>benzenes</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<!-- 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:hasExactSynonym>molecular entity</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<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>
<oboInOwl:id>CHEBI:23367</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
<rdfs:label>molecular entity</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>
<owl:annotatedTarget rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subClassOf"/>
<owl:annotatedTarget rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24431"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Any constitutionally or isotopically distinct atom, molecule, ion, ion pair, radical, radical ion, complex, conformer etc., identifiable as a separately distinguishable entity.</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>molecular entity</owl:annotatedTarget>
<oboInOwl:hasDbXref>IUPAC</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/chebi#IUPAC_NAME"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasOBONamespace"/>
<owl:annotatedTarget>chebi_ontology</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget>entidad molecular</owl:annotatedTarget>
<oboInOwl:hasDbXref>IUPAC</oboInOwl:hasDbXref>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget>entidades moleculares</owl:annotatedTarget>
<oboInOwl:hasDbXref>IUPAC</oboInOwl:hasDbXref>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget>entite moleculaire</owl:annotatedTarget>
<oboInOwl:hasDbXref>IUPAC</oboInOwl:hasDbXref>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget>molecular entities</owl:annotatedTarget>
<oboInOwl:hasDbXref>IUPAC</oboInOwl:hasDbXref>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget>molekulare Entitaet</owl:annotatedTarget>
<oboInOwl:hasDbXref>ChEBI</oboInOwl:hasDbXref>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#id"/>
<owl:annotatedTarget>CHEBI:23367</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#inSubset"/>
<owl:annotatedTarget rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_23367"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
<owl:annotatedTarget>molecular entity</owl:annotatedTarget>
<prov:wasDerivedFrom rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CHEBI_24431 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_24431">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<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>
<oboInOwl:hasOBONamespace>chebi_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id>CHEBI:24431</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/chebi#3_STAR"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/ohd/imports/chebi_import.owl"/>
<rdfs:label>chemical entity</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CHEBI_24431"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>