-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpo_import.owl
2555 lines (2191 loc) · 162 KB
/
po_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/po_import.owl#"
xml:base="http://purl.obolibrary.org/obo/envo/imports/po_import.owl"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/envo/imports/po_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://purl.org/dc/elements/1.1/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
<!-- http://purl.org/dc/elements/1.1/date -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/date"/>
<!-- http://purl.org/dc/terms/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>
<!-- http://purl.org/dc/terms/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title"/>
<!-- http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty"/>
<!-- http://www.geneontology.org/formats/oboInOwl#consider -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#consider"/>
<!-- http://www.geneontology.org/formats/oboInOwl#created_by -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#created_by"/>
<!-- http://www.geneontology.org/formats/oboInOwl#creation_date -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#creation_date"/>
<!-- http://www.geneontology.org/formats/oboInOwl#default-namespace -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#default-namespace"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasAlternativeId -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasAlternativeId"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasDbXref -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasDbXref"/>
<!-- 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#hasOBOFormatVersion -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasOBONamespace -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasOBONamespace"/>
<!-- 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"/>
<!-- http://www.geneontology.org/formats/oboInOwl#id -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#id"/>
<!-- http://www.geneontology.org/formats/oboInOwl#inSubset -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#inSubset"/>
<!-- http://www.geneontology.org/formats/oboInOwl#saved-by -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#saved-by"/>
<!-- http://www.geneontology.org/formats/oboInOwl#shorthand -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#shorthand"/>
<!-- http://www.geneontology.org/formats/oboInOwl#source -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#source"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000050 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000050"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000051 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000051"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000062 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000062"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000063 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000063"/>
<!-- http://purl.obolibrary.org/obo/RO_0000056 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000056"/>
<!-- http://purl.obolibrary.org/obo/RO_0000057 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000057"/>
<!-- http://purl.obolibrary.org/obo/RO_0001025 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0001025"/>
<!-- http://purl.obolibrary.org/obo/RO_0002160 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002160"/>
<!-- http://purl.obolibrary.org/obo/RO_0002202 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002202"/>
<!-- http://purl.obolibrary.org/obo/RO_0002220 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002220"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000015"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000040 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000040"/>
<!-- http://purl.obolibrary.org/obo/NCBITaxon_33090 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NCBITaxon_33090"/>
<!-- http://purl.obolibrary.org/obo/PO_0000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PO_0000003">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PO_0009011"/>
<obo:IAO_0000115>A plant structure (PO:0005679) which is a whole organism.</obo:IAO_0000115>
<oboInOwl:hasBroadSynonym>genet (broad)</oboInOwl:hasBroadSynonym>
<oboInOwl:hasBroadSynonym>ramet (broad)</oboInOwl:hasBroadSynonym>
<oboInOwl:hasDbXref>FNA:4b610104-1bb0-4c6b-9bb9-e3cc61d11ac0</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FNA:99508f62-7116-4e2b-90c0-19ff55ebd967</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FNA:ba1b1bd5-75bd-4195-b11c-3aba08da08c2</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FNA:c1ccca7d-2a98-4a9d-8603-c34b551935e0</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FNA:e4dde193-57f7-4ab9-9d25-96b4ca0088ba</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FNA:ec8c2064-2a67-43d7-8e14-aecfef5cf33b</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>FNA:f8f31520-e4bc-4430-9274-8dd3cee7ffd8</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>PO_GIT:538</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>PO_GIT:69</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym>planta entera (Spanish, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>植物体全体 (Japanese, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasNarrowSynonym>bush (narrow)</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>frutex (narrow)</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>frutices (narrow, plural)</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>gametophyte (narrow)</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>herb (narrow)</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>liana (narrow)</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>prothalli (narrow, plural)</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>prothallium (narrow)</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>prothallus (narrow)</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>shrub (narrow)</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>sporophyte (narrow)</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>suffrutex (narrow)</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>suffrutices (narrow, plural)</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>tree (narrow)</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>vine (narrow)</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasNarrowSynonym>woody clump (narrow)</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasOBONamespace>plant_anatomy</oboInOwl:hasOBONamespace>
<oboInOwl:hasRelatedSynonym>clonal colony (related)</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>colony (related)</oboInOwl:hasRelatedSynonym>
<oboInOwl:id>PO:0000003</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/po#TraitNet"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/po#reference"/>
<rdfs:comment>Examples include plant embryo (PO:0009009), megagametophyte (PO:0025279) and microgametophyte (PO:0025280).</rdfs:comment>
<rdfs:label>whole plant</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000003"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A plant structure (PO:0005679) which is a whole organism.</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:curators</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000003"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"/>
<owl:annotatedTarget>woody clump (narrow)</owl:annotatedTarget>
<oboInOwl:hasDbXref>FNA:c1ccca7d-2a98-4a9d-8603-c34b551935e0</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000003"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>planta entera (Spanish, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:Maria_Alejandra_Gandolfo</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Spanish"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000003"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>植物体全体 (Japanese, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>NIG:Yukiko_Yamazaki</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Japanese"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000003"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"/>
<owl:annotatedTarget>frutex (narrow)</owl:annotatedTarget>
<oboInOwl:hasDbXref>FNA:e4dde193-57f7-4ab9-9d25-96b4ca0088ba</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000003"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"/>
<owl:annotatedTarget>frutices (narrow, plural)</owl:annotatedTarget>
<oboInOwl:hasDbXref>FNA:ec8c2064-2a67-43d7-8e14-aecfef5cf33b</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/OMO_0003004"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000003"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"/>
<owl:annotatedTarget>prothalli (narrow, plural)</owl:annotatedTarget>
<oboInOwl:hasDbXref>FNA:4b610104-1bb0-4c6b-9bb9-e3cc61d11ac0</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/OMO_0003004"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000003"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"/>
<owl:annotatedTarget>prothallus (narrow)</owl:annotatedTarget>
<oboInOwl:hasDbXref>FNA:f8f31520-e4bc-4430-9274-8dd3cee7ffd8</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000003"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"/>
<owl:annotatedTarget>suffrutex (narrow)</owl:annotatedTarget>
<oboInOwl:hasDbXref>FNA:99508f62-7116-4e2b-90c0-19ff55ebd967</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000003"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"/>
<owl:annotatedTarget>suffrutices (narrow, plural)</owl:annotatedTarget>
<oboInOwl:hasDbXref>FNA:ba1b1bd5-75bd-4195-b11c-3aba08da08c2</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/OMO_0003004"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/PO_0000022 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PO_0000022">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PO_0025161"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002220"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PO_0005679"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>A portion of plant substance (PO:0025161) composed of cutin (PO:0025385), a polyester matrix of hydroxy- and hydroxy epoxy fatty acids C16 and C18 chains, embedded and overlayed with cuticular wax (PO:0025386) and forming a layer on the surface of a plant epidermis (PO:0005679).</obo:IAO_0000115>
<oboInOwl:hasBroadSynonym>cuticle (broad)</oboInOwl:hasBroadSynonym>
<oboInOwl:hasDbXref>PO_GIT:416</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym>cut&#237cula (Spanish, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>植物クチクラ (Japanese, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>plant_anatomy</oboInOwl:hasOBONamespace>
<oboInOwl:id>PO:0000022</oboInOwl:id>
<rdfs:comment>The plant cuticle is produced in and secreted by epidermal cells (PO:0004013) of leaves (PO:0025034), stems (PO:0009047), fruits (PO:0009001), and other aerial plant structures. It has as parts an inner cuticle proper (PO:0025387) and an outer layer of epicuticular wax (PO:0025388).</rdfs:comment>
<rdfs:label>plant cuticle</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000022"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A portion of plant substance (PO:0025161) composed of cutin (PO:0025385), a polyester matrix of hydroxy- and hydroxy epoxy fatty acids C16 and C18 chains, embedded and overlayed with cuticular wax (PO:0025386) and forming a layer on the surface of a plant epidermis (PO:0005679).</owl:annotatedTarget>
<oboInOwl:hasDbXref>ISBN:0471245208</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>POC:Laurel_Cooper</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000022"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>cut&#237cula (Spanish, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:Maria_Alejandra_Gandolfo</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Spanish"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000022"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>植物クチクラ (Japanese, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>NIG:Yukiko_Yamazaki</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Japanese"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/PO_0000037 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PO_0000037">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PO_0025029"/>
<obo:IAO_0000115>A shoot axis (PO:0025029) that is the most distal part of a shoot system (PO:0009006) and has as parts a shoot apical meristem (PO:0020148) and the youngest primordia (PO:0025127).</obo:IAO_0000115>
<oboInOwl:hasDbXref>PO_GIT:234</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym>&#225pice del epiblasto (epiblastema) (Spanish, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>シュート頂、茎頂 (Japanese, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>plant_anatomy</oboInOwl:hasOBONamespace>
<oboInOwl:id>PO:0000037</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/po#reference"/>
<rdfs:label>shoot axis apex</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000037"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A shoot axis (PO:0025029) that is the most distal part of a shoot system (PO:0009006) and has as parts a shoot apical meristem (PO:0020148) and the youngest primordia (PO:0025127).</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:curators</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000037"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>&#225pice del epiblasto (epiblastema) (Spanish, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:Maria_Alejandra_Gandolfo</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Spanish"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000037"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>シュート頂、茎頂 (Japanese, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>NIG:Yukiko_Yamazaki</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Japanese"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/PO_0000112 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PO_0000112">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/PO_0006035"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PO_0025029"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PO_0006035"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PO_0025029"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>A portion of shoot system epidermis (PO:0006035) that is part of a shoot axis (PO:0025029).</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>epidermis del eje del tallo (Spanish, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>シュート軸表皮 (Japanese, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasNarrowSynonym>branch epidermis (narrow)</oboInOwl:hasNarrowSynonym>
<oboInOwl:hasOBONamespace>plant_anatomy</oboInOwl:hasOBONamespace>
<oboInOwl:id>PO:0000112</oboInOwl:id>
<rdfs:comment>Can occur on a stem or branch.</rdfs:comment>
<rdfs:label>shoot axis epidermis</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000112"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A portion of shoot system epidermis (PO:0006035) that is part of a shoot axis (PO:0025029).</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:Laurel_Cooper</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>POC:curators</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000112"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>epidermis del eje del tallo (Spanish, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:Maria_Alejandra_Gandolfo</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Spanish"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000112"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>シュート軸表皮 (Japanese, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>NIG:Yukiko_Yamazaki</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Japanese"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/PO_0000225 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PO_0000225">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PO_0009013"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PO_0020148"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>A portion of meristem tissue (PO:0009013) which is the organogenic region of the meristem, characterized by higher rates of cell division.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>zona perif&#233rica (Spanish, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>周辺帯 (Japanese, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>plant_anatomy</oboInOwl:hasOBONamespace>
<oboInOwl:hasRelatedSynonym>peripheral meristem (related)</oboInOwl:hasRelatedSynonym>
<oboInOwl:id>PO:0000225</oboInOwl:id>
<rdfs:label>peripheral zone</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000225"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A portion of meristem tissue (PO:0009013) which is the organogenic region of the meristem, characterized by higher rates of cell division.</owl:annotatedTarget>
<oboInOwl:hasDbXref>ISBN:0521288959</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>TAIR_curator:Leonore_Reiser</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000225"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>zona perif&#233rica (Spanish, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:Maria_Alejandra_Gandolfo</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Spanish"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0000225"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>周辺帯 (Japanese, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>NIG:Yukiko_Yamazaki</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Japanese"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/PO_0004010 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PO_0004010">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PO_0025606"/>
<obo:IAO_0000115>A native plant cell (PO:0025606) synthesizing protoplasm and producing new cells by division and with only a primary cell wall.</obo:IAO_0000115>
<oboInOwl:hasDbXref>CL:0000034</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>PO_GIT:272</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym>c&#233lula meristem&#225tica (Spanish, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>stem cell (exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>分裂組織細胞 (Japanese, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>plant_anatomy</oboInOwl:hasOBONamespace>
<oboInOwl:id>PO:0004010</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/po#CL"/>
<rdfs:label>meristematic cell</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0004010"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A native plant cell (PO:0025606) synthesizing protoplasm and producing new cells by division and with only a primary cell wall.</owl:annotatedTarget>
<oboInOwl:hasDbXref>ISBN:0471245208</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>POC:Laurel_Cooper</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0004010"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>c&#233lula meristem&#225tica (Spanish, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:Maria_Alejandra_Gandolfo</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Spanish"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0004010"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>分裂組織細胞 (Japanese, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>NIG:Yukiko_Yamazaki</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Japanese"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/PO_0005029 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PO_0005029">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PO_0025127"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002202"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PO_0025433"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>A primordium (PO:0025127) that develops from a root anlagen (PO:0025433) and is committed to the development of a root (PO:0009005).</obo:IAO_0000115>
<oboInOwl:hasDbXref>PO_GIT:467</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym>portion of root primordium tissue (exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>primordio de ra&#237z (Spanish, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>root primordia (exact, plural)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>根原基(可視的) (Japanese, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>plant_anatomy</oboInOwl:hasOBONamespace>
<oboInOwl:id>PO:0005029</oboInOwl:id>
<rdfs:comment>A root primordium may arise from cells of a pericycle (PO:0006203) in a root in most seed plant (pericyclic lateral root primordium; PO:0025492), from cells of an endodermis (PO:0000252) in ferns and some seed plants (non-pericyclic lateral root primordium: PO:0025493), or from cells of a shoot axis (PO:0025029), in the case of a basal root primordium (PO:0025479) or shoot-borne root primordium (PO:0025480). Transition from root primordium to root occurs with the formation of a root cap (PO:0020123), shortly after the development of a root apical meristem (PO:0020147).</rdfs:comment>
<rdfs:label>root primordium</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0005029"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A primordium (PO:0025127) that develops from a root anlagen (PO:0025433) and is committed to the development of a root (PO:0009005).</owl:annotatedTarget>
<oboInOwl:hasDbXref>ISBN:0521288959</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>POC:curators</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0005029"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>primordio de ra&#237z (Spanish, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:Maria_Alejandra_Gandolfo</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Spanish"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0005029"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>root primordia (exact, plural)</owl:annotatedTarget>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/OMO_0003004"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0005029"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>根原基(可視的) (Japanese, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>NIG:Yukiko_Yamazaki</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Japanese"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/PO_0005679 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PO_0005679">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PO_0009007"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002202"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PO_0006210"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>A portion of plant tissue (PO:0009007) composed of plant epidermal cells (PO:0004013) that develops from the protoderm (PO:0006210) and covers the surface of a plant structure (PO:0009011).</obo:IAO_0000115>
<oboInOwl:hasDbXref>PO_GIT:109</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym>dermal tissue (exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>epidermal layer (exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>epidermides (exact, plural)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>epidermis (Spanish, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>epidermises (exact, plural)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>portion of epidermal tissue (exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>表皮 (Japanese, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>plant_anatomy</oboInOwl:hasOBONamespace>
<oboInOwl:hasRelatedSynonym>multiseriate epidermis (related)</oboInOwl:hasRelatedSynonym>
<oboInOwl:id>PO:0005679</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/po#TraitNet"/>
<rdfs:comment>The epidermis can be composed of one or more layers of cells. In some species of vascular plants, the epidermis, which is a primary tissue, is replaced by periderm, which is secondary tissue, later in development. The epidermis can also include trichomes, stomatal pores, root hairs, and rhizoids.</rdfs:comment>
<rdfs:label>plant epidermis</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0005679"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A portion of plant tissue (PO:0009007) composed of plant epidermal cells (PO:0004013) that develops from the protoderm (PO:0006210) and covers the surface of a plant structure (PO:0009011).</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:curators</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0005679"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>epidermides (exact, plural)</owl:annotatedTarget>
<oboInOwl:hasDbXref>FNA:35df04e5-fde5-465e-b79e-ae7d5e1537bb</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/OMO_0003004"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0005679"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>epidermis (Spanish, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:Maria_Alejandra_Gandolfo</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Spanish"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0005679"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>epidermises (exact, plural)</owl:annotatedTarget>
<oboInOwl:hasDbXref>FNA:0d1bd0e6-c039-4de3-a162-68299a2f342a</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/OMO_0003004"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0005679"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>表皮 (Japanese, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>NIG:Yukiko_Yamazaki</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Japanese"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/PO_0006001 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PO_0006001">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PO_0009008"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PO_0009006"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002202"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PO_0025128"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>A lateral plant organ (PO:0009008) produced by a shoot apical meristem (PO:0020148).</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>filoma (Spanish, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>フィロム、葉(的)器官 (Japanese, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>plant_anatomy</oboInOwl:hasOBONamespace>
<oboInOwl:id>PO:0006001</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/po#TraitNet"/>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/po#reference"/>
<rdfs:label>phyllome</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0006001"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A lateral plant organ (PO:0009008) produced by a shoot apical meristem (PO:0020148).</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:curators</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0006001"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>filoma (Spanish, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:Maria_Alejandra_Gandolfo</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Spanish"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0006001"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>フィロム、葉(的)器官 (Japanese, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>NIG:Yukiko_Yamazaki</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Japanese"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/PO_0006016 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PO_0006016">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/PO_0025157"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PO_0025034"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PO_0025157"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PO_0025034"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>A portion of phyllome epidermis (PO:0025157) that is part of a leaf (PO:0025034).</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>epidermis de la hoja (Spanish, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>foliage leaf epidermis (exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>phyllid epidermis (exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>葉表皮 (Japanese, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>plant_anatomy</oboInOwl:hasOBONamespace>
<oboInOwl:id>PO:0006016</oboInOwl:id>
<rdfs:comment>If you are annotating to this term, please add an additional annotation to vascular leaf (PO:0009025) or non-vascular leaf (PO:0025075), depending on the species. All annotations for angiosperms, gymnosperms, and pteridophytes should go to vascular leaf and all annotations for bryophytes should go to non-vascular leaf.</rdfs:comment>
<rdfs:label>leaf epidermis</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0006016"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A portion of phyllome epidermis (PO:0025157) that is part of a leaf (PO:0025034).</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:curators</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0006016"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>epidermis de la hoja (Spanish, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:Maria_Alejandra_Gandolfo</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Spanish"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0006016"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>葉表皮 (Japanese, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>NIG:Yukiko_Yamazaki</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Japanese"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/PO_0006035 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PO_0006035">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/PO_0005679"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PO_0009006"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PO_0005679"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PO_0009006"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002202"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PO_0009020"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>A portion of plant epidermis (PO:0005679) that is part of a shoot system (PO:0009006) and arises from the meristem L1 layer (PO:0009020).</obo:IAO_0000115>
<oboInOwl:hasDbXref>PO_GIT:111</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym>epidermis del epiblasto (epiblastema) (Spanish, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>シュート表皮 (Japanese, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>plant_anatomy</oboInOwl:hasOBONamespace>
<oboInOwl:id>PO:0006035</oboInOwl:id>
<rdfs:comment>Often interrupted by stomatal complexes (PO:0002000) and other structures. The shoot system epidermis is different from the root epidermis (PO:0006036) in its origin, function and structure.</rdfs:comment>
<rdfs:label>shoot system epidermis</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0006035"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A portion of plant epidermis (PO:0005679) that is part of a shoot system (PO:0009006) and arises from the meristem L1 layer (PO:0009020).</owl:annotatedTarget>
<oboInOwl:hasDbXref>ISBN:0471245208</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>POC:Laurel_Cooper</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>POC:curators</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0006035"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>epidermis del epiblasto (epiblastema) (Spanish, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:Maria_Alejandra_Gandolfo</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Spanish"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0006035"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>シュート表皮 (Japanese, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>NIG:Yukiko_Yamazaki</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Japanese"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/PO_0006036 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PO_0006036">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/PO_0005679"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PO_0009005"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PO_0005679"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PO_0009005"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>A portion of plant epidermis (PO:0005679) that is part of a root (PO:0009005).</obo:IAO_0000115>
<oboInOwl:hasAlternativeId>PO:0006037</oboInOwl:hasAlternativeId>
<oboInOwl:hasDbXref>PO_GIT:111</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym>epidermis de la ra&#237z (Spanish, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>根表皮 (Japanese, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>plant_anatomy</oboInOwl:hasOBONamespace>
<oboInOwl:hasRelatedSynonym>epiblem (related)</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>rhizodermis (related)</oboInOwl:hasRelatedSynonym>
<oboInOwl:id>PO:0006036</oboInOwl:id>
<rdfs:comment>The root epidermis is different from the shoot epidermis in its origin, function and structure.</rdfs:comment>
<rdfs:label>root epidermis</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0006036"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A portion of plant epidermis (PO:0005679) that is part of a root (PO:0009005).</owl:annotatedTarget>
<oboInOwl:hasDbXref>ISBN:0080374913</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0006036"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>epidermis de la ra&#237z (Spanish, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:Maria_Alejandra_Gandolfo</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Spanish"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0006036"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>根表皮 (Japanese, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>NIG:Yukiko_Yamazaki</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Japanese"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/PO_0006079 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PO_0006079">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PO_0009013"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/PO_0009006"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>A portion of meristem tissue (PO:0009013) that is part of a shoot system (PO:0009006).</obo:IAO_0000115>
<oboInOwl:hasDbXref>PO_GIT:472</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>PO_GIT:583</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym>meristema del epiblasto (epiblastema) (Spanish, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>シュート分裂組織 (Japanese, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>plant_anatomy</oboInOwl:hasOBONamespace>
<oboInOwl:id>PO:0006079</oboInOwl:id>
<oboInOwl:inSubset rdf:resource="http://purl.obolibrary.org/obo/po#TraitNet"/>
<rdfs:label>shoot system meristem</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0006079"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A portion of meristem tissue (PO:0009013) that is part of a shoot system (PO:0009006).</owl:annotatedTarget>
<oboInOwl:hasDbXref>Gramene:Pankaj_Jaiswal</oboInOwl:hasDbXref>
<oboInOwl:hasDbXref>POC:Laurel_Cooper</oboInOwl:hasDbXref>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0006079"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>meristema del epiblasto (epiblastema) (Spanish, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>POC:Maria_Alejandra_Gandolfo</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Spanish"/>
</owl:Axiom>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0006079"/>
<owl:annotatedProperty rdf:resource="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<owl:annotatedTarget>シュート分裂組織 (Japanese, exact)</owl:annotatedTarget>
<oboInOwl:hasDbXref>NIG:Yukiko_Yamazaki</oboInOwl:hasDbXref>
<oboInOwl:hasSynonymType rdf:resource="http://purl.obolibrary.org/obo/po#Japanese"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/PO_0006210 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/PO_0006210">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PO_0009013"/>
<obo:IAO_0000115>A portion of meristem tissue (PO:0009013) that is the outer layer of an apical meristem (PO:0020144), or the outer layer of a plant embryo proper (PO:0000001), and gives rise to a portion of epidermis (PO:0005679).</obo:IAO_0000115>
<oboInOwl:hasDbXref>PO_GIT:125</oboInOwl:hasDbXref>
<oboInOwl:hasExactSynonym>portion of protoderm tissue (exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>protodermis (Spanish, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>前表皮、原表皮 (Japanese, exact)</oboInOwl:hasExactSynonym>
<oboInOwl:hasOBONamespace>plant_anatomy</oboInOwl:hasOBONamespace>
<oboInOwl:hasRelatedSynonym>dermatogen cell (related)</oboInOwl:hasRelatedSynonym>
<oboInOwl:id>PO:0006210</oboInOwl:id>
<rdfs:comment>A protoderm may or may not arise from independent initial cells (PO:0004011). Some researchers also refer to it as an epidermis in a meristematic state.</rdfs:comment>
<rdfs:label>protoderm</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/PO_0006210"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A portion of meristem tissue (PO:0009013) that is the outer layer of an apical meristem (PO:0020144), or the outer layer of a plant embryo proper (PO:0000001), and gives rise to a portion of epidermis (PO:0005679).</owl:annotatedTarget>
<oboInOwl:hasDbXref>ISBN:0471245208</oboInOwl:hasDbXref>