-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathecocore-base.owl
3005 lines (2061 loc) · 144 KB
/
ecocore-base.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/ecocore/ecocore-base.owl#"
xml:base="http://purl.obolibrary.org/obo/ecocore/ecocore-base.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/ecocore/ecocore-base.owl">
<owl:versionIRI rdf:resource="http://purl.obolibrary.org/obo/ecocore/releases/2022-03-09/ecocore-base.owl"/>
<dc:type rdf:resource="http://purl.obolibrary.org/obo/IAO_8000001"/>
<terms:license rdf:resource="https://creativecommons.org/licenses/by/3.0/"/>
<rdfs:comment>An ontology of core ecological entities</rdfs:comment>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2022-03-09</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115">
<rdfs:label>definition</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000116 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000116">
<rdfs:label>editor note</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000117 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117">
<rdfs:label>term editor</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000119 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119">
<rdfs:label>definition source</rdfs:label>
</owl:AnnotationProperty>
<!-- 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://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#hasRelatedSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000051 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000051"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000054 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000054"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000063 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000063"/>
<!-- http://purl.obolibrary.org/obo/RO_0002215 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002215"/>
<!-- http://purl.obolibrary.org/obo/RO_0002233 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002233"/>
<!-- http://purl.obolibrary.org/obo/RO_0002351 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002351"/>
<!-- http://purl.obolibrary.org/obo/RO_0002470 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002470"/>
<!-- http://purl.obolibrary.org/obo/RO_0002634 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002634"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000015"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000034 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000034"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000182 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000182"/>
<!-- http://purl.obolibrary.org/obo/CARO_0010004 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CARO_0010004"/>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000001 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000001">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/RO_0002577"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000003"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>A system in which living entities consume living, dead, or non-living entities or are consumed by other living entities through trophic interactions.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>consumer-resource system</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>trophic system</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym>topological web</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>web of life</oboInOwl:hasRelatedSynonym>
<rdfs:label xml:lang="en">food web</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000001"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A system in which living entities consume living, dead, or non-living entities or are consumed by other living entities through trophic interactions.</owl:annotatedTarget>
<obo:IAO_0000119>https://en.wikipedia.org/wiki/Food_web</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000002 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000002">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000001"/>
<obo:IAO_0000115>A food web in which the outputs of a trophic interaction are consumed by organisms acting in a lower trophic level relative to the initial interaction.</obo:IAO_0000115>
<obo:IAO_0000116>Definition needs revision, but core intention is captured.</obo:IAO_0000116>
<rdfs:label xml:lang="en">food cycle</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000003">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/RO_0002577"/>
<obo:IAO_0000115>A system in which a series of living entities consume living, dead, or non-living entities in successively higher trophic levels.</obo:IAO_0000115>
<oboInOwl:hasExactSynonym>consumer-resource chain</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>trophic chain</oboInOwl:hasExactSynonym>
<rdfs:label xml:lang="en">food chain</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000003"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A system in which a series of living entities consume living, dead, or non-living entities in successively higher trophic levels.</owl:annotatedTarget>
<obo:IAO_0000119>https://en.wikipedia.org/wiki/Food_web</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000004 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000004">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000034"/>
<obo:IAO_0000115>A function which inheres in a living entity by virtue of that entity being able to feed on a material.</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<rdfs:label xml:lang="en">trophic function</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000005 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000005">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000004"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000054"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000011"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>A function which inheres in a living entity by virtue of that entity being able to feed on living or once-living (dead) material.</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<rdfs:label xml:lang="en">heterotrophic function</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000006 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000006">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000004"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000054"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000009"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>A function which inheres in a living entity by virtue of that entity being able to harvest energy and create biomass from non-living materials.</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<rdfs:label xml:lang="en">autotrophic function</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000007 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000007">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000004"/>
<obo:IAO_0000115>A function which inheres in a living entity by virtue of that entity being able to realize autotrophic and heterotrophic functions.</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<rdfs:label xml:lang="en">mixotrophic function</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000008 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000008">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/GO_0045333"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>A process during which a living entity acquires or generates food and energy from a living, dead, or non-living entity.</obo:IAO_0000115>
<obo:IAO_0000116>All categories of interaction partners should be indentified in subclasses.</obo:IAO_0000116>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<rdfs:label xml:lang="en">trophic process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000009 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000009">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000008"/>
<obo:IAO_0000115>A trophic process during which a living entity acquires energy and generates biomass from non-living entities.</obo:IAO_0000115>
<obo:IAO_0000116>This should be axiomatised and made a defined class: any trophic interaction which has as input some inorganic material (non-living) that is the only source of carbon or reducing equivalents source is a autotrophic process.</obo:IAO_0000116>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<rdfs:label xml:lang="en">autotrophy</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000010 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000010">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002215"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000011"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0100026"/>
<obo:IAO_0000115>An organism that obtains carbon for growth and development by metabolizing biogenic organic compounds derived from living or dead material.</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<oboInOwl:hasRelatedSynonym>consumer</oboInOwl:hasRelatedSynonym>
<rdfs:label xml:lang="en">heterotroph</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000011 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000011">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000008"/>
<obo:IAO_0000115>A trophic process during which a living entity acquires food and energy by consuming another organism or organism part, living or dead.</obo:IAO_0000115>
<obo:IAO_0000116>This should be axiomatised and made a defined class: any trophic interaction which has as input some organic material (living or dead) that is the only source of carbon or reducing equivalents source is a autotrophic process.</obo:IAO_0000116>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<oboInOwl:hasExactSynonym>consumption</oboInOwl:hasExactSynonym>
<rdfs:label xml:lang="en">heterotrophy</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000012 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000012">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002215"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000009"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000011"/>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0100026"/>
<obo:IAO_0000115>An organism which is capable of heterotrophic and autotrophic trophic processes.</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<rdfs:label xml:lang="en">mixotroph</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000013 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000013">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000020"/>
<obo:IAO_0000115>A herbivorous process during which a living entity acquires food and energy by consuming nectar.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2908-3327"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2022-03-09T17:05:35Z</dc:date>
<rdfs:label xml:lang="en">nectivory</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000014 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000014">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000008"/>
<obo:IAO_0000115>A trophic process during which a living entity acquires reducing equivalents from inorganic chemicals for use in biosynthesis or energy conservation via aerobic or anaerobic respiration.</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<rdfs:label xml:lang="en">lithotrophy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000014"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A trophic process during which a living entity acquires reducing equivalents from inorganic chemicals for use in biosynthesis or energy conservation via aerobic or anaerobic respiration.</owl:annotatedTarget>
<obo:IAO_0000119>https://en.wikipedia.org/wiki/Lithotroph</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000015">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002215"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000016"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002470"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_4751"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000010"/>
<obo:IAO_0000115>A heterotroph which consumes fungi.</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<oboInOwl:hasExactSynonym>fungal feeder</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>mycophage</oboInOwl:hasExactSynonym>
<rdfs:label xml:lang="en">fungivore</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000016 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000016">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002233"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_4751"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000011"/>
<obo:IAO_0000115>A heterotrophic process during which a living entity acquires food and energy by consuming living fungal material.</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<oboInOwl:hasExactSynonym>fungal feeding</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>mycophagy</oboInOwl:hasExactSynonym>
<rdfs:comment>In this class, we make no commitment to whether the organism belongs to a taxon which has adapted to a fungi-heavy diet: this is a functional defintion, referencing the act of eating, primarily, a fungi-based diet.</rdfs:comment>
<rdfs:label xml:lang="en">fungivory</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000017 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000017">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000008"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/GO_0015979"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/GO_0045333"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>A trophic process during which a living entity generates food from abiotic sources or through consumption of living or dead material, and captures energy from light.</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<rdfs:label xml:lang="en">phototrophy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000017"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A trophic process during which a living entity generates food from abiotic sources or through consumption of living or dead material, and captures energy from light.</owl:annotatedTarget>
<obo:IAO_0000119>https://en.wikipedia.org/wiki/Phototroph</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000018 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000018">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000182"/>
<obo:IAO_0000115>A history which includes all the processes during which resources are used by an organism to grow, survive, and reproduce over its lifetime.</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-4364-7715</obo:IAO_0000117>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<rdfs:label xml:lang="en">life history</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000018"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A history which includes all the processes during which resources are used by an organism to grow, survive, and reproduce over its lifetime.</owl:annotatedTarget>
<obo:IAO_0000119>ISBN:130596733X</obo:IAO_0000119>
<obo:IAO_0000119>ISBN:9781305967335</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000019 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000019">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002215"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000020"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000010"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002215"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000011"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>A heterotroph which consumes plants or macroalgae via ingestion through a type of "mouth". Plant or algal matter is broken down through an internal digestion process.</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<oboInOwl:hasExactSynonym>phytophage</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>primary consumer</oboInOwl:hasExactSynonym>
<oboInOwl:hasNarrowSynonym>plant eater</oboInOwl:hasNarrowSynonym>
<rdfs:comment>There is some debate over whether herbivores should be restricted to plants and macroalgae or generalsed to more photoautotrophs. We welcome input on our issue tracker: https://github.com/EcologicalSemantics/ecocore</rdfs:comment>
<rdfs:label xml:lang="en">herbivore</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000020 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000020">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000011"/>
<obo:IAO_0000115>A heterotrophic process during which a living entity acquires food and energy by consuming living plant- or macro-algal material.</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<oboInOwl:hasExactSynonym>phytophagy</oboInOwl:hasExactSynonym>
<oboInOwl:hasExactSynonym>plant trophism</oboInOwl:hasExactSynonym>
<rdfs:comment>In this class, we make no commitment to whether the organism belongs to a taxon which has adapted to a herbivorous diet: this is a functional defintion, referencing the act of eating, primarily, a plant- or macroalga-based diet.</rdfs:comment>
<rdfs:label xml:lang="en">herbivory</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000021 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000021">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002233"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/NCBITaxon_33208"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000011"/>
<obo:IAO_0000115>A heterotrophic process during which a living entity acquires food and energy from consuming living metazoan (animal) material.</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<oboInOwl:hasExactSynonym>zoophagy</oboInOwl:hasExactSynonym>
<rdfs:comment>In this class, we make no commitment to whether the organism belongs to a taxon which has adapted to a carnivorous diet: this is a functional defintion, referencing the act of eating, primarily, an animal-based diet.</rdfs:comment>
<rdfs:label xml:lang="en">carnivory</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000022 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000022">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<obo:IAO_0000115>A process during which two living entities engage in a close and long-term biological interaction.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2908-3327"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2022-03-09T17:22:07Z</dc:date>
<rdfs:label xml:lang="en">symbiosis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000023 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000023">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002215"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000009"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0100026"/>
<obo:IAO_0000115>An organism which is capable of incorporating abiogenic (inorganic) carbon into its biomass.</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<obo:IAO_0000117>http://orcid.org/0000-0002-4366-3088</obo:IAO_0000117>
<oboInOwl:hasRelatedSynonym>primary producer</oboInOwl:hasRelatedSynonym>
<rdfs:label xml:lang="en">autotroph</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000024 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000024">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001995"/>
<obo:IAO_0000115>Quotient (or ratio) of surface area of an organism divided by the mass of the same organism</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>area to mass ratio</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000025 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000025">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000022"/>
<obo:IAO_0000115>A symbiotic process in which one participant gains benefits while the other participant neither benefits nor is harmed.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2908-3327"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2022-03-09T17:23:41Z</dc:date>
<rdfs:label xml:lang="en">commensalism</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000026 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000026">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0032502"/>
<obo:IAO_0000115>The duration of the development from fertilized, deposited or implanted egg to hatching/birth. Corresponds to egg incubation duration in oviparous animals and to gestation period duration in viviparous animals.</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<oboInOwl:hasRelatedSynonym>gestation</oboInOwl:hasRelatedSynonym>
<oboInOwl:hasRelatedSynonym>incubation</oboInOwl:hasRelatedSynonym>
<rdfs:label>prenatal development</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000027 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000027">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001995"/>
<obo:IAO_0000115>Type of food comprising the majority of the diet of an organism</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>primary diet</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000028 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000028">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001434"/>
<obo:IAO_0000115>A reproductive quality inhering in a bearer by virtue of the bearer's ability to produce offspring that develop inside a shelled egg, with a large food supply in yolk, after internal fertilization</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>oviparous</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000029 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000029">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001434"/>
<obo:IAO_0000115>A reproductive quality inhering in a bearer by virtue of the bearer's ability to produce offspring that are born live, or where the development of the offspring is supported by either parent in or on any part of their body</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>viviparous</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000030 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000030">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001434"/>
<obo:IAO_0000115>A reproductive quality inhering in a bearer by virtue of the bearer's ability to produce offspring that are born live after retaining the eggs inside the body of the female</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>ovoviviparous</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000031 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000031">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001434"/>
<obo:IAO_0000115>A reproductive quality inhering in a bearer by virtue of the bearer's ability to produce offspring via external fertilization, the oocytes being released and fertilized outside the female's body by the male</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>ovuliparous</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000032 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000032">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000029"/>
<obo:IAO_0000115>A reproductive quality inhering in a bearer by virtue of the bearer's ability to produce zygotes that develop in the female's oviducts, but find their nutriments from other tissues, whether skin or glandular tissue</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>histrotrophic viviparity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000033 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000033">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000029"/>
<obo:IAO_0000115>A reproductive quality inhering in a bearer by virtue of the bearer's ability to produce offspring that receive nutriments from the female during prenatal development via a specialized structure, such as a placenta</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>hemotrophic viviparity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000034 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000034">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000105"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000063"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000035"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>The second post-naupliar life stage of a copepod</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>copepodid stage 2</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000035 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000035">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000105"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000063"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000036"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>The third post-naupliar life stage of a copepod</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>copepodid stage 3</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000036 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000036">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000105"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000063"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000037"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>The fourth post-naupliar life stage of a copepod</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>copepodid stage 4</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000037 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000037">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000105"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000063"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000038"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115>The fifth post-naupliar life stage of a copepod</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>copepodid stage 5</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000038 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000038">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0000105"/>
<obo:IAO_0000115>The sixth post-naupliar life stage of a copepod</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>copepodid stage 6</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000039 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000039">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001995"/>
<obo:IAO_0000115>An evolutionary quality inhering in a bearer by virtue of the bearer's morphological and physiological adaptation for running</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>cursorial</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000040 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000040">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001995"/>
<obo:IAO_0000115>An evolutionary quality inhering in a bearer by virtue of the bearer's morphological and physiological adaptation for digging and living underground</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>fossorial</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000041 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000041">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001995"/>
<obo:IAO_0000115>An evolutionary quality inhering in a bearer by virtue of the bearer's morphological and physiological adaptation for living in trees</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>arboreal</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000042 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000042">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000061"/>
<obo:IAO_0000115>a reproductive quality inhering in the bearer by virtue of the bearer having reproductive organs normally associated with both male and female sexes at the same time</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<oboInOwl:hasRelatedSynonym>monoecious</oboInOwl:hasRelatedSynonym>
<rdfs:label>hermaphroditic</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000043 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000043">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000120"/>
<obo:IAO_0000115>a reproductive quality inhering in the bearer by virtue of the bearer having female reproductive organs at the beginning of its life and then switching to male reproductive organs</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>protogynous</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000044 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000044">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0002164"/>
<obo:IAO_0000115>The process by which a larvae transforms into an adult wherein the larvae looks like a smaller adult form</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>direct development</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000045 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000045">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002215"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000060"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000010"/>
<obo:IAO_0000115>heterotroph that acquires nutrition from a symbiont</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>symbiotroph</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000046 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000046">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000045"/>
<obo:IAO_0000115>An organism bearing a symbiont role and capable of living within a plant for at least part of its life cycle without causing apparent disease</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>endophyte</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000047 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000047">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000022"/>
<obo:IAO_0000115>A symbiotic process in which one participant gains benefits while the other participant is harmed.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0002-2908-3327"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2022-03-09T17:28:04Z</dc:date>
<rdfs:label xml:lang="en">parasitism</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000048 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000048">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/UBERON_0002548"/>
<obo:IAO_0000115>anatomical entity that comprises the organism in a distinct juvenile form that is provided with a source of nutrition, usually a yolk sac, to use before metamorphosing into an adult</obo:IAO_0000115>
<rdfs:label>lecithotrophic larva</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000049 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000049">
<owl:equivalentClass>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000077"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002351"/>
<owl:allValuesFrom rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000076"/>
</owl:Restriction>
</owl:unionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PCO_0000002"/>
<obo:IAO_0000115>a community of microscopic, unicellular eukaryotic algae and the prokaryotic Cyanobacteria which live on sediment surfaces</obo:IAO_0000115>
<obo:IAO_0000117>http://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<oboInOwl:hasRelatedSynonym>algae</oboInOwl:hasRelatedSynonym>
<rdfs:label>microphytobenthos</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000050 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000050">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002215"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000182"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000010"/>
<obo:IAO_0000115>Organism that acquires nutrition by consuming particles of organic matter that have settled to the bottom of a body of water.</obo:IAO_0000115>
<obo:IAO_0000117>https://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>deposit feeder</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000051 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000051">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000010"/>
<obo:IAO_0000115>A heterotroph that acquires nutrition by consuming particles suspended in water or air.</obo:IAO_0000115>
<obo:IAO_0000117>https://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>suspension feeder</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000052 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/ECOCORE_00000052">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/ECOCORE_00000050"/>
<obo:IAO_0000115>Organism that acquires nutrition by consuming particles of organic matter that have settled to the bottom of a body of water. The organism lives beneath the surface of the bottom sediment and retrieves food particles without coming into direct contact with the sediment surface.</obo:IAO_0000115>
<obo:IAO_0000117>https://orcid.org/0000-0002-2908-3327</obo:IAO_0000117>
<rdfs:label>subsurface deposit feeder</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/ECOCORE_00000053 -->