-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGO_import.owl
8379 lines (6699 loc) · 676 KB
/
GO_import.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/ego/GO_import.owl#"
xml:base="http://purl.obolibrary.org/obo/ego/GO_import.owl"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
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:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"
xmlns:go="http://purl.obolibrary.org/obo/go#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/ego/GO_import.owl"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#gocheck_do_not_manually_annotate">
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Term not to be used for direct manual annotation</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#creation_date"/>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#shorthand">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">shorthand</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#inSubset">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">in_subset</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#created_by"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_metagenomics">
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Metagenomics GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">definition</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_generic">
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Generic GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasDbXref">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">database_cross_reference</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasAlternativeId">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_alternative_id</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_aspergillus">
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Aspergillus GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasOBONamespace">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_obo_namespace</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#gosubset_prok">
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Prokaryotic GO subset</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_chembl">
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ChEMBL protein targets summary</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#SubsetProperty">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">subset_property</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#id"/>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_virus">
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Viral GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_pir">
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PIR GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_exact_synonym</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_plant">
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Plant GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_candida">
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Candida GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_related_synonym</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000412">
<rdfs:label xml:lang="en">imported from</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#virus_checked">
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Viral overhaul terms</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_narrow_synonym</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_broad_synonym</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_pombe">
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fission yeast GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_yeast">
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Yeast GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000050 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000050">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">part of</rdfs:label>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BFO:0000050</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">external</oboInOwl:hasOBONamespace>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">part_of</oboInOwl:id>
<oboInOwl:shorthand rdf:datatype="http://www.w3.org/2001/XMLSchema#string">part_of</oboInOwl:shorthand>
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/BFO_0000051 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000051">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_part</rdfs:label>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BFO:0000051</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">external</oboInOwl:hasOBONamespace>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_part</oboInOwl:id>
<oboInOwl:shorthand rdf:datatype="http://www.w3.org/2001/XMLSchema#string">has_part</oboInOwl:shorthand>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002211 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002211">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">regulates</rdfs:label>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RO:0002211</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">external</oboInOwl:hasOBONamespace>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">regulates</oboInOwl:id>
<oboInOwl:shorthand rdf:datatype="http://www.w3.org/2001/XMLSchema#string">regulates</oboInOwl:shorthand>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/RO_0002211"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000050"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002212 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002212">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">negatively regulates</rdfs:label>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RO:0002212</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">external</oboInOwl:hasOBONamespace>
<oboInOwl:shorthand rdf:datatype="http://www.w3.org/2001/XMLSchema#string">negatively_regulates</oboInOwl:shorthand>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">negatively_regulates</oboInOwl:id>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0002211"/>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/RO_0002212"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000050"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002213 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002213">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">positively regulates</rdfs:label>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RO:0002213</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">external</oboInOwl:hasOBONamespace>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">positively_regulates</oboInOwl:id>
<oboInOwl:shorthand rdf:datatype="http://www.w3.org/2001/XMLSchema#string">positively_regulates</oboInOwl:shorthand>
<rdfs:subPropertyOf rdf:resource="http://purl.obolibrary.org/obo/RO_0002211"/>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/RO_0002213"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000050"/>
</owl:propertyChainAxiom>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/RO_0002212"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/RO_0002212"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000015"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000034 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000034"/>
<!-- http://purl.obolibrary.org/obo/GO_0000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0000003">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">reproduction</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0008150"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0000003</oboInOwl:id>
<oboInOwl:hasAlternativeId rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0019952</oboInOwl:hasAlternativeId>
<oboInOwl:hasAlternativeId rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0050876</oboInOwl:hasAlternativeId>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The production of new individuals that contain some portion of genetic material inherited from one or more parent organisms.</obo:IAO_0000115>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wikipedia:Reproduction</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">reproductive physiological process</oboInOwl:hasExactSynonym>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_chembl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_generic"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_plant"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#gosubset_prok"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0000052 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0000052">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">citrulline metabolic process</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0006575"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_1901605"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0000052</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The chemical reactions and pathways involving citrulline, N5-carbamoyl-L-ornithine, an alpha amino acid not found in proteins.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">citrulline metabolism</oboInOwl:hasExactSynonym>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#gosubset_prok"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0000209 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0000209">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">protein polyubiquitination</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0016567"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Addition of multiple ubiquitin groups to a protein, forming a ubiquitin chain.</obo:IAO_0000115>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0000209</oboInOwl:id>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_75842</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">polyubiquitin</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">protein polyubiquitinylation</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">protein polyubiquitylation</oboInOwl:hasExactSynonym>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0000412 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0000412">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">histone peptidyl-prolyl isomerization</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0000413"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0016570"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0000412</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The modification of a histone by cis-trans isomerization of a proline residue.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">histone proline isomerization</oboInOwl:hasExactSynonym>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0000413 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0000413">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">protein peptidyl-prolyl isomerization</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0018208"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0000413</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The modification of a protein by cis-trans isomerization of a proline residue.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">protein proline isomerization</oboInOwl:hasExactSynonym>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001025 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001025">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RNA polymerase III transcription factor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0008134"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2010-08-20T03:26:50Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001025</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with an RNA polymerase III transcription factor, any protein required to initiate or regulate transcription by RNA polymerase III.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001085 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001085">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RNA polymerase II transcription factor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0008134"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2010-10-28T02:08:59Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001085</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with an RNA polymerase II transcription factor, any protein required to initiate or regulate transcription by RNA polymerase II.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001091 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001091">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RNA polymerase II basal transcription factor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001085"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001099"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2010-10-28T02:30:02Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001091</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with a basal RNA polymerase II transcription factor, any of the factors involved in formation of the preinitiation complex (PIC) by RNA polymerase II and defined as a basal or general transcription factor.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001092 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001092">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFIIA-class transcription factor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001091"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2010-10-28T02:37:19Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001092</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with a basal RNA polymerase II transcription factor of the TFIIA class, one of the factors involved in formation of the preinitiation complex (PIC) by RNA polymerase II and defined as a basal or general transcription factor.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001093 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001093">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFIIB-class transcription factor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001091"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2010-10-28T02:46:15Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001093</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with a basal RNA polymerase II transcription factor of the TFIIB class, one of the factors involved in formation of the preinitiation complex (PIC) by RNA polymerase II and defined as a basal or general transcription factor.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001094 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001094">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFIID-class transcription factor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001091"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2010-10-28T02:48:33Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001094</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with a basal RNA polymerase II transcription factor of the TFIID class, one of the factors involved in formation of the preinitiation complex (PIC) by RNA polymerase II and defined as a basal or general transcription factor.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001095 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001095">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFIIE-class transcription factor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001091"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2010-10-28T02:49:20Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001095</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with a basal RNA polymerase II transcription factor of the TFIIE class, one of the factors involved in formation of the preinitiation complex (PIC) by RNA polymerase II and defined as a basal or general transcription factor.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001096 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001096">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFIIF-class transcription factor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001091"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2010-10-28T02:51:20Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001096</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with a basal RNA polymerase II transcription factor of the TFIIF class, one of the factors involved in formation of the preinitiation complex (PIC) by RNA polymerase II and defined as a basal or general transcription factor.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001097 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001097">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFIIH-class transcription factor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001091"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2010-10-28T02:51:41Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001097</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with a basal RNA polymerase II transcription factor of the TFIIH class, one of the factors involved in formation of the preinitiation complex (PIC) by RNA polymerase II and defined as a basal or general transcription factor.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001098 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001098">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">basal transcription machinery binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0005515"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2010-11-24T12:50:49Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001098</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with the basal transcription machinery which is composed of the RNA polymerase core enzyme and the basal transcription factor(s), the minimal set of factors required for formation of the preinitiation complex (PIC) by the RNA polymerase.</obo:IAO_0000115>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Note that the definition of basal, or general, transcription factors has typically been done at a small number of well characterized activator-independent promoters. At an activator-dependent promoter, one or more additional factors are generally required in addition to the basal factors.</rdfs:comment>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001099 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001099">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">basal RNA polymerase II transcription machinery binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001098"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2010-11-24T12:54:33Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001099</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with the basal transcription machinery for RNA polymerase II which is composed of the RNA polymerase II core enzyme, a multisubunit eukaryotic nuclear RNA polymerase typically composed of twelve subunits, and the basal RNA polymerase II transcription factors, the minimal set of factors required for formation of the preinitiation complex (PIC) by the RNA polymerase.</obo:IAO_0000115>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Note that the definition of basal, or general, transcription factors has typically been done at a small number of well characterized activator-independent promoters. At an activator-dependent promoter, one or more additional factors are generally required in addition to the basal factors.</rdfs:comment>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001102 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001102">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RNA polymerase II activating transcription factor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001085"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0033613"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2010-11-24T02:17:08Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001102</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with an RNA polymerase II transcription activating factor, a protein involved in positive regulation of transcription.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001103 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001103">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RNA polymerase II repressing transcription factor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001085"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0070491"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2010-11-24T02:34:55Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001103</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with an RNA polymerase II transcription repressing factor, a protein involved in negative regulation of transcription.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001154 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001154">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFIIIB-class transcription factor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001025"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2011-01-27T04:53:50Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001154</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with an RNA polymerase III transcription factor of the TFIIIB class, one of the factors involved in formation of the preinitiation complex (PIC) by RNA polymerase III.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001155 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001155">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFIIIA-class transcription factor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001025"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2011-01-27T04:57:49Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001155</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with an RNA polymerase III transcription factor of the TFIIIA class, one of the factors involved in formation of the preinitiation complex (PIC) at type 1 promoters (5S genes) by RNA polymerase III.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001156 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001156">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TFIIIC-class transcription factor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001025"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2011-01-27T05:02:22Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001156</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with an RNA polymerase III transcription factor of the TFIIIC class, one of the factors involved in formation of the preinitiation complex (PIC) by RNA polymerase III.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001179 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001179">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RNA polymerase I transcription factor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0008134"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2011-08-12T03:03:03Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001179</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with an RNA polymerase I transcription factor, any protein required to initiate or regulate transcription by RNA polymerase I.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001221 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001221">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">transcription cofactor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0008134"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2012-04-16T03:19:05Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001221</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with a transcription cofactor, any protein involved in regulation of transcription via protein-protein interactions with transcription factors and other transcription regulatory proteins. Cofactors do not bind DNA directly, but rather mediate protein-protein interactions between regulatory transcription factors and the basal transcription machinery.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001222 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001222">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">transcription corepressor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001221"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2012-04-16T03:27:26Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001222</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with a transcription corepressor, any protein involved in negative regulation of transcription via protein-protein interactions with transcription factors and other proteins that negatively regulate transcription. Transcription corepressors do not bind DNA directly, but rather mediate protein-protein interactions between repressing transcription factors and the basal transcription machinery.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001223 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001223">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">transcription coactivator binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001221"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2012-04-16T03:30:16Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001223</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with a transcription coactivator, any protein involved in positive regulation of transcription via protein-protein interactions with transcription factors and other proteins that positively regulate transcription. Transcription coactivators do not bind DNA directly, but rather mediate protein-protein interactions between activating transcription factors and the basal transcription machinery.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001224 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001224">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RNA polymerase II transcription cofactor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001221"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2012-04-16T03:37:06Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001224</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with a transcription cofactor for RNA polymerase II, any protein involved in regulation of transcription via protein-protein interactions with RNA polymerase II transcription factors and other transcription regulatory proteins. Cofactors do not bind DNA directly, but rather mediate protein-protein interactions between regulatory transcription factors and the basal transcription machinery of RNA polymerase II.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001225 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001225">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RNA polymerase II transcription coactivator binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001223"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001224"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2012-04-16T03:39:41Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001225</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with an RNA polymerase II transcription coactivator, any protein involved in positive regulation of transcription of RNA polymerase II via protein-protein interactions with transcription factors and other proteins that positively regulate transcription. Transcription coactivators do not bind DNA directly, but rather mediate protein-protein interactions between activating transcription factors and the basal transcription machinery of RNA polymerase II.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0001226 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0001226">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RNA polymerase II transcription corepressor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001222"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0001224"/>
<oboInOwl:creation_date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2012-04-16T03:39:47Z</oboInOwl:creation_date>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0001226</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with an RNA polymerase II transcription corepressor, any protein involved in negative regulation of transcription by RNA polymerase II via protein-protein interactions with transcription factors and other proteins that negatively regulate transcription. Transcription corepressors do not bind DNA directly, but rather mediate protein-protein interactions between repressing transcription factors and the basal transcription machinery of RNA polymerase II.</obo:IAO_0000115>
<oboInOwl:created_by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">kchris</oboInOwl:created_by>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0003674 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0003674">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000034"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Elemental activities, such as catalysis or binding, describing the actions of a gene product at the molecular level. A given gene product may exhibit one or more molecular functions.</obo:IAO_0000115>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0003674</oboInOwl:id>
<oboInOwl:hasAlternativeId rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0005554</oboInOwl:hasAlternativeId>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Note that, in addition to forming the root of the molecular function ontology, this term is recommended for use for the annotation of gene products whose molecular function is unknown. Note that when this term is used for annotation, it indicates that no information was available about the molecular function 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:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular function</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_aspergillus"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_candida"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_chembl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_generic"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_metagenomics"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_plant"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_yeast"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#gosubset_prok"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0003676 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0003676">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nucleic acid binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0097159"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_1901363"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0003676</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with any nucleic acid.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_chembl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_metagenomics"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_plant"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#gosubset_prok"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0003677 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0003677">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DNA binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0003676"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Any molecular function by which a gene product interacts selectively and non-covalently with DNA (deoxyribonucleic acid).</obo:IAO_0000115>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0003677</oboInOwl:id>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">microtubule/chromatin interaction</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<oboInOwl:hasNarrowSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plasmid binding</oboInOwl:hasNarrowSynonym>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_aspergillus"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_candida"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_chembl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_generic"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_plant"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_yeast"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#gosubset_prok"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0003824 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0003824">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">catalytic activity</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0003674"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/GO_0008152"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Catalysis of a biochemical reaction at physiological temperatures. In biologically catalyzed reactions, the reactants are known as substrates, and the catalysts are naturally occurring macromolecular substances known as enzymes. Enzymes possess specific binding sites for substrates, and are usually composed wholly or largely of protein, but RNA that has catalytic activity (ribozyme) is often also regarded as enzymatic.</obo:IAO_0000115>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0003824</oboInOwl:id>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wikipedia:Enzyme</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">enzyme activity</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_chembl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_plant"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#gosubset_prok"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0004843 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0004843">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">thiol-dependent ubiquitin-specific protease activity</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0036459"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Catalysis of the thiol-dependent hydrolysis of a peptide bond formed by the C-terminal glycine of ubiquitin and another protein.</obo:IAO_0000115>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0004843</oboInOwl:id>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_100631</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_115763</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_115791</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_18350</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_29152</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_87211</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_92871</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_95549</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_96729</oboInOwl:hasDbXref>
<oboInOwl:hasNarrowSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UBP</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UCH2</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">deubiquitinase</oboInOwl:hasExactSynonym>
<oboInOwl:hasNarrowSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">deubiquitinase activity</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">deubiquitinating enzyme</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">deubiquitylase</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ubiquitin C-terminal hydrolase activity</oboInOwl:hasExactSynonym>
<oboInOwl:hasBroadSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ubiquitin hydrolase activity</oboInOwl:hasBroadSynonym>
<oboInOwl:hasBroadSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ubiquitin-specific protease activity</oboInOwl:hasBroadSynonym>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0005102 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0005102">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">receptor binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0005515"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0005102</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with one or more specific sites on a receptor molecule, a macromolecule that undergoes combination with a hormone, neurotransmitter, drug or intracellular messenger to initiate a change in cell function.</obo:IAO_0000115>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wikipedia:Ligand_(biochemistry)</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<oboInOwl:hasNarrowSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">receptor ligand</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">receptor-associated protein activity</oboInOwl:hasRelatedSynonym>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_chembl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_metagenomics"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_plant"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#gosubset_prok"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0005488 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0005488">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0003674"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0005488</oboInOwl:id>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Note that this term is in the subset of terms that should not be used for direct, manual gene product annotation. Please choose a more specific child term, or request a new one if no suitable term is available. For ligands that bind to signal transducing receptors, consider the molecular function term 'receptor binding ; GO:0005102' and its children.</rdfs:comment>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The selective, non-covalent, often stoichiometric, interaction of a molecule with one or more specific sites on another molecule.</obo:IAO_0000115>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Wikipedia:Binding_(molecular)</oboInOwl:hasDbXref>
<oboInOwl:hasNarrowSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ligand</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#gocheck_do_not_manually_annotate"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_plant"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#gosubset_prok"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0005515 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0005515">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">protein binding</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0005488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0005515</oboInOwl:id>
<oboInOwl:hasAlternativeId rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0045308</oboInOwl:hasAlternativeId>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Interacting selectively and non-covalently with any protein or protein complex (a complex of two or more proteins that may include other nonprotein molecules).</obo:IAO_0000115>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_100287</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_101129</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_102084</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_102457</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_103972</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_104029</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_104599</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_105776</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_105895</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_106168</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_106189</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_107402</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_108283</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_109392</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_110419</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_110570</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_15321</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_15325</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_15355</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_15417</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_15419</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_15506</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_15541</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_20509</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_20539</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_28794</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_30571</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_30672</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_31305</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_31537</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_31641</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_31648</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_32973</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_33135</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_34719</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_6923</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_6945</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_78382</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_78466</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_79634</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_80470</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_80778</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_83147</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_83165</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_83532</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_85250</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_85858</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_85975</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_87187</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_87374</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_87652</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_88068</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_88138</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_88223</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_89261</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_90027</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_90105</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_90666</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_91560</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_92029</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_93175</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_93938</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_94522</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_94808</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_95241</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_95561</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_95647</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_96236</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_96264</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_98028</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reactome:REACT_98807</oboInOwl:hasDbXref>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alpha-2 macroglobulin receptor-associated protein activity</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">molecular_function</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">protein amino acid binding</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">protein degradation tagging activity</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasNarrowSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">protein folding chaperone</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">protein tagging activity</oboInOwl:hasRelatedSynonym>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_aspergillus"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_candida"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_chembl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_plant"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#gosubset_prok"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0006082 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0006082">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">organic acid metabolic process</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0044237"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0044281"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0044763"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0071704"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0006082</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The chemical reactions and pathways involving organic acids, any acidic compound containing carbon in covalent linkage.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">organic acid metabolism</oboInOwl:hasExactSynonym>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#gosubset_prok"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0006139 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0006139">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nucleobase-containing compound metabolic process</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0006725"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0034641"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0044238"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0046483"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_1901360"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Any cellular metabolic process involving nucleobases, nucleosides, nucleotides and nucleic acids.</obo:IAO_0000115>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0006139</oboInOwl:id>
<oboInOwl:hasAlternativeId rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0055134</oboInOwl:hasAlternativeId>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cellular nucleobase, nucleoside, nucleotide and nucleic acid metabolic process</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cellular nucleobase, nucleoside, nucleotide and nucleic acid metabolism</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nucleobase, nucleoside and nucleotide metabolic process</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nucleobase, nucleoside, nucleotide and nucleic acid metabolic process</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nucleobase, nucleoside, nucleotide and nucleic acid metabolism</oboInOwl:hasExactSynonym>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_plant"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#gosubset_prok"/>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0006259 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0006259">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DNA metabolic process</rdfs:label>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0044260"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0090304"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Any cellular metabolic process involving deoxyribonucleic acid. This is one of the two main types of nucleic acid, consisting of a long, unbranched macromolecule formed from one, or more commonly, two, strands of linked deoxyribonucleotides.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">DNA metabolism</oboInOwl:hasExactSynonym>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0006259</oboInOwl:id>
<oboInOwl:hasAlternativeId rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GO:0055132</oboInOwl:hasAlternativeId>
<oboInOwl:hasOBONamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cellular DNA metabolism</oboInOwl:hasExactSynonym>
<obo:IAO_0000412 rdf:resource="http://purl.obolibrary.org/obo/go.owl"/>