-
Notifications
You must be signed in to change notification settings - Fork 40
/
cocaine-metabolism.owl
1015 lines (879 loc) · 67.8 KB
/
cocaine-metabolism.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"?>
<!DOCTYPE rdf:RDF [
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY obo "http://purl.obolibrary.org/obo/" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY chebi "http://purl.obolibrary.org/obo/chebi#" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
<!ENTITY oboInOwl "http://www.geneontology.org/formats/oboInOwl#" >
<!ENTITY cocaine-metabolism "http://purl.obolibrary.org/obo/go/tutorial/chebi-conjugate-base/cocaine-metabolism#" >
]>
<rdf:RDF xmlns="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism.owl#"
xml:base="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism.owl"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:chebi="&obo;chebi#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cocaine-metabolism="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism.owl">
<oboInOwl:hasOBOFormatVersion rdf:datatype="&xsd;string">1.2</oboInOwl:hasOBOFormatVersion>
<owl:imports rdf:resource="&obo;ro.owl"/>
<owl:imports rdf:resource="&obo;go/extensions/bio-chebi.owl"/>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<owl:AnnotationProperty rdf:about="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_generic">
<rdfs:comment rdf:datatype="&xsd;string">Generic GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;inSubset">
<rdfs:label rdf:datatype="&xsd;string">in_subset</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;hasScope">
<rdfs:label rdf:datatype="&xsd;string">has_scope</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;hasOBOFormatVersion">
<rdfs:label rdf:datatype="&xsd;string">has_obo_format_version</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;IAO_0000115">
<rdfs:label rdf:datatype="&xsd;string">definition</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;hasDbXref">
<rdfs:label rdf:datatype="&xsd;string">database_cross_reference</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;hasAlternativeId">
<rdfs:label rdf:datatype="&xsd;string">has_alternative_id</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;hasOBONamespace">
<rdfs:label rdf:datatype="&xsd;string">has_obo_namespace</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok">
<rdfs:comment rdf:datatype="&xsd;string">Prokaryotic GO subset</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_plant">
<rdfs:comment rdf:datatype="&xsd;string">Plant GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;SubsetProperty">
<rdfs:label rdf:datatype="&xsd;string">subset_property</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;id"/>
<owl:AnnotationProperty rdf:about="&oboInOwl;SynonymTypeProperty">
<rdfs:label rdf:datatype="&xsd;string">synonym_type_property</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&rdfs;label"/>
<owl:AnnotationProperty rdf:about="&oboInOwl;hasExactSynonym">
<rdfs:label rdf:datatype="&xsd;string">has_exact_synonym</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&rdfs;comment"/>
<owl:AnnotationProperty rdf:about="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#high_level_annotation_qc">
<rdfs:comment rdf:datatype="&xsd;string">High-level terms not to be used for direct annotation</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;hasRelatedSynonym">
<rdfs:label rdf:datatype="&xsd;string">has_related_synonym</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_aspergillus">
<rdfs:comment rdf:datatype="&xsd;string">Aspergillus GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#mf_needs_review">
<rdfs:comment rdf:datatype="&xsd;string">Catalytic activity terms in need of attention</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_pombe">
<rdfs:comment rdf:datatype="&xsd;string">Fission yeast GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#systematic_synonym">
<rdfs:label rdf:datatype="&xsd;string">Systematic synonym</rdfs:label>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SynonymTypeProperty"/>
<oboInOwl:hasScope rdf:resource="&oboInOwl;hasExactSynonym"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_yeast">
<rdfs:comment rdf:datatype="&xsd;string">Yeast GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_pir">
<rdfs:comment rdf:datatype="&xsd;string">PIR GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;hasNarrowSynonym">
<rdfs:label rdf:datatype="&xsd;string">has_narrow_synonym</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_candida">
<rdfs:comment rdf:datatype="&xsd;string">Candida GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;hasBroadSynonym">
<rdfs:label rdf:datatype="&xsd;string">has_broad_synonym</rdfs:label>
</owl:AnnotationProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/GO_0006725 -->
<owl:Class rdf:about="&obo;GO_0006725">
<rdfs:label rdf:datatype="&xsd;string">cellular aromatic compound metabolic process</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0008152"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000057"/>
<owl:someValuesFrom rdf:resource="&obo;CHEBI_33655"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0006725</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways involving aromatic compounds, any organic compound characterized by one or more planar rings, each of which contains conjugated double bonds and delocalized pi electrons, as carried out by individual cells.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">aromatic compound metabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasNarrowSynonym rdf:datatype="&xsd;string">aromatic hydrocarbon metabolic process</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym rdf:datatype="&xsd;string">aromatic hydrocarbon metabolism</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:inSubset rdf:resource="&obo;go#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="&obo;go#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:ai</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0198506732</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways involving aromatic compounds, any organic compound characterized by one or more planar rings, each of which contains conjugated double bonds and delocalized pi electrons, as carried out by individual cells.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0006725"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0006807 -->
<owl:Class rdf:about="&obo;GO_0006807">
<rdfs:label rdf:datatype="&xsd;string">nitrogen compound metabolic process</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0008152"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000057"/>
<owl:someValuesFrom rdf:resource="&obo;CHEBI_51143"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0006807</oboInOwl:id>
<rdfs:comment rdf:datatype="&xsd;string">Note that amino acid and derivative metabolism should not be annotated here. Instead use the 'amino acid and derivative metabolism' node.</rdfs:comment>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways involving organic or inorganic compounds that contain nitrogen, including (but not limited to) nitrogen fixation, nitrification, denitrification, assimilatory/dissimilatory nitrate reduction and the interconversion of nitrogenous organic matter and ammonium.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">nitrogen compound metabolism</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">CHEBI:51143</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:go_curators</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:jl</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0198506732</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways involving organic or inorganic compounds that contain nitrogen, including (but not limited to) nitrogen fixation, nitrification, denitrification, assimilatory/dissimilatory nitrate reduction and the interconversion of nitrogenous organic matter and ammonium.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0006807"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0008150 -->
<owl:Class rdf:about="&obo;GO_0008150">
<rdfs:label rdf:datatype="&xsd;string">biological_process</rdfs:label>
<obo:IAO_0000115 rdf:datatype="&xsd;string">Any process specifically pertinent to the functioning of integrated living units: cells, tissues, organs, and organisms. A process is a collection of molecular events with a defined beginning and end.</obo:IAO_0000115>
<oboInOwl:hasAlternativeId rdf:datatype="&xsd;string">GO:0000004</oboInOwl:hasAlternativeId>
<oboInOwl:hasAlternativeId rdf:datatype="&xsd;string">GO:0007582</oboInOwl:hasAlternativeId>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0008150</oboInOwl:id>
<rdfs:comment rdf:datatype="&xsd;string">Note that, in addition to forming the root of the biological process ontology, this term is recommended for use for the annotation of gene products whose biological process is unknown. Note that when this term is used for annotation, it indicates that no information was available about the biological process of the gene product annotated as of the date the annotation was made; the evidence code ND, no data, is used to indicate this.</rdfs:comment>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Wikipedia:Biological_process</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">biological process</oboInOwl:hasExactSynonym>
<oboInOwl:hasNarrowSynonym rdf:datatype="&xsd;string">biological process unknown</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">physiological process</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_aspergillus"/>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_candida"/>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_generic"/>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_plant"/>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_pombe"/>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_yeast"/>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="&xsd;string">Any process specifically pertinent to the functioning of integrated living units: cells, tissues, organs, and organisms. A process is a collection of molecular events with a defined beginning and end.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:go_curators</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:isa_complete</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="&obo;GO_0008150"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0008152 -->
<owl:Class rdf:about="&obo;GO_0008152">
<rdfs:label rdf:datatype="&xsd;string">metabolic process</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;GO_0008150"/>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0008152</oboInOwl:id>
<rdfs:comment rdf:datatype="&xsd;string">Note that metabolic processes do not include single functions or processes such as protein-protein interactions, protein-nucleic acids, nor receptor-ligand interactions.</rdfs:comment>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways, including anabolism and catabolism, by which living organisms transform chemical substances. Metabolic processes typically transform small molecules, but also include macromolecular processes such as DNA repair and replication, and protein synthesis and degradation.</obo:IAO_0000115>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Wikipedia:Metabolism</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasNarrowSynonym rdf:datatype="&xsd;string">metabolic process resulting in cell growth</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">metabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasNarrowSynonym rdf:datatype="&xsd;string">metabolism resulting in cell growth</oboInOwl:hasNarrowSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_plant"/>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:go_curators</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0198547684</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways, including anabolism and catabolism, by which living organisms transform chemical substances. Metabolic processes typically transform small molecules, but also include macromolecular processes such as DNA repair and replication, and protein synthesis and degradation.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0008152"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0009056 -->
<owl:Class rdf:about="&obo;GO_0009056">
<rdfs:label rdf:datatype="&xsd;string">catabolic process</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;GO_0008152"/>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0009056</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of substances, including the breakdown of carbon compounds with the liberation of energy for use by the cell or organism.</obo:IAO_0000115>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Wikipedia:Catabolism</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">breakdown</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">catabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">degradation</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_generic"/>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_plant"/>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0198547684</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of substances, including the breakdown of carbon compounds with the liberation of energy for use by the cell or organism.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0009056"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0009058 -->
<owl:Class rdf:about="&obo;GO_0009058">
<rdfs:label rdf:datatype="&xsd;string">biosynthetic process</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;GO_0008152"/>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0009058</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the formation of substances; typically the energy-requiring part of metabolism in which simpler substances are transformed into more complex ones.</obo:IAO_0000115>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Wikipedia:Anabolism</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">anabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">biosynthesis</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">formation</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">synthesis</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_generic"/>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_plant"/>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:curators</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0198547684</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the formation of substances; typically the energy-requiring part of metabolism in which simpler substances are transformed into more complex ones.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0009058"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0009698 -->
<owl:Class rdf:about="&obo;GO_0009698">
<rdfs:label rdf:datatype="&xsd;string">phenylpropanoid metabolic process</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0008152"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000057"/>
<owl:someValuesFrom rdf:resource="&obo;CHEBI_26004"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0009698</oboInOwl:id>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">MetaCyc:PWY1F-467</oboInOwl:hasDbXref>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways involving aromatic derivatives of trans-cinnamic acid.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">phenylpropanoid metabolism</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:jl</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways involving aromatic derivatives of trans-cinnamic acid.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0009698"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0009699 -->
<owl:Class rdf:about="&obo;GO_0009699">
<rdfs:label rdf:datatype="&xsd;string">phenylpropanoid biosynthetic process</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0009058"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0002234"/>
<owl:someValuesFrom rdf:resource="&obo;CHEBI_26004"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0009699</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the formation of aromatic derivatives of trans-cinnamic acid.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">phenylpropanoid anabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">phenylpropanoid biosynthesis</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">phenylpropanoid formation</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">phenylpropanoid synthesis</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:jl</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the formation of aromatic derivatives of trans-cinnamic acid.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0009699"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0009710 -->
<owl:Class rdf:about="&obo;GO_0009710">
<rdfs:label rdf:datatype="&xsd;string">tropane alkaloid biosynthetic process</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0009058"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0002234"/>
<owl:someValuesFrom rdf:resource="&obo;CHEBI_37332"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0009710</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of tropane alkaloids, compounds containing the 8-methyl-8-azabicyclo(3.2.1)octane ring system.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">tropane alkaloid anabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">tropane alkaloid biosynthesis</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">tropane alkaloid formation</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">tropane alkaloid synthesis</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:ai</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0198506732</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of tropane alkaloids, compounds containing the 8-methyl-8-azabicyclo(3.2.1)octane ring system.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0009710"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0009820 -->
<owl:Class rdf:about="&obo;GO_0009820">
<rdfs:label rdf:datatype="&xsd;string">alkaloid metabolic process</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0008152"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000057"/>
<owl:someValuesFrom rdf:resource="&obo;CHEBI_22315"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0009820</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways involving alkaloids, nitrogen containing natural products which are not otherwise classified as peptides, nonprotein amino acids, amines, cyanogenic glycosides, glucosinolates, cofactors, phytohormones or primary metabolites (such as purine or pyrimidine bases).</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">alkaloid metabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:lr</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0122146743</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways involving alkaloids, nitrogen containing natural products which are not otherwise classified as peptides, nonprotein amino acids, amines, cyanogenic glycosides, glucosinolates, cofactors, phytohormones or primary metabolites (such as purine or pyrimidine bases).</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0009820"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0009821 -->
<owl:Class rdf:about="&obo;GO_0009821">
<rdfs:label rdf:datatype="&xsd;string">alkaloid biosynthetic process</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0009058"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0002234"/>
<owl:someValuesFrom rdf:resource="&obo;CHEBI_22315"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0009821</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the formation of alkaloids, nitrogen-containing natural products which are not otherwise classified as nonprotein amino acids, amines, peptides, amines, cyanogenic glycosides, glucosinolates, cofactors, phytohormones, or primary metabolite (such as purine or pyrimidine bases).</obo:IAO_0000115>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">UM-BBD_enzymeID:e0711</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">alkaloid anabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">alkaloid biosynthesis</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">alkaloid formation</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">alkaloid synthesis</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">EC:1.1.1.51</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:lr</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0122146743</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the formation of alkaloids, nitrogen-containing natural products which are not otherwise classified as nonprotein amino acids, amines, peptides, amines, cyanogenic glycosides, glucosinolates, cofactors, phytohormones, or primary metabolite (such as purine or pyrimidine bases).</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0009821"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0009822 -->
<owl:Class rdf:about="&obo;GO_0009822">
<rdfs:label rdf:datatype="&xsd;string">alkaloid catabolic process</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0009056"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0002233"/>
<owl:someValuesFrom rdf:resource="&obo;CHEBI_22315"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0009822</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of alkaloids, nitrogen containing natural products not otherwise classified as peptides, nonprotein amino acids, amines, cyanogenic glycosides, glucosinolates, cofactors, phytohormones or primary metabolites (such as purine or pyrimidine bases).</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">alkaloid breakdown</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">alkaloid catabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">alkaloid degradation</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:lr</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:01221146743</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of alkaloids, nitrogen containing natural products not otherwise classified as peptides, nonprotein amino acids, amines, cyanogenic glycosides, glucosinolates, cofactors, phytohormones or primary metabolites (such as purine or pyrimidine bases).</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0009822"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0017144 -->
<owl:Class rdf:about="&obo;GO_0017144">
<rdfs:label rdf:datatype="&xsd;string">drug metabolic process</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0008152"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000057"/>
<owl:someValuesFrom>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;chebi#has_role"/>
<owl:someValuesFrom rdf:resource="&obo;CHEBI_23888"/>
</owl:Restriction>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0017144</oboInOwl:id>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_100188</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_106588</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_109592</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_110347</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_163</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_54870</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_85142</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_88376</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_92052</oboInOwl:hasDbXref>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways involving a drug, a substance used in the diagnosis, treatment or prevention of a disease; as used here antibiotic substances (see antibiotic metabolism) are considered to be drugs, even if not used in medical or veterinary practice.</obo:IAO_0000115>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Wikipedia:Drug_metabolism</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">drug metabolism</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:cab2</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways involving a drug, a substance used in the diagnosis, treatment or prevention of a disease; as used here antibiotic substances (see antibiotic metabolism) are considered to be drugs, even if not used in medical or veterinary practice.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0017144"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0018130 -->
<owl:Class rdf:about="&obo;GO_0018130">
<rdfs:label rdf:datatype="&xsd;string">heterocycle biosynthetic process</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0009058"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0002234"/>
<owl:someValuesFrom rdf:resource="&obo;CHEBI_5686"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0018130</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the formation of heterocyclic compounds, those with a cyclic molecular structure and at least two different atoms in the ring (or rings).</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">heterocycle anabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">heterocycle biosynthesis</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">heterocycle formation</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">heterocycle synthesis</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0198547684</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the formation of heterocyclic compounds, those with a cyclic molecular structure and at least two different atoms in the ring (or rings).</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0018130"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0019438 -->
<owl:Class rdf:about="&obo;GO_0019438">
<rdfs:label rdf:datatype="&xsd;string">aromatic compound biosynthetic process</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0009058"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0002234"/>
<owl:someValuesFrom rdf:resource="&obo;CHEBI_33655"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0019438</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the formation of aromatic compounds, any substance containing an aromatic carbon ring.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">aromatic compound anabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">aromatic compound biosynthesis</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">aromatic compound formation</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">aromatic compound synthesis</oboInOwl:hasExactSynonym>
<oboInOwl:hasNarrowSynonym rdf:datatype="&xsd;string">aromatic hydrocarbon biosynthesis</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym rdf:datatype="&xsd;string">aromatic hydrocarbon biosynthetic process</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:inSubset rdf:resource="&obo;go#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:ai</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the formation of aromatic compounds, any substance containing an aromatic carbon ring.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0019438"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0019439 -->
<owl:Class rdf:about="&obo;GO_0019439">
<rdfs:label rdf:datatype="&xsd;string">aromatic compound catabolic process</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0009056"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0002233"/>
<owl:someValuesFrom rdf:resource="&obo;CHEBI_33655"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0019439</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of aromatic compounds, any substance containing an aromatic carbon ring.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">aromatic compound breakdown</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">aromatic compound catabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">aromatic compound degradation</oboInOwl:hasExactSynonym>
<oboInOwl:hasNarrowSynonym rdf:datatype="&xsd;string">aromatic hydrocarbon catabolic process</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym rdf:datatype="&xsd;string">aromatic hydrocarbon catabolism</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:inSubset rdf:resource="&obo;go#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:ai</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of aromatic compounds, any substance containing an aromatic carbon ring.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0019439"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0019628 -->
<owl:Class rdf:about="&obo;GO_0019628">
<rdfs:label rdf:datatype="&xsd;string">urate catabolic process</rdfs:label>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0019628</oboInOwl:id>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">MetaCyc:P165-PWY</oboInOwl:hasDbXref>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of urate, the anion of uric acid, 2,6,8-trioxypurine.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">urate breakdown</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">urate catabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">urate degradation</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">uric acid catabolic process</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0198506732</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of urate, the anion of uric acid, 2,6,8-trioxypurine.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0019628"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0033496 -->
<owl:Class rdf:about="&obo;GO_0033496">
<rdfs:label rdf:datatype="&xsd;string">sinapate metabolic process</rdfs:label>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0033496</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways involving sinapate, (2E)-3-(4-hydroxy-3,5-dimethoxyphenyl)prop-2-enoate.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">sinapate metabolism</oboInOwl:hasExactSynonym>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">CHEBI:30023</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:mah</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways involving sinapate, (2E)-3-(4-hydroxy-3,5-dimethoxyphenyl)prop-2-enoate.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0033496"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0033497 -->
<owl:Class rdf:about="&obo;GO_0033497">
<rdfs:label rdf:datatype="&xsd;string">sinapate biosynthetic process</rdfs:label>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0033497</oboInOwl:id>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">MetaCyc:PWY-5168</oboInOwl:hasDbXref>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the formation of sinapate, (2E)-3-(4-hydroxy-3,5-dimethoxyphenyl)prop-2-enoate.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">sinapate anabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">sinapate biosynthesis</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">sinapate formation</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">sinapate synthesis</oboInOwl:hasExactSynonym>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">CHEBI:30023</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:mah</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the formation of sinapate, (2E)-3-(4-hydroxy-3,5-dimethoxyphenyl)prop-2-enoate.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0033497"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0034418 -->
<owl:Class rdf:about="&obo;GO_0034418">
<rdfs:label rdf:datatype="&xsd;string">urate biosynthetic process</rdfs:label>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0034418</oboInOwl:id>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_115590</oboInOwl:hasDbXref>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the formation of urate, the anion of uric acid, 2,6,8-trioxypurine.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasRelatedSynonym rdf:datatype="&xsd;string">urate anabolism</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">urate biosynthesis</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">urate formation</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">urate synthesis</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">uric acid biosynthetic process</oboInOwl:hasExactSynonym>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:mah</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the formation of urate, the anion of uric acid, 2,6,8-trioxypurine.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0034418"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0042737 -->
<owl:Class rdf:about="&obo;GO_0042737">
<rdfs:label rdf:datatype="&xsd;string">drug catabolic process</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0009056"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0002233"/>
<owl:someValuesFrom>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;chebi#has_role"/>
<owl:someValuesFrom rdf:resource="&obo;CHEBI_23888"/>
</owl:Restriction>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0042737</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of a drug, a substance used in the diagnosis, treatment or prevention of a disease.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">drug breakdown</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">drug catabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">drug degradation</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:go_curators</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of a drug, a substance used in the diagnosis, treatment or prevention of a disease.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0042737"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0046271 -->
<owl:Class rdf:about="&obo;GO_0046271">
<rdfs:label rdf:datatype="&xsd;string">phenylpropanoid catabolic process</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0009056"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0002233"/>
<owl:someValuesFrom rdf:resource="&obo;CHEBI_26004"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0046271</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of aromatic derivatives of trans-cinnamic acid.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">phenylpropanoid breakdown</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">phenylpropanoid catabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">phenylpropanoid degradation</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:ai</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of aromatic derivatives of trans-cinnamic acid.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0046271"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0046415 -->
<owl:Class rdf:about="&obo;GO_0046415">
<rdfs:label rdf:datatype="&xsd;string">urate metabolic process</rdfs:label>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0046415</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways involving urate, the anion of uric acid, 2,6,8-trioxypurine, the end product of purine metabolism in certain mammals and the main excretory product in uricotelic animals.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">urate metabolism</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0198506732</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways involving urate, the anion of uric acid, 2,6,8-trioxypurine, the end product of purine metabolism in certain mammals and the main excretory product in uricotelic animals.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0046415"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0046448 -->
<owl:Class rdf:about="&obo;GO_0046448">
<rdfs:label rdf:datatype="&xsd;string">tropane alkaloid metabolic process</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0008152"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000057"/>
<owl:someValuesFrom rdf:resource="&obo;CHEBI_37332"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0046448</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways involving tropane alkaloids, compounds containing the 8-methyl-8-azabicyclo(3.2.1)octane ring system.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">tropane alkaloid metabolism</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:ai</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0198506732</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways involving tropane alkaloids, compounds containing the 8-methyl-8-azabicyclo(3.2.1)octane ring system.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0046448"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0046483 -->
<owl:Class rdf:about="&obo;GO_0046483">
<rdfs:label rdf:datatype="&xsd;string">heterocycle metabolic process</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0008152"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000057"/>
<owl:someValuesFrom rdf:resource="&obo;CHEBI_5686"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0046483</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways involving heterocyclic compounds, those with a cyclic molecular structure and at least two different atoms in the ring (or rings).</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">heterocycle metabolism</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0198506732</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways involving heterocyclic compounds, those with a cyclic molecular structure and at least two different atoms in the ring (or rings).</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0046483"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0046700 -->
<owl:Class rdf:about="&obo;GO_0046700">
<rdfs:label rdf:datatype="&xsd;string">heterocycle catabolic process</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0009056"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0002233"/>
<owl:someValuesFrom rdf:resource="&obo;CHEBI_5686"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0046700</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of heterocyclic compounds, those with a cyclic molecular structure and at least two different atoms in the ring (or rings).</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">heterocycle breakdown</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">heterocycle catabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">heterocycle degradation</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:ai</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of heterocyclic compounds, those with a cyclic molecular structure and at least two different atoms in the ring (or rings).</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0046700"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0050783 -->
<owl:Class rdf:about="&obo;GO_0050783">
<rdfs:label rdf:datatype="&xsd;string">cocaine metabolic process</rdfs:label>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0050783</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways involving cocaine, an alkaloid obtained from the dried leaves of the shrub Erythroxylon coca. It is a cerebral stimulant and narcotic.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">cocaine metabolism</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0198506732</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways involving cocaine, an alkaloid obtained from the dried leaves of the shrub Erythroxylon coca. It is a cerebral stimulant and narcotic.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0050783"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0050784 -->
<owl:Class rdf:about="&obo;GO_0050784">
<rdfs:label rdf:datatype="&xsd;string">cocaine catabolic process</rdfs:label>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0050784</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of cocaine, an alkaloid obtained from the dried leaves of the shrub Erythroxylon coca. It is a cerebral stimulant and narcotic.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">cocaine breakdown</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">cocaine catabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">cocaine degradation</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;go/tutorial/chebi-conjugate-base/cocaine-metabolism#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0198506732</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the breakdown of cocaine, an alkaloid obtained from the dried leaves of the shrub Erythroxylon coca. It is a cerebral stimulant and narcotic.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0050784"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0050799 -->
<owl:Class rdf:about="&obo;GO_0050799">
<rdfs:label rdf:datatype="&xsd;string">cocaine biosynthetic process</rdfs:label>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0050799</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The chemical reactions and pathways resulting in the formation of cocaine, an alkaloid obtained from the dried leaves of the shrub Erythroxylon coca. It is a cerebral stimulant and narcotic.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">cocaine anabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">cocaine biosynthesis</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">cocaine formation</oboInOwl:hasExactSynonym>