-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathclo_import.owl
8871 lines (5951 loc) · 600 KB
/
clo_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/envo/imports/clo_import.owl#"
xml:base="http://purl.obolibrary.org/obo/envo/imports/clo_import.owl"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:obo="http://purl.obolibrary.org/obo/">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/envo/imports/clo_import.owl"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasExactSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000001 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000001">
<rdfs:label xml:lang="en">entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000002 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000002">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000001"/>
<obo:IAO_0000115 xml:lang="en">An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.</obo:IAO_0000115>
<rdfs:label xml:lang="en">continuant</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000003">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000001"/>
<obo:IAO_0000115 xml:lang="en">An entity that has temporal parts and that happens, unfolds or develops through time.</obo:IAO_0000115>
<rdfs:label xml:lang="en">occurrent</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000004 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000004">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000002"/>
<obo:IAO_0000115 xml:lang="en">A continuant that is a bearer of quality and realizable entity entities, in which other entities inhere and which itself cannot inhere in anything.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="en">b is an independent continuant = Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])</obo:IAO_0000115>
<rdfs:label xml:lang="en">independent continuant</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000015">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000003"/>
<obo:IAO_0000115 xml:lang="en">An occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="en">p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])</obo:IAO_0000115>
<rdfs:label xml:lang="en">process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000016 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000016">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000017"/>
<rdfs:label xml:lang="en">disposition</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000017 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000017">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000020"/>
<obo:IAO_0000115 xml:lang="en">A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.</obo:IAO_0000115>
<rdfs:label xml:lang="en">realizable entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000019 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000019">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000020"/>
<rdfs:label xml:lang="en">quality</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000020 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000020">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000002"/>
<obo:IAO_0000115 xml:lang="en">A continuant that inheres in or is borne by other entities. Every instance of A requires some specific instance of B which must always be the same.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="en">b is a relational specifically dependent continuant = Def. b is a specifically dependent continuant and there are n &gt; 1 independent continuants c1, … cn which are not spatial regions are such that for all 1 i &lt; j n, ci and cj share no common parts, are such that for each 1 i n, b s-depends_on ci at every time t during the course of b’s existence (axiom label in BFO2 Reference: [131-004])</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="en">b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])</obo:IAO_0000115>
<rdfs:label xml:lang="en">specifically dependent continuant</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000023 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000023">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000017"/>
<obo:IAO_0000115 xml:lang="en">A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.</obo:IAO_0000115>
<rdfs:label xml:lang="en">role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000031 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000031">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000002"/>
<obo:IAO_0000115 xml:lang="en">A continuant that is dependent on one or other independent continuant bearers. For every instance of A requires some instance of (an independent continuant type) B but which instance of B serves can change from time to time.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="en">b is a generically dependent continuant = Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])</obo:IAO_0000115>
<rdfs:label xml:lang="en">generically dependent continuant</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000034 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000034">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000016"/>
<rdfs:label xml:lang="en">function</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/BFO_0000040 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000040">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000004"/>
<obo:IAO_0000115 xml:lang="en">An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.</obo:IAO_0000115>
<rdfs:label xml:lang="en">material entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CARO_0000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CARO_0000003">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CARO_0000006"/>
<rdfs:label xml:lang="en">anatomical structure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CARO_0000006 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CARO_0000006">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
<rdfs:label xml:lang="en">material anatomical entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CHEBI_24431 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_24431">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A chemical entity is a physical entity of interest in chemistry including molecular entities, parts thereof, and chemical substances.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chemical entity</oboInOwl:hasExactSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chemical entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CLO_0000031 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CLO_0000031">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0001905"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0100060"/>
<obo:IAO_0000115 xml:lang="en">A cultured cell population that represents a genetically stable and homogenous population of cultured cells that shares a common propagation history (i.e. has been successively passaged together in culture). </obo:IAO_0000115>
<obo:IAO_0000115>A cultured cell population that represents a genetically stable and homogenous population of cultured cells that shares a common propagation history (i.e. has been successively passaged together in culture).
</obo:IAO_0000115>
<rdfs:label xml:lang="en">cell line</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0003008 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0003008">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0032501"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">system process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0006807 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0006807">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0008152"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nitrogen compound metabolic process</rdfs:label>
</owl:Class>
<!-- 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 rdf:datatype="http://www.w3.org/2001/XMLSchema#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:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biological process</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">physiological process</oboInOwl:hasExactSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biological_process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0008152 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0008152">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0008150"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">metabolic process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0009058 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0009058">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0008152"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biosynthetic process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0009987 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0009987">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0008150"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#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:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cell physiology</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cellular physiological process</oboInOwl:hasExactSynonym>
<oboInOwl:hasNarrowSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cell growth and/or maintenance</oboInOwl:hasNarrowSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cellular process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0032501 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0032501">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0008150"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">multicellular organismal process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0034641 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0034641">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0006807"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0044237"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cellular nitrogen compound metabolic process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0040011 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0040011">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0008150"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Self-propelled movement of a cell or organism from one location to another.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">locomotion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0044237 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0044237">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0008152"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0009987"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cellular metabolic process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0044249 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0044249">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0009058"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0044237"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cellular biosynthetic process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0044281 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0044281">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0008152"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">small molecule metabolic process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0044763 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0044763">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0008150"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0009987"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Any process that is carried out at the cellular level, occurring within a single organism.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">single-organism cellular process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_0071704 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0071704">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0008152"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">organic substance metabolic process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/GO_1901576 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_1901576">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0009058"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0071704"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">organic substance biosynthetic process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000003">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000009"/>
<obo:IAO_0000115 xml:lang="en">A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure.</obo:IAO_0000115>
<rdfs:label xml:lang="en">measurement unit label</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000005 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000005">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000033"/>
<obo:IAO_0000115 xml:lang="en">a directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.</obo:IAO_0000115>
<rdfs:label xml:lang="en">objective specification</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000007 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000007">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000033"/>
<obo:IAO_0000115 xml:lang="en">a directive information entity that describes an action the bearer will take</obo:IAO_0000115>
<rdfs:label xml:lang="en">action specification</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000009 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000009">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000115 xml:lang="en">A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label</obo:IAO_0000115>
<rdfs:label xml:lang="en">label</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000027 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000027">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000115 xml:lang="en">a data item is an information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.</obo:IAO_0000115>
<rdfs:label xml:lang="en">data item</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000030 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000030">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000031"/>
<obo:IAO_0000115 xml:lang="en">A generically dependent continuant that is about some thing.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="en">an information content entity is an entity that is generically dependent on some artifact and stands in relation of aboutness to some entity</obo:IAO_0000115>
<rdfs:label xml:lang="en">information content entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000032 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000032">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000109"/>
<obo:IAO_0000115 xml:lang="en">a scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label.</obo:IAO_0000115>
<rdfs:label xml:lang="en">scalar measurement datum</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000033 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000033">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000115 xml:lang="en">An information content entity whose concretizations indicate to their bearer how to realize them in a process.</obo:IAO_0000115>
<rdfs:label xml:lang="en">directive information entity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000078 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000078">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000102"/>
<obo:IAO_0000115 xml:lang="en">The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.</obo:IAO_0000115>
<rdfs:label xml:lang="en">curation status specification</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000100 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000100">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
<obo:IAO_0000115 xml:lang="en">A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets.</obo:IAO_0000115>
<rdfs:label xml:lang="en">data set</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000102 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000102">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
<obo:IAO_0000115 xml:lang="en">data about an ontology part is a data item about a part of an ontology, for example a term</obo:IAO_0000115>
<rdfs:label xml:lang="en">data about an ontology part</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000104 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000104">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000033"/>
<obo:IAO_0000115 xml:lang="en">A directive information entity with action specifications and objective specifications as parts that, when concretized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified.</obo:IAO_0000115>
<rdfs:label xml:lang="en">plan specification</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000109 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000109">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
<obo:IAO_0000115 xml:lang="en">A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.</obo:IAO_0000115>
<rdfs:label xml:lang="en">measurement datum</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/IAO_0000310 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000310">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000115 xml:lang="en">A collection of information content entities intended to be understood together as a whole</obo:IAO_0000115>
<rdfs:label xml:lang="en">document</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_10239 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_10239">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0100026"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Viruses</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_117571 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_117571">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_7742"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_89593"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Euteleostomi</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_197562 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_197562">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_6656"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pancrustacea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_2 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_2">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0100026"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bacteria</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_207598 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_207598">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_9604"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Homininae</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_2157 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_2157">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0100026"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Archaea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_2759 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_2759">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0100026"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eukaryota</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_27592 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_27592">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_9895"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bovinae</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_314145 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_314145">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_9347"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Laurasiatheria</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_314146 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_314146">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_40674"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_9347"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Euarchontoglires</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_314293 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_314293">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_9443"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Simiiformes</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_314295 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_314295">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_9443"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_9526"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hominoidea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_32523 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_32523">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_117571"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tetrapoda</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_32524 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_32524">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_32523"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Amniota</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_32525 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_32525">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_32524"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Theria <Mammalia></rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_32561 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_32561">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_8457"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sauria</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_33154 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_33154">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_2759"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Opisthokonta</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_33213 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_33213">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_2759"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_33154"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bilateria</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_33317 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_33317">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_33213"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Protostomia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_35497 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_35497">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_91561"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Suina</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_35500 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_35500">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_91561"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pecora</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_40674 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_40674">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_32524"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0100026"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Mammalia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_6656 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_6656">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_33317"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arthropoda</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_7742 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_7742">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_33213"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Vertebrata <Metazoa></rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_8457 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_8457">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_32524"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0100026"/>
<owl:disjointWith rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_9606"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sauropsida</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_8825 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_8825">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_32561"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Neognathae</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_89593 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_89593">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_33213"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Craniata <chordata></rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_8976 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_8976">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_8825"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Galliformes</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_9005 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_9005">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_8976"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Phasianidae</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_9031 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_9031">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_9005"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Gallus gallus</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_91561 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_91561">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_314145"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_40674"/>
<owl:disjointWith rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_9606"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cetartiodactyla</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_9347 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_9347">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_32525"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eutheria</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_9443 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_9443">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_314146"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_40674"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Primates</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_9526 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_9526">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_314293"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Catarrhini</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_9604 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_9604">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_314295"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_9443"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Hominidae</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_9606 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_9606">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_207598"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_314146"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Homo sapiens</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_9823 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_9823">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_35497"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_91561"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sus scrofa</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_9895 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_9895">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_35500"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bovidae</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_9913 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_9913">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_27592"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_91561"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bos taurus</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000011 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000011">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<obo:IAO_0000115 xml:lang="en">A processual entity that realizes a plan which is the concretization of a plan specification.</obo:IAO_0000115>
<rdfs:label xml:lang="en">planned process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000047 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000047">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
<obo:IAO_0000115 xml:lang="en">Is a material entity that is created or changed during material processing.</obo:IAO_0000115>
<rdfs:label xml:lang="en">processed material</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000094 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000094">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
<obo:IAO_0000115 xml:lang="en">A planned process which results in physical changes in a specified input material</obo:IAO_0000115>
<rdfs:label xml:lang="en">material processing</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000245 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000245">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000040"/>
<obo:IAO_0000115 xml:lang="en">An entity that can bear roles, has members, and has a set of organization rules. Members of organizations are either organizations themselves or individual people. Members can bear specific organization member roles that are determined in the organization rules. The organization rules also determine how decisions are made on behalf of the organization by the organization members.</obo:IAO_0000115>
<rdfs:label xml:lang="en">organization</rdfs:label>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">organization</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000456 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000456">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000005"/>
<obo:IAO_0000115 xml:lang="en">an objective specifiction that creates an specific output object from input materials.</obo:IAO_0000115>
<rdfs:label xml:lang="en">material transformation objective</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000457 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000457">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000094"/>
<obo:IAO_0000115 xml:lang="en">Manufacturing is a process with the intent to produce a processed material which will have a function for future use. A person or organization (having manufacturer role) is a participant in this process</obo:IAO_0000115>
<rdfs:label xml:lang="en">manufacturing</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000458 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000458">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000456"/>
<obo:IAO_0000115 xml:lang="en">is the objective to manufacture a material of a certain function (device)</obo:IAO_0000115>
<rdfs:label xml:lang="en">manufacturing objective</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000571 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000571">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000023"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Manufacturer role is a role which inheres in a person or organization and which is realized by a manufacturing process.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">manufacturer role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000968 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000968">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000047"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A material entity that is designed to perform a function in a scientific investigation, but is not a reagent.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">device</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0001905 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0001905">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0100060"/>
<obo:IAO_0000115>A cultured cell population that is derived through one or more passages in culture.</obo:IAO_0000115>
<rdfs:label>secondary cultured cell population</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0100026 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0100026">
<owl:equivalentClass>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">