-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathgo-slim.owl
9016 lines (7746 loc) · 581 KB
/
go-slim.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.enanomapper.net/onto/external/go-slim.owl#"
xml:base="http://purl.enanomapper.net/onto/external/go-slim.owl"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:go="http://purl.obolibrary.org/obo/go#"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:pav="http://purl.org/pav/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:obo1="http://www.geneontology.org/formats/oboInOwl#http://purl.obolibrary.org/obo/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:ncicp="http://ncicb.nci.nih.gov/xml/owl/EVS/ComplexProperties.xsd#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.enanomapper.net/onto/external/go-slim.owl">
<obo:IAO_0000700 rdf:resource="http://purl.obolibrary.org/obo/GO_0003674"/>
<obo:IAO_0000700 rdf:resource="http://purl.obolibrary.org/obo/GO_0005575"/>
<obo:IAO_0000700 rdf:resource="http://purl.obolibrary.org/obo/GO_0008150"/>
<dc:description>The Gene Ontology (GO) provides a framework and set of concepts for describing the functions of gene products from all organisms.</dc:description>
<dc:title>Gene Ontology</dc:title>
<terms:license rdf:resource="http://creativecommons.org/licenses/by/4.0/"/>
<pav:importedFrom>http://purl.obolibrary.org/obo/go.owl</pav:importedFrom>
<oboInOwl:auto-generated-by>Slimmer</oboInOwl:auto-generated-by>
<oboInOwl:date>2025-03-01 02:01:14</oboInOwl:date>
<oboInOwl:default-namespace>gene_ontology</oboInOwl:default-namespace>
<oboInOwl:hasOBOFormatVersion>1.2</oboInOwl:hasOBOFormatVersion>
<owl:versionInfo>2025-02-06</owl:versionInfo>
<owl:versionInfo>This SLIM file was generated automatically by the eNanoMapper Slimmer software library. For more information see http://github.com/enanomapper/slimmer.</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115">
<rdfs:label>definition</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000116 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000116"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000231 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000231"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000233 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000233">
<oboInOwl:hasDbXref>IAO:0000233</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace>external</oboInOwl:hasOBONamespace>
<oboInOwl:id>term_tracker_item</oboInOwl:id>
<oboInOwl:is_class_level rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</oboInOwl:is_class_level>
<oboInOwl:is_metadata_tag rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</oboInOwl:is_metadata_tag>
<oboInOwl:shorthand>term_tracker_item</oboInOwl:shorthand>
<rdfs:label>term tracker item</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000589 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000589"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000700 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000700"/>
<!-- http://purl.obolibrary.org/obo/IAO_0100001 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0100001">
<rdfs:label>term replaced by</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002161 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002161"/>
<!-- http://purl.obolibrary.org/obo/RO_0002175 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002175"/>
<!-- http://purl.obolibrary.org/obo/go#chebi_ph7_3 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#chebi_ph7_3">
<rdfs:comment>Rhea list of ChEBI terms representing the major species at pH 7.3.</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#creation_date -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#creation_date"/>
<!-- http://purl.obolibrary.org/obo/go#gocheck_do_not_annotate -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#gocheck_do_not_annotate">
<rdfs:comment>Term not to be used for direct annotation</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#gocheck_obsoletion_candidate -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#gocheck_obsoletion_candidate">
<rdfs:comment>Terms planned for obsoletion</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_agr -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_agr">
<rdfs:comment>AGR slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_aspergillus -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_aspergillus">
<rdfs:comment>Aspergillus GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_candida -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_candida">
<rdfs:comment>Candida GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_chembl -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_chembl">
<rdfs:comment>ChEMBL protein targets summary</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_drosophila -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_drosophila">
<rdfs:comment>Drosophila GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_euk_cellular_processes_ribbon -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_euk_cellular_processes_ribbon">
<rdfs:comment>GO ribbon for eukaroytic cellular processes</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_flybase_ribbon -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_flybase_ribbon">
<rdfs:comment>Insecta GO ribbon slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_generic -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_generic">
<rdfs:comment>Generic GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_metagenomics -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_metagenomics">
<rdfs:comment>Metagenomics GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_mouse -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_mouse">
<rdfs:comment>Mouse GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_pir -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_pir">
<rdfs:comment>PIR GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_plant -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_plant">
<rdfs:comment>Plant GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_plant_ribbon -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_plant_ribbon">
<rdfs:comment>Plant GO ribbon</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_pombe -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_pombe">
<rdfs:comment>Fission yeast GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_prokaryote -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_prokaryote">
<rdfs:comment>GO subset for prokaryotes</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_prokaryote_ribbon -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_prokaryote_ribbon">
<rdfs:comment>Prokaryote GO ribbon slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_synapse -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_synapse">
<rdfs:comment>synapse GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_virus -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_virus">
<rdfs:comment>GO subset for viruses</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#goslim_yeast -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#goslim_yeast">
<rdfs:comment>Yeast GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SubsetProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#syngo_official_label -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#syngo_official_label">
<rdfs:label>label approved by the SynGO project</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/go#systematic_synonym -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/go#systematic_synonym">
<oboInOwl:hasScope rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<rdfs:label>Systematic synonym</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/description"/>
<!-- http://purl.org/dc/elements/1.1/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/title"/>
<!-- http://purl.org/dc/terms/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>
<!-- http://purl.org/pav/importedFrom -->
<owl:AnnotationProperty rdf:about="http://purl.org/pav/importedFrom"/>
<!-- http://www.geneontology.org/formats/oboInOwl#SubsetProperty -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#SubsetProperty">
<rdfs:label>subset_property</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty">
<rdfs:label>synonym_type_property</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#auto-generated-by -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#auto-generated-by"/>
<!-- http://www.geneontology.org/formats/oboInOwl#consider -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#consider">
<rdfs:label>consider</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#created_by -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#created_by"/>
<!-- http://www.geneontology.org/formats/oboInOwl#creation_date -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#creation_date"/>
<!-- http://www.geneontology.org/formats/oboInOwl#date -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#date"/>
<!-- http://www.geneontology.org/formats/oboInOwl#default-namespace -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#default-namespace"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasAlternativeId -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasAlternativeId">
<rdfs:label>has_alternative_id</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym">
<rdfs:label>has_broad_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasDbXref -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasDbXref">
<rdfs:label>database_cross_reference</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasExactSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym">
<rdfs:label>has_exact_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym">
<rdfs:label>has_narrow_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasOBONamespace -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasOBONamespace">
<rdfs:label>has_obo_namespace</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym">
<rdfs:label>has_related_synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasScope -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasScope">
<rdfs:label>has_scope</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#hasSynonymType -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasSynonymType">
<rdfs:label>has_synonym_type</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#id -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#id"/>
<!-- http://www.geneontology.org/formats/oboInOwl#inSubset -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#inSubset">
<rdfs:label>in_subset</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#is_class_level -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#is_class_level"/>
<!-- http://www.geneontology.org/formats/oboInOwl#is_metadata_tag -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#is_metadata_tag"/>
<!-- http://www.geneontology.org/formats/oboInOwl#shorthand -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#shorthand">
<rdfs:label>shorthand</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#source -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#source"/>
<!-- http://www.geneontology.org/formats/oboInOwl#http://purl.obolibrary.org/obo/IAO_0000233 -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#http://purl.obolibrary.org/obo/IAO_0000233"/>
<!-- http://www.w3.org/2000/01/rdf-schema#comment -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#comment"/>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label"/>
<!-- http://www.w3.org/2002/07/owl#deprecated -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#deprecated"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/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_0002149 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0002149">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_1903409"/>
<obo:IAO_0000115>The chemical reactions and pathways resulting in the formation of hypochlorous acid.</obo:IAO_0000115>
<oboInOwl:created_by>hjd</oboInOwl:created_by>
<oboInOwl:creation_date>2009-10-13T10:32:35Z</oboInOwl:creation_date>
<oboInOwl:hasExactSynonym>HClO biosynthetic process</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>HOCl biosynthetic process</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>hypochlorous acid biosynthesis</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasRelatedSynonym>hypochlorite biosynthetic process</oboInOwl:hasRelatedSynonym>
<oboInOwl:id>GO:0002149</oboInOwl:id>
<rdfs:comment>Note that this reaction is catalyzed by myeloperoxidase in neutrophils.</rdfs:comment>
<rdfs:label>hypochlorous acid biosynthetic process</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0002149"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>The chemical reactions and pathways resulting in the formation of hypochlorous acid.</owl:annotatedTarget>
<oboInOwl:hasDbXref>GOC:add</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>PMID:10085024</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>PMID:176150</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0002433 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0002433">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0009987"/>
<obo:IAO_0000115>An immune response-regulating cell surface receptor signaling pathway that contributes to the endocytic engulfment of external particulate material by phagocytes.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>immune response-regulating cell surface receptor signalling pathway involved in phagocytosis</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>phagocytosis triggered by activation of immune response cell surface activating receptor</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:id>GO:0002433</oboInOwl:id>
<rdfs:label>immune response-regulating cell surface receptor signaling pathway involved in phagocytosis</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0002433"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>An immune response-regulating cell surface receptor signaling pathway that contributes to the endocytic engulfment of external particulate material by phagocytes.</owl:annotatedTarget>
<oboInOwl:hasDbXref>GOC:add</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>GOC:bf</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>GO_REF:0000022</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>ISBN:0781735149</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0002433"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>immune response-regulating cell surface receptor signalling pathway involved in phagocytosis</owl:annotatedTarget>
<oboInOwl:hasDbXref>GOC:mah</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0003427 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0003427">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0051493"/>
<obo:IAO_0000115>The series of molecular signals initiated by binding of a Wnt protein to a receptor on the surface of the target cell that modulates the rate, frequency, or extent of the polarization of cytoskeletal structures in a growth plate cartilage chondrocyte. This process results in the oriented division of the cell.</obo:IAO_0000115>
<oboInOwl:created_by>dph</oboInOwl:created_by>
<oboInOwl:creation_date>2009-12-22T11:43:29Z</oboInOwl:creation_date>
<oboInOwl:hasExactSynonym>regulation of cytoskeleton polarization involved in growth plate cartilage chondrocyte division by planar cell polarity pathway</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:id>GO:0003427</oboInOwl:id>
<rdfs:label>regulation of cytoskeleton polarization involved in growth plate cartilage chondrocyte division</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0003427"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>The series of molecular signals initiated by binding of a Wnt protein to a receptor on the surface of the target cell that modulates the rate, frequency, or extent of the polarization of cytoskeletal structures in a growth plate cartilage chondrocyte. This process results in the oriented division of the cell.</owl:annotatedTarget>
<oboInOwl:hasDbXref>GOC:ascb_2009</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>GOC:dph</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>GOC:tb</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0003427"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>regulation of cytoskeleton polarization involved in growth plate cartilage chondrocyte division by planar cell polarity pathway</owl:annotatedTarget>
<oboInOwl:hasDbXref>GOC:ascb_2009</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>GOC:dph</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>GOC:tb</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0003824 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0003824">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000034"/>
<obo:IAO_0000115>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:hasDbXref>Wikipedia:Enzyme</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym>enzyme activity</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>molecular_function</oboInOwl:hasOBONamespace>
<oboInOwl:id>GO:0003824</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_agr"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_chembl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_euk_cellular_processes_ribbon"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_flybase_ribbon"/>
<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_plant_ribbon"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_prokaryote_ribbon"/>
<rdfs:label>catalytic activity</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0003824"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>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.</owl:annotatedTarget>
<oboInOwl:hasDbXref>GOC:vw</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>ISBN:0198506732</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0003824"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>enzyme activity</owl:annotatedTarget>
<oboInOwl:hasDbXref>GOC:dph</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>GOC:tb</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0004457 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0004457">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0003824"/>
<obo:IAO_0000115>Catalysis of the reaction: lactate + NAD+ = H+ + NADH + pyruvate.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>molecular_function</oboInOwl:hasOBONamespace>
<oboInOwl:id>GO:0004457</oboInOwl:id>
<rdfs:label>lactate dehydrogenase activity</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0004457"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Catalysis of the reaction: lactate + NAD+ = H+ + NADH + pyruvate.</owl:annotatedTarget>
<oboInOwl:hasDbXref>GOC:ai</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>GOC:bf</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0006909 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0006909">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0009987"/>
<obo:IAO_0000115>A vesicle-mediated transport process that results in the engulfment of external particulate material by phagocytes and their delivery to the lysosome. The particles are initially contained within phagocytic vacuoles (phagosomes), which then fuse with primary lysosomes to effect digestion of the particles.</obo:IAO_0000115>
<obo:IAO_0000233 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://github.com/geneontology/go-ontology/issues/24907</obo:IAO_0000233>
<oboInOwl:hasDbXref>Reactome:R-HSA-9664417</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Wikipedia:Phagocytosis</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace>biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:id>GO:0006909</oboInOwl:id>
<rdfs:label>phagocytosis</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0006909"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasDbXref"/>
<owl:annotatedTarget>Reactome:R-HSA-9664417</owl:annotatedTarget>
<rdfs:label>Leishmania phagocytosis</rdfs:label>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0006909"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A vesicle-mediated transport process that results in the engulfment of external particulate material by phagocytes and their delivery to the lysosome. The particles are initially contained within phagocytic vacuoles (phagosomes), which then fuse with primary lysosomes to effect digestion of the particles.</owl:annotatedTarget>
<oboInOwl:hasDbXref>ISBN:0198506732</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0006914 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0006914">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0009987"/>
<obo:IAO_0000115>The cellular catabolic process in which cells digest cellular materials, such as organelles and other macromolecular constituents, or non-self materials such as intracellular pathogens. Autophagy serves to provide essential nutrients under conditions of cellular stress; or can remodel intracellular structures during cell differentiation.</obo:IAO_0000115>
<obo:IAO_0000233 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://github.com/geneontology/go-ontology/issues/25541</obo:IAO_0000233>
<oboInOwl:hasAlternativeId>GO:0016238</oboInOwl:hasAlternativeId>
<oboInOwl:hasDbXref>Reactome:R-HSA-9612973</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>Wikipedia:Autophagy_(cellular)</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace>biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:id>GO:0006914</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_chembl"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_drosophila"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/go#goslim_euk_cellular_processes_ribbon"/>
<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_pombe"/>
<rdfs:label>autophagy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0006914"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>The cellular catabolic process in which cells digest cellular materials, such as organelles and other macromolecular constituents, or non-self materials such as intracellular pathogens. Autophagy serves to provide essential nutrients under conditions of cellular stress; or can remodel intracellular structures during cell differentiation.</owl:annotatedTarget>
<oboInOwl:hasDbXref>GOC:autophagy</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>ISBN:0198547684</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>PMID:11099404</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>PMID:29455577</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>PMID:9412464</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0006914"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasDbXref"/>
<owl:annotatedTarget>Reactome:R-HSA-9612973</owl:annotatedTarget>
<rdfs:label>Autophagy</rdfs:label>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0007026 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0007026">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0031111"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0031114"/>
<obo:IAO_0000115>Any process that stops, prevents, or reduces the frequency, rate or extent of microtubule depolymerization; prevention of depolymerization of a microtubule can result from binding by 'capping' at the plus end (e.g. by interaction with another cellular protein of structure) or by exposing microtubules to a stabilizing drug such as taxol.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>down regulation of microtubule depolymerization</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>down-regulation of microtubule depolymerization</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>downregulation of microtubule depolymerization</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>microtubule stabilization</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>negative regulation of microtubule disassembly</oboInOwl:hasExactSynonym>
<oboInOwl:hasNarrowSynonym>inhibition of microtubule depolymerization</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>microtubule rescue</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>negative regulation of microtubule catastrophe</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasOBONamespace>biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:id>GO:0007026</oboInOwl:id>
<rdfs:label>negative regulation of microtubule depolymerization</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0007026"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Any process that stops, prevents, or reduces the frequency, rate or extent of microtubule depolymerization; prevention of depolymerization of a microtubule can result from binding by 'capping' at the plus end (e.g. by interaction with another cellular protein of structure) or by exposing microtubules to a stabilizing drug such as taxol.</owl:annotatedTarget>
<oboInOwl:hasDbXref>GOC:mah</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>ISBN:0815316194</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0007026"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"/>
<owl:annotatedTarget>microtubule rescue</owl:annotatedTarget>
<oboInOwl:hasDbXref>GOC:dph</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>GOC:tb</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0007026"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"/>
<owl:annotatedTarget>negative regulation of microtubule catastrophe</owl:annotatedTarget>
<oboInOwl:hasDbXref>GOC:dph</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>GOC:tb</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0007027 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0007027">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0007026"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0010937"/>
<obo:IAO_0000115>Any process that stops, prevents, or reduces the frequency, rate or extent of the depolymerization of the specialized microtubules of the axoneme.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>axonemal microtubule stabilization</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasRelatedSynonym>negative regulation of microtubule depolymerization in axoneme</oboInOwl:hasRelatedSynonym>
<oboInOwl:id>GO:0007027</oboInOwl:id>
<rdfs:label>negative regulation of axonemal microtubule depolymerization</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0007027"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Any process that stops, prevents, or reduces the frequency, rate or extent of the depolymerization of the specialized microtubules of the axoneme.</owl:annotatedTarget>
<oboInOwl:hasDbXref>GOC:dph</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>GOC:mah</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0007027"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget>negative regulation of microtubule depolymerization in axoneme</owl:annotatedTarget>
<oboInOwl:hasDbXref>GOC:dph</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0007089 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0007089">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_1900087"/>
<obo:IAO_0000115>A cell cycle process by which a cell commits to entering S phase via a positive feedback mechanism between the regulation of transcription and G1 CDK activity.</obo:IAO_0000115>
<oboInOwl:hasAlternativeId>GO:0000081</oboInOwl:hasAlternativeId>
<oboInOwl:hasOBONamespace>biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:id>GO:0007089</oboInOwl:id>
<rdfs:label>traversing start control point of mitotic cell cycle</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0007089"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A cell cycle process by which a cell commits to entering S phase via a positive feedback mechanism between the regulation of transcription and G1 CDK activity.</owl:annotatedTarget>
<oboInOwl:hasDbXref>GOC:mtg_cell_cycle</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0008064 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0008064">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0030832"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0110053"/>
<obo:IAO_0000115>Any process that modulates the frequency, rate or extent of the assembly or disassembly of actin filaments by the addition or removal of actin monomers from a filament.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace>biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:id>GO:0008064</oboInOwl:id>
<rdfs:label>regulation of actin polymerization or depolymerization</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/GO_0008064"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Any process that modulates the frequency, rate or extent of the assembly or disassembly of actin filaments by the addition or removal of actin monomers from a filament.</owl:annotatedTarget>
<oboInOwl:hasDbXref>GOC:mah</oboInOwl:hasDbXref>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0008150 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0008150">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<obo:IAO_0000115>A biological process is the execution of a genetically-encoded biological module or program. It consists of all the steps required to achieve the specific biological objective of the module. A biological process is accomplished by a particular set of molecular functions carried out by specific gene products (or macromolecular complexes), often in a highly regulated manner and in a particular temporal sequence.</obo:IAO_0000115>
<obo:IAO_0000233 rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">https://github.com/geneontology/go-ontology/issues/24968</obo:IAO_0000233>
<oboInOwl:created_by>jl</oboInOwl:created_by>
<oboInOwl:creation_date>2012-09-19T15:05:24Z</oboInOwl:creation_date>
<oboInOwl:hasAlternativeId>GO:0000004</oboInOwl:hasAlternativeId>
<oboInOwl:hasAlternativeId>GO:0007582</oboInOwl:hasAlternativeId>
<oboInOwl:hasAlternativeId>GO:0044699</oboInOwl:hasAlternativeId>
<oboInOwl:hasDbXref>Wikipedia:Biological_process</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym>biological process</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>physiological process</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasRelatedSynonym>single organism process</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>single-organism process</oboInOwl:hasRelatedSynonym>
<oboInOwl:id>GO:0008150</oboInOwl:id>
<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_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_pombe"/>