-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathflopo_import.owl
6321 lines (4161 loc) · 390 KB
/
flopo_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/flopo_import.owl#"
xml:base="http://purl.obolibrary.org/obo/envo/imports/flopo_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/flopo_import.owl"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
<!-- http://purl.obolibrary.org/obo/IAO_0100001 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0100001"/>
<!-- 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"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasSynonymType -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasSynonymType"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/FLOPO_0000089 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0000089">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">whole plant phenotype</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0022142 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0022142">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0900032"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">whole plant herbaceous</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0900022 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0900022">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0000089"/>
<rdfs:label xml:lang="en">whole plant lifeform</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0900023 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0900023">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0900022"/>
<oboInOwl:hasExactSynonym xml:lang="en">therophyte</oboInOwl:hasExactSynonym>
<rdfs:label xml:lang="en">whole plant therophytic</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0900024 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0900024">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0900031"/>
<oboInOwl:hasExactSynonym xml:lang="en">geophyte</oboInOwl:hasExactSynonym>
<rdfs:label xml:lang="en">whole plant geophytic</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0900025 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0900025">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0900031"/>
<oboInOwl:hasExactSynonym xml:lang="en">helophyte</oboInOwl:hasExactSynonym>
<rdfs:label xml:lang="en">whole plant helophytic</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0900026 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0900026">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0900031"/>
<oboInOwl:hasExactSynonym xml:lang="en">hydrophyte</oboInOwl:hasExactSynonym>
<rdfs:label xml:lang="en">whole plant hydrophytic</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0900027 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0900027">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0900022"/>
<oboInOwl:hasExactSynonym xml:lang="en">hemicryptophyte</oboInOwl:hasExactSynonym>
<rdfs:label xml:lang="en">whole plant hemicryptophytic</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0900028 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0900028">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0900022"/>
<oboInOwl:hasExactSynonym xml:lang="en">chamaephyte</oboInOwl:hasExactSynonym>
<rdfs:label xml:lang="en">whole plant chamaephytic</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0900029 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0900029">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0900022"/>
<oboInOwl:hasExactSynonym xml:lang="en">phanerophyte</oboInOwl:hasExactSynonym>
<rdfs:label xml:lang="en">whole plant phanerophytic</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0900030 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0900030">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0900022"/>
<oboInOwl:hasExactSynonym xml:lang="en">epiphyte</oboInOwl:hasExactSynonym>
<rdfs:label xml:lang="en">whole plant epiphytic</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0900031 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0900031">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0900022"/>
<oboInOwl:hasExactSynonym xml:lang="en">cryptophyte</oboInOwl:hasExactSynonym>
<rdfs:label xml:lang="en">whole plant cryptophytic</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0900032 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0900032">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0000089"/>
<rdfs:label xml:lang="en">whole plant growth form</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0900033 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0900033">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0900032"/>
<oboInOwl:hasExactSynonym xml:lang="en">tree</oboInOwl:hasExactSynonym>
<rdfs:label xml:lang="en">whole plant arborescent</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0900034 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0900034">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0900032"/>
<oboInOwl:hasExactSynonym xml:lang="en">bush</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym xml:lang="en">shrub</oboInOwl:hasExactSynonym>
<rdfs:label xml:lang="en">whole plant frutescent</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0900035 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0900035">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0900032"/>
<oboInOwl:hasExactSynonym xml:lang="en">climber</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym xml:lang="en">liana</oboInOwl:hasExactSynonym>
<rdfs:label xml:lang="en">whole plant lianescent</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0980070 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0980070">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0000089"/>
<rdfs:label xml:lang="en">whole plant lifestyle</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0980071 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0980071">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0980070"/>
<rdfs:label xml:lang="en">whole plant annual</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0980072 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0980072">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0980070"/>
<rdfs:label xml:lang="en">whole plant biennial</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0980073 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0980073">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0980070"/>
<rdfs:label xml:lang="en">whole plant perennial</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/FLOPO_0980082 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/FLOPO_0980082">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/FLOPO_0900022"/>
<oboInOwl:hasExactSynonym>litophyte</oboInOwl:hasExactSynonym>
<rdfs:label xml:lang="en">whole plant litophytic</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_1 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_1">
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">all</oboInOwl:hasRelatedSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">root</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_1"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">all</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#synonym"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_131221 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_131221">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_35493"/>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Charophyta/Embryophyta group</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">charophyte/embryophyte group</oboInOwl:hasRelatedSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Streptophytina</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_131221"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Charophyta/Embryophyta group</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#synonym"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_131221"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">charophyte/embryophyte group</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#synonym"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_131567 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_131567">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_1"/>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biota</oboInOwl:hasRelatedSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cellular organisms</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_131567"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biota</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#synonym"/>
</owl:Axiom>
<!-- 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/NCBITaxon_131567"/>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eucaryotes</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eukaryotes</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eucarya</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eucaryotae</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eukarya</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eukaryotae</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eukaryotes</oboInOwl:hasRelatedSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eukaryota</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_2759"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eukaryotae</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#synonym"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_2759"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eukaryotes</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#blast_name"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_2759"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eucaryotes</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#genbank_common_name"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_2759"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eukaryotes</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#common_name"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_2759"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eucarya</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#synonym"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_2759"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eucaryotae</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#synonym"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_2759"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Eukarya</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#synonym"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_3193 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_3193">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_131221"/>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">higher plants</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">land plants</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plants</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">land plants</oboInOwl:hasRelatedSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Embryophyta</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_3193"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">higher plants</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#common_name"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_3193"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">land plants</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#common_name"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_3193"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plants</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#common_name"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_3193"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">land plants</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#blast_name"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_33090 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_33090">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_2759"/>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">green plants</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chlorobionta</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chlorophyta/Embryophyta group</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chlorophyte/embryophyte group</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">green plants</oboInOwl:hasRelatedSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Viridiplantae</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_33090"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">green plants</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#common_name"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_33090"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chlorobionta</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#synonym"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_33090"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chlorophyta/Embryophyta group</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#synonym"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_33090"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chlorophyte/embryophyte group</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#synonym"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_33090"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">green plants</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#blast_name"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_3398 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_3398">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_58024"/>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">angiosperms</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">flowering plants</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Angiospermae</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">flowering plants</oboInOwl:hasRelatedSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Magnoliophyta</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_3398"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">angiosperms</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#common_name"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_3398"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">flowering plants</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#genbank_common_name"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_3398"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Angiospermae</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#synonym"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_3398"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">flowering plants</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#blast_name"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_35493 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_35493">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_33090"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Streptophyta</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_58023 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_58023">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_3193"/>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vascular plants</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vascular plants</oboInOwl:hasRelatedSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tracheophyta</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_58023"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vascular plants</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#common_name"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_58023"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vascular plants</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#blast_name"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_58024 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_58024">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_78536"/>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">seed plants</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">seed plants</oboInOwl:hasRelatedSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Spermatophyta</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_58024"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">seed plants</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#common_name"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_58024"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">seed plants</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#blast_name"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_78536 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_78536">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_58023"/>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">euphyllophytes</oboInOwl:hasRelatedSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Euphyllophyta</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_78536"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<owl:annotatedTarget rdf:datatype="http://www.w3.org/2001/XMLSchema#string">euphyllophytes</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim#synonym"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/PATO_0000001 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000001">
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A dependent entity that inheres in a bearer by virtue of how the bearer is related to other entities</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">trait</oboInOwl:hasExactSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">quality</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000008 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000008">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001906"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A physical quality inhering in a bearer by virtue of the bearer's scalar absolute value of the rate of change of the bearer's position.</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">velocity</oboInOwl:hasRelatedSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">speed</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000011 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000011">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000165"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A time quality inhering in a bearer by virtue of how long the bearer has existed.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">age</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000014 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000014">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001300"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A composite chromatic quality composed of hue, saturation and intensity parts.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">colour</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">relative color</oboInOwl:hasExactSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">color</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000019 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000019">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000060"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A chromatic property that is the relative position of different hues or degrees of saturation.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">color pattern</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000025 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000025">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000141"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A single physical entity inhering in an bearer by virtue of the bearer's quantities or relative ratios of subparts.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">composed of</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">compositionality</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">content</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">structure, composition</oboInOwl:hasExactSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">composition</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000033 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000033">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0002182"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A quality inhering in a substance by virtue of the amount of the bearer's there is mixed with another substance.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">concentration</oboInOwl:hasExactSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">concentration of</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000039 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000039">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001018"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A physical quality inhering in a bearer by virtue of the bearer's orientation in space.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">direction</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000044 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000044">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000161"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A physical quality which inheres in a bearer by virtue of the number of the bearer's repetitive actions in a particular time.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frequency</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000048 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000048">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001546"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A physical quality inhering in a bearer by virtue of the bearer's resistance to pressure, being broken, or pierced</obo:IAO_0000115>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">impenetrability</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">toughness</oboInOwl:hasRelatedSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hardness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000049 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000049">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000068"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A quality inhering in a bearer by virtue of the bearer's possessing or displaying a distinctive feature in type or degree or effect or force.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">intensity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000051 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000051">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001241"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A quality of a single physical entity inhering in the bearer by virtue of the bearer's size or shape or structure.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">morphology</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000052 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000052">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000051"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A morphological quality inhering in a bearer by virtue of the bearer's ratios of distances between its features (points, edges, surfaces and also holes etc).</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">relational shape quality</oboInOwl:hasExactSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">shape</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000057 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000057">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0002323"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A quality of a single process inhering in a bearer by virtue of the bearer's occurrence.</obo:IAO_0000115>
<oboInOwl:hasBroadSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">temporal</oboInOwl:hasBroadSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">incidence</oboInOwl:hasExactSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">occurrence</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000058 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000058">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001018"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A physical quality inhering in a bearer by virtue of the bearer's molecules being are aerially dispersed and perceived by an odorant receptor.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">odor</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000060 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000060">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000140"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A spatial quality inhering in a bearer by virtue of the bearer's exhibiting repetition of placement of its parts.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">distribution</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pattern</oboInOwl:hasRelatedSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">spatial pattern</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000068 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000068">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000001"/>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">qualitative</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000069 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000069">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000068"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A quality inhering in a bearer by virtue of the whether the bearer differs from normal or average.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">deviation(from_normal)</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000070 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000070">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000068"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The number of entities of this type that are part of the whole organism.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">count</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">presence or absence in organism</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">quantitative</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">count in organism</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">number</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">presence</oboInOwl:hasRelatedSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">amount</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000085 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000085">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001018"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A quality inhering in a bearer by virtue of the bearer's disposition to detect or perceive external stimulation.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sensitivity</oboInOwl:hasExactSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sensitivity toward</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000117 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000117">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000051"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A morphology quality inhering in a bearer by virtue of the bearer's physical magnitude.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">size</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000122 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000122">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001708"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A 1-D extent quality which is equal to the distance between two points.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">length</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000125 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000125">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001018"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A physical quality that inheres in a bearer by virtue of the proportion of the bearer's amount of matter.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000133 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000133">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000140"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A spatial quality inhering in a bearer by virtue of the bearer's placement which is defined by the angle between the bearer and an axis, or the angle between the bearer and another object.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">angular placement</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">amount of rotation</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">angle</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">angular magnitude</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plane angle</oboInOwl:hasRelatedSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">orientation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000136 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000136">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000051"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A morphological quality pertaining to the degree to which an object contains an opening, aperture, orifice or vent.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">closure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000140 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000140">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001018"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A spatial quality inhering in a bearer by virtue of the bearer's spatial location relative to other objects in the vicinity.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">location</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">placement</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">relational spatial quality</oboInOwl:hasExactSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">position</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000141 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000141">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000051"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A morphology quality inhering in a bearer by virtue of the bearer's relative position, shape, arrangements and connectivity of an organism's various parts; the pattern underlying its form.</obo:IAO_0000115>
<oboInOwl:hasBroadSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">conformation</oboInOwl:hasBroadSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">relational structural quality</oboInOwl:hasExactSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">structure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000146 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000146">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001018"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A physical quality of the thermal energy of a system.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">temperature</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000161 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000161">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0002062"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A quality of a single process inhering in a bearer by virtue of the bearer's occurrence per unit time.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rate</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000165 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000165">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001018"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A quality in which events occur in sequence.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">time</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000169 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000169">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001995"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organismal quality inhering in a bearer or a population by virtue of the bearer's disposition to survive and develop normally or the number of surviving individuals in a given population.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">viability</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000186 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000186">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001995"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organismal quality inhering in a bearer by virtue of the bearer's behavior aggregate of the responses or reactions or movements in a given situation.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">behavioural quality</oboInOwl:hasExactSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">behavioral quality</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000303 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000303">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000008"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0002305"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A speed which is relatively high.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">high speed</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fast speed</oboInOwl:hasRelatedSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">increased speed</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000304 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000304">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000008"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0002303"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A speed which is relatively low.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">slow</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym rdf:datatype="http://www.w3.org/2001/XMLSchema#string">slow speed</oboInOwl:hasExactSynonym>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">decreased speed</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000308 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000308">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000011"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An age which is relatively high.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">old</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000309 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000309">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000011"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An age which is relatively low.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">young</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000318 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000318">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000014"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A color hue with low wavelength of that portion of the visible spectrum lying between green and indigo, evoked in the human observer by radiant energy with wavelengths of approximately 420 to 490 nanometers.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">blue</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/PATO_0000330 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PATO_0000330">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000060"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A spatial pattern inhering in a bearer by virtue of the bearer's magnitude of or the relationships between its repeated parts lack consistency.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">irregular spatial pattern</rdfs:label>
</owl:Class>