-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmitosis.owl
690 lines (574 loc) · 42.9 KB
/
mitosis.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
<?xml version="1.0"?>
<!DOCTYPE rdf:RDF [
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY obo "http://purl.obolibrary.org/obo/" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY mitosis "http://purl.obolibrary.org/obo/mitosis#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
<!ENTITY oboInOwl "http://www.geneontology.org/formats/oboInOwl#" >
]>
<rdf:RDF xmlns="&obo;mitosis.owl#"
xml:base="&obo;mitosis.owl"
xmlns:mitosis="&obo;mitosis#"
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#">
<owl:Ontology rdf:about="&obo;mitosis.owl">
<oboInOwl:hasOBOFormatVersion rdf:datatype="&xsd;string">1.2</oboInOwl:hasOBOFormatVersion>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<owl:AnnotationProperty rdf:about="&obo;mitosis#gosubset_prok">
<rdfs:comment rdf:datatype="&xsd;string">Prokaryotic GO subset</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;shorthand">
<rdfs:label rdf:datatype="&xsd;string">shorthand</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;inSubset">
<rdfs:label rdf:datatype="&xsd;string">in_subset</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;hasScope">
<rdfs:label rdf:datatype="&xsd;string">has_scope</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;hasOBOFormatVersion">
<rdfs:label rdf:datatype="&xsd;string">has_obo_format_version</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;mitosis#systematic_synonym">
<rdfs:label rdf:datatype="&xsd;string">Systematic synonym</rdfs:label>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SynonymTypeProperty"/>
<oboInOwl:hasScope rdf:resource="&oboInOwl;hasExactSynonym"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;IAO_0000115">
<rdfs:label rdf:datatype="&xsd;string">definition</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;mitosis#mf_needs_review">
<rdfs:comment rdf:datatype="&xsd;string">Catalytic activity terms in need of attention</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;hasDbXref">
<rdfs:label rdf:datatype="&xsd;string">database_cross_reference</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;IAO_0000119"/>
<owl:AnnotationProperty rdf:about="&obo;IAO_0000117"/>
<owl:AnnotationProperty rdf:about="&oboInOwl;hasAlternativeId">
<rdfs:label rdf:datatype="&xsd;string">has_alternative_id</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;hasOBONamespace">
<rdfs:label rdf:datatype="&xsd;string">has_obo_namespace</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;SubsetProperty">
<rdfs:label rdf:datatype="&xsd;string">subset_property</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;mitosis#high_level_annotation_qc">
<rdfs:comment rdf:datatype="&xsd;string">High-level terms not to be used for direct annotation</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;id"/>
<owl:AnnotationProperty rdf:about="&obo;mitosis#goslim_candida">
<rdfs:comment rdf:datatype="&xsd;string">Candida GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;mitosis#goslim_yeast">
<rdfs:comment rdf:datatype="&xsd;string">Yeast GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;SynonymTypeProperty">
<rdfs:label rdf:datatype="&xsd;string">synonym_type_property</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&rdfs;label"/>
<owl:AnnotationProperty rdf:about="&oboInOwl;hasExactSynonym">
<rdfs:label rdf:datatype="&xsd;string">has_exact_synonym</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&rdfs;comment"/>
<owl:AnnotationProperty rdf:about="&obo;mitosis#goslim_generic">
<rdfs:comment rdf:datatype="&xsd;string">Generic GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;mitosis#goslim_aspergillus">
<rdfs:comment rdf:datatype="&xsd;string">Aspergillus GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;mitosis#goslim_plant">
<rdfs:comment rdf:datatype="&xsd;string">Plant GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;hasRelatedSynonym">
<rdfs:label rdf:datatype="&xsd;string">has_related_synonym</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;IAO_0000412"/>
<owl:AnnotationProperty rdf:about="&obo;mitosis#goslim_pir">
<rdfs:comment rdf:datatype="&xsd;string">PIR GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&oboInOwl;hasNarrowSynonym">
<rdfs:label rdf:datatype="&xsd;string">has_narrow_synonym</rdfs:label>
</owl:AnnotationProperty>
<owl:AnnotationProperty rdf:about="&obo;mitosis#goslim_pombe">
<rdfs:comment rdf:datatype="&xsd;string">Fission yeast GO slim</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&oboInOwl;SubsetProperty"/>
</owl:AnnotationProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000050 -->
<owl:ObjectProperty rdf:about="&obo;BFO_0000050">
<rdf:type rdf:resource="&owl;TransitiveProperty"/>
<rdfs:label rdf:datatype="&xsd;string">part_of</rdfs:label>
<rdfs:label xml:lang="en">part of</rdfs:label>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">BFO:0000050</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">OBO_REL:part_of</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">gene_ontology</oboInOwl:hasOBONamespace>
<oboInOwl:id rdf:datatype="&xsd;string">part_of</oboInOwl:id>
<oboInOwl:shorthand rdf:datatype="&xsd;string">part_of</oboInOwl:shorthand>
<obo:IAO_0000412 rdf:resource="&obo;BFO"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002211 -->
<owl:ObjectProperty rdf:about="&obo;RO_0002211">
<rdfs:label xml:lang="en">regulates</rdfs:label>
<obo:IAO_0000117>Tanya Berardini</obo:IAO_0000117>
<obo:IAO_0000115>x regulates y if and only if x is a process and y is either a process or a quality, and the progression of x exerts an effect on the frequency, rate or exteny of y</obo:IAO_0000115>
<obo:IAO_0000117>Chris Mungall</obo:IAO_0000117>
<obo:IAO_0000119>GO</obo:IAO_0000119>
<obo:IAO_0000117>David Hill</obo:IAO_0000117>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002212 -->
<owl:ObjectProperty rdf:about="&obo;RO_0002212">
<rdfs:label xml:lang="en">negatively regulates</rdfs:label>
<obo:IAO_0000115>x negatively regulates y if and only if x is a process and y is either a process or a quality, and the progression of x reduces the frequency, rate or exteny of y</obo:IAO_0000115>
<rdfs:subPropertyOf rdf:resource="&obo;RO_0002211"/>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/RO_0002213 -->
<owl:ObjectProperty rdf:about="&obo;RO_0002213">
<rdfs:label xml:lang="en">positively regulates</rdfs:label>
<obo:IAO_0000115>x negatively regulates y if and only if x is a process and y is either a process or a quality, and the progression of x increases the frequency, rate or exteny of y</obo:IAO_0000115>
<rdfs:subPropertyOf rdf:resource="&obo;RO_0002211"/>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/GO_0000087 -->
<owl:Class rdf:about="&obo;GO_0000087">
<rdfs:label rdf:datatype="&xsd;string">M phase of mitotic cell cycle</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;GO_0000279"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000050"/>
<owl:someValuesFrom rdf:resource="&obo;GO_0000278"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="&obo;GO_0000279"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000050"/>
<owl:someValuesFrom rdf:resource="&obo;GO_0000278"/>
</owl:Restriction>
</rdfs:subClassOf>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0000087</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">M phase occurring as part of the mitotic cell cycle. M phase is the part of the cell cycle during which nuclear division takes place. A mitotic cell cycle is one which canonically comprises four successive phases called G1, S, G2, and M and includes replication of the genome and the subsequent segregation of chromosomes into daughter cells.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">M-phase of mitotic cell cycle</oboInOwl:hasExactSynonym>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_105412</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_107095</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_109059</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_29488</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_33490</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_82055</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_87132</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_88263</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_910</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_92998</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_93131</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_93566</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_93720</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_94536</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:dph</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:mah</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0815316194</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">M phase occurring as part of the mitotic cell cycle. M phase is the part of the cell cycle during which nuclear division takes place. A mitotic cell cycle is one which canonically comprises four successive phases called G1, S, G2, and M and includes replication of the genome and the subsequent segregation of chromosomes into daughter cells.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0000087"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0000278 -->
<owl:Class rdf:about="&obo;GO_0000278">
<rdfs:label rdf:datatype="&xsd;string">mitotic cell cycle</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;GO_0007049"/>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0000278</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">Progression through the phases of the mitotic cell cycle, the most common eukaryotic cell cycle, which canonically comprises four successive phases called G1, S, G2, and M and includes replication of the genome and the subsequent segregation of chromosomes into daughter cells. In some variant cell cycles nuclear replication or nuclear division may not be followed by cell division, or G1 and G2 phases may be absent.</obo:IAO_0000115>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_100451</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_104035</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_104195</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_105856</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_108233</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_152</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_28464</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_28953</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_33388</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_53493</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_79085</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_84794</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_85137</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_85950</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_90332</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_90846</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_96281</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_97744</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:REACT_98208</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_yeast"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:mah</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0815316194</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">Progression through the phases of the mitotic cell cycle, the most common eukaryotic cell cycle, which canonically comprises four successive phases called G1, S, G2, and M and includes replication of the genome and the subsequent segregation of chromosomes into daughter cells. In some variant cell cycles nuclear replication or nuclear division may not be followed by cell division, or G1 and G2 phases may be absent.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Reactome:69278</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="&obo;GO_0000278"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0000279 -->
<owl:Class rdf:about="&obo;GO_0000279">
<rdfs:label rdf:datatype="&xsd;string">M phase</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;GO_0022403"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A cell cycle process comprising the steps by which a cell progresses through M phase, the part of the cell cycle comprising nuclear division.</obo:IAO_0000115>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0000279</oboInOwl:id>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">M-phase</oboInOwl:hasExactSynonym>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Wikipedia:M_phase</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="&xsd;string">A cell cycle process comprising the steps by which a cell progresses through M phase, the part of the cell cycle comprising nuclear division.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:dph</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:mah</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0815316194</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="&obo;GO_0000279"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0000280 -->
<owl:Class rdf:about="&obo;GO_0000280">
<rdfs:label rdf:datatype="&xsd;string">nuclear division</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;GO_0048285"/>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0000280</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The division of a cell nucleus into two nuclei, with DNA and other nuclear contents distributed between the daughter nuclei.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasRelatedSynonym rdf:datatype="&xsd;string">karyokinesis</oboInOwl:hasRelatedSynonym>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_pir"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:mah</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The division of a cell nucleus into two nuclei, with DNA and other nuclear contents distributed between the daughter nuclei.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0000280"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0006996 -->
<owl:Class rdf:about="&obo;GO_0006996">
<rdfs:label rdf:datatype="&xsd;string">organelle organization</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;GO_0071842"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A process that is carried out at the cellular level which results in the assembly, arrangement of constituent parts, or disassembly of an organelle within a cell. An organelle is an organized structure of distinctive morphology and function. Includes the nucleus, mitochondria, plastids, vacuoles, vesicles, ribosomes and the cytoskeleton. Excludes the plasma membrane.</obo:IAO_0000115>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0006996</oboInOwl:id>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">organelle organisation</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="&xsd;string">organelle organization and biogenesis</oboInOwl:hasRelatedSynonym>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_aspergillus"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_candida"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="&xsd;string">A process that is carried out at the cellular level which results in the assembly, arrangement of constituent parts, or disassembly of an organelle within a cell. An organelle is an organized structure of distinctive morphology and function. Includes the nucleus, mitochondria, plastids, vacuoles, vesicles, ribosomes and the cytoskeleton. Excludes the plasma membrane.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:mah</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="&obo;GO_0006996"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:dph</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:jl</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:mah</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">organelle organization and biogenesis</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0006996"/>
<owl:annotatedProperty rdf:resource="&oboInOwl;hasRelatedSynonym"/>
</owl:Axiom>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:curators</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">organelle organisation</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0006996"/>
<owl:annotatedProperty rdf:resource="&oboInOwl;hasExactSynonym"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0007049 -->
<owl:Class rdf:about="&obo;GO_0007049">
<rdfs:label rdf:datatype="&xsd;string">cell cycle</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;GO_0009987"/>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0007049</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The progression of biochemical and morphological phases and events that occur in a cell during successive cell replication or nuclear replication events. Canonically, the cell cycle comprises the replication and segregation of genetic material followed by the division of the cell, but in endocycles or syncytial cells nuclear replication or nuclear division may not be followed by cell division.</obo:IAO_0000115>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Wikipedia:Cell_cycle</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">cell-division cycle</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_aspergillus"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_candida"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_generic"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_plant"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:go_curators</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The progression of biochemical and morphological phases and events that occur in a cell during successive cell replication or nuclear replication events. Canonically, the cell cycle comprises the replication and segregation of genetic material followed by the division of the cell, but in endocycles or syncytial cells nuclear replication or nuclear division may not be followed by cell division.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0007049"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0007067 -->
<owl:Class rdf:about="&obo;GO_0007067">
<rdfs:label rdf:datatype="&xsd;string">mitosis</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;GO_0000280"/>
<rdfs:subClassOf rdf:resource="&obo;GO_0022403"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000050"/>
<owl:someValuesFrom rdf:resource="&obo;GO_0000087"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A cell cycle process comprising the steps by which the nucleus of a eukaryotic cell divides; the process involves condensation of chromosomal DNA into a highly compacted form. Canonically, mitosis produces two daughter nuclei whose chromosome complement is identical to that of the mother cell.</obo:IAO_0000115>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0007067</oboInOwl:id>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Wikipedia:Mitosis</oboInOwl:hasDbXref>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_generic"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="&xsd;string">A cell cycle process comprising the steps by which the nucleus of a eukaryotic cell divides; the process involves condensation of chromosomal DNA into a highly compacted form. Canonically, mitosis produces two daughter nuclei whose chromosome complement is identical to that of the mother cell.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:dph</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:ma</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:mah</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">ISBN:0198547684</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="&obo;GO_0007067"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0008150 -->
<owl:Class rdf:about="&obo;GO_0008150">
<rdfs:label rdf:datatype="&xsd;string">biological_process</rdfs:label>
<obo:IAO_0000115 rdf:datatype="&xsd;string">Any process specifically pertinent to the functioning of integrated living units: cells, tissues, organs, and organisms. A process is a collection of molecular events with a defined beginning and end.</obo:IAO_0000115>
<oboInOwl:hasAlternativeId rdf:datatype="&xsd;string">GO:0000004</oboInOwl:hasAlternativeId>
<oboInOwl:hasAlternativeId rdf:datatype="&xsd;string">GO:0007582</oboInOwl:hasAlternativeId>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0008150</oboInOwl:id>
<rdfs:comment rdf:datatype="&xsd;string">Note that, in addition to forming the root of the biological process ontology, this term is recommended for use for the annotation of gene products whose biological process is unknown. Note that when this term is used for annotation, it indicates that no information was available about the biological process of the gene product annotated as of the date the annotation was made; the evidence code ND, no data, is used to indicate this.</rdfs:comment>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">Wikipedia:Biological_process</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">biological process</oboInOwl:hasExactSynonym>
<oboInOwl:hasNarrowSynonym rdf:datatype="&xsd;string">biological process unknown</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">physiological process</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_aspergillus"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_candida"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_generic"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_plant"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_pombe"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_yeast"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="&xsd;string">Any process specifically pertinent to the functioning of integrated living units: cells, tissues, organs, and organisms. A process is a collection of molecular events with a defined beginning and end.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:go_curators</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:isa_complete</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="&obo;GO_0008150"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0009987 -->
<owl:Class rdf:about="&obo;GO_0009987">
<rdfs:label rdf:datatype="&xsd;string">cellular process</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;GO_0008150"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">Any process that is carried out at the cellular level, but not necessarily restricted to a single cell. For example, cell communication occurs among more than one cell, but occurs at the cellular level.</obo:IAO_0000115>
<oboInOwl:hasAlternativeId rdf:datatype="&xsd;string">GO:0008151</oboInOwl:hasAlternativeId>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0009987</oboInOwl:id>
<oboInOwl:hasAlternativeId rdf:datatype="&xsd;string">GO:0050875</oboInOwl:hasAlternativeId>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasNarrowSynonym rdf:datatype="&xsd;string">cell growth and/or maintenance</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">cell physiology</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">cellular physiological process</oboInOwl:hasExactSynonym>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_plant"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="&xsd;string">Any process that is carried out at the cellular level, but not necessarily restricted to a single cell. For example, cell communication occurs among more than one cell, but occurs at the cellular level.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:go_curators</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:isa_complete</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="&obo;GO_0009987"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0016043 -->
<owl:Class rdf:about="&obo;GO_0016043">
<rdfs:label rdf:datatype="&xsd;string">cellular component organization</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;GO_0071840"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A process that results in the assembly, arrangement of constituent parts, or disassembly of a cellular component.</obo:IAO_0000115>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0016043</oboInOwl:id>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:hasExactSynonym rdf:datatype="&xsd;string">cell organisation</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="&xsd;string">cell organization and biogenesis</oboInOwl:hasRelatedSynonym>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_plant"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="&xsd;string">A process that results in the assembly, arrangement of constituent parts, or disassembly of a cellular component.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:ai</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:jl</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:mah</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="&obo;GO_0016043"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:mah</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">cell organization and biogenesis</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0016043"/>
<owl:annotatedProperty rdf:resource="&oboInOwl;hasRelatedSynonym"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0022402 -->
<owl:Class rdf:about="&obo;GO_0022402">
<rdfs:label rdf:datatype="&xsd;string">cell cycle process</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;GO_0009987"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;BFO_0000050"/>
<owl:someValuesFrom rdf:resource="&obo;GO_0007049"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A cellular process that is involved in the progression of biochemical and morphological phases and events that occur in a cell during successive cell replication or nuclear replication events.</obo:IAO_0000115>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0022402</oboInOwl:id>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#gosubset_prok"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="&xsd;string">A cellular process that is involved in the progression of biochemical and morphological phases and events that occur in a cell during successive cell replication or nuclear replication events.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:isa_complete</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="&obo;GO_0022402"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0022403 -->
<owl:Class rdf:about="&obo;GO_0022403">
<rdfs:label rdf:datatype="&xsd;string">cell cycle phase</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;GO_0022402"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A cell cycle process comprising the steps by which a cell progresses through one of the biochemical and morphological phases and events that occur during successive cell replication or nuclear replication events.</obo:IAO_0000115>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0022403</oboInOwl:id>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="&xsd;string">A cell cycle process comprising the steps by which a cell progresses through one of the biochemical and morphological phases and events that occur during successive cell replication or nuclear replication events.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:dph</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:isa_complete</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:tb</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="&obo;GO_0022403"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0048285 -->
<owl:Class rdf:about="&obo;GO_0048285">
<rdfs:label rdf:datatype="&xsd;string">organelle fission</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;GO_0006996"/>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0048285</oboInOwl:id>
<obo:IAO_0000115 rdf:datatype="&xsd;string">The creation of two or more organelles by division of one organelle.</obo:IAO_0000115>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_pir"/>
<oboInOwl:inSubset rdf:resource="&obo;mitosis#goslim_yeast"/>
</owl:Class>
<owl:Axiom>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:jid</oboInOwl:hasDbXref>
<owl:annotatedTarget rdf:datatype="&xsd;string">The creation of two or more organelles by division of one organelle.</owl:annotatedTarget>
<owl:annotatedSource rdf:resource="&obo;GO_0048285"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0071840 -->
<owl:Class rdf:about="&obo;GO_0071840">
<rdfs:label rdf:datatype="&xsd;string">cellular component organization or biogenesis</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;GO_0008150"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A process that results in the biosynthesis of constituent macromolecules, assembly, arrangement of constituent parts, or disassembly of a cellular component.</obo:IAO_0000115>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0071840</oboInOwl:id>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="&xsd;string">A process that results in the biosynthesis of constituent macromolecules, assembly, arrangement of constituent parts, or disassembly of a cellular component.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:mah</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="&obo;GO_0071840"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0071841 -->
<owl:Class rdf:about="&obo;GO_0071841">
<rdfs:label rdf:datatype="&xsd;string">cellular component organization or biogenesis at cellular level</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;GO_0009987"/>
<rdfs:subClassOf rdf:resource="&obo;GO_0071840"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A process that is carried out at the cellular level, and results in the biosynthesis of constituent macromolecules, assembly, arrangement of constituent parts, or disassembly of a cellular component.</obo:IAO_0000115>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0071841</oboInOwl:id>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="&xsd;string">A process that is carried out at the cellular level, and results in the biosynthesis of constituent macromolecules, assembly, arrangement of constituent parts, or disassembly of a cellular component.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:mah</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="&obo;GO_0071841"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/GO_0071842 -->
<owl:Class rdf:about="&obo;GO_0071842">
<rdfs:label rdf:datatype="&xsd;string">cellular component organization at cellular level</rdfs:label>
<rdfs:subClassOf rdf:resource="&obo;GO_0016043"/>
<rdfs:subClassOf rdf:resource="&obo;GO_0071841"/>
<obo:IAO_0000115 rdf:datatype="&xsd;string">A process that is carried out at the cellular level and results in the assembly, arrangement of constituent parts, or disassembly of a cellular component.</obo:IAO_0000115>
<oboInOwl:id rdf:datatype="&xsd;string">GO:0071842</oboInOwl:id>
<oboInOwl:hasOBONamespace rdf:datatype="&xsd;string">biological_process</oboInOwl:hasOBONamespace>
</owl:Class>
<owl:Axiom>
<owl:annotatedTarget rdf:datatype="&xsd;string">A process that is carried out at the cellular level and results in the assembly, arrangement of constituent parts, or disassembly of a cellular component.</owl:annotatedTarget>
<oboInOwl:hasDbXref rdf:datatype="&xsd;string">GOC:mah</oboInOwl:hasDbXref>
<owl:annotatedSource rdf:resource="&obo;GO_0071842"/>
<owl:annotatedProperty rdf:resource="&obo;IAO_0000115"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/RO_0002288 -->
<owl:Class rdf:about="&obo;RO_0002288">
<rdfs:label xml:lang="en">regulation of mitosis</rdfs:label>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&obo;RO_0002289"/>
<owl:Restriction>
<owl:onProperty rdf:resource="&obo;RO_0002211"/>
<owl:someValuesFrom rdf:resource="&obo;GO_0007067"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/RO_0002289 -->
<owl:Class rdf:about="&obo;RO_0002289">
<rdfs:label xml:lang="en">regulation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/RO_0002290 -->
<owl:Class rdf:about="&obo;RO_0002290">
<rdfs:label xml:lang="en">regulation and regulates some 'cell cycle phase'</rdfs:label>
</owl:Class>
</rdf:RDF>
<!-- Generated by the OWL API (version 3.2.3.22702) http://owlapi.sourceforge.net -->