-
Notifications
You must be signed in to change notification settings - Fork 4
/
pco.obo
3733 lines (3403 loc) · 213 KB
/
pco.obo
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
format-version: 1.2
data-version: releases/2021-05-03
remark: The Population and Community Ontology (PCO) is licensed under a Creative Commons zero (CC0) license - http://creativecommons.org/publicdomain/zero/1.0/. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission. We ask that anyone using this ontology follow the standards of the scientific ontology community by re-using ontology identifiers whenever possible and properly citing the ontology and its creators.
ontology: pco
property_value: http://purl.org/dc/elements/1.1/contributor http://orcid.org/0000-0002-4366-3088 xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor https://orcid.org/0000-0001-8815-0078 xsd:string
property_value: http://purl.org/dc/elements/1.1/creator "David Osumi-Sutherland" xsd:string
property_value: http://purl.org/dc/elements/1.1/creator "Jie Zheng" xsd:string
property_value: http://purl.org/dc/elements/1.1/creator "Pier Luigi Buttigieg" xsd:string
property_value: http://purl.org/dc/elements/1.1/creator "Ramona Walls" xsd:string
property_value: http://purl.org/dc/elements/1.1/description "The Population and Community Ontology (PCO) describes material entities, qualities, and processes related to collections of interacting organisms such as populations and communities. It is taxon neutral, and can be used for any species, including humans. The classes in the PCO are useful for describing evolutionary processes, organismal interactions, and ecological experiments. Practical applications of the PCO include community health care, plant pathology, behavioral studies, sociology, and ecology." xsd:string
property_value: http://purl.org/dc/elements/1.1/title "Population and Community Ontology" xsd:string
property_value: http://purl.org/dc/terms/license http://creativecommons.org/publicdomain/zero/1.0/ xsd:string
[Term]
id: BFO:0000001
name: entity
property_value: BFO:0000179 "entity" xsd:string
property_value: BFO:0000180 "Entity" xsd:string
property_value: editor_note "BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81" xsd:string
property_value: editor_note "Entity doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. For example Werner Ceusters 'portions of reality' include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, 'How to track absolutely everything' at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/0000004", comment="per discussion with Barry Smith", http://www.w3.org/2000/01/rdf-schema#seeAlso="http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf"}
property_value: IAO:0000112 "Julius Caesar" xsd:string
property_value: IAO:0000112 "the Second World War" xsd:string
property_value: IAO:0000112 "Verdi’s Requiem" xsd:string
property_value: IAO:0000112 "your body mass index" xsd:string
property_value: IAO:0000600 "An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/001-001"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000002
name: continuant
def: "An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts." []
is_a: BFO:0000001 ! entity
disjoint_from: BFO:0000003 ! occurrent
property_value: BFO:0000179 "continuant" xsd:string
property_value: BFO:0000180 "Continuant" xsd:string
property_value: editor_note "BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240" xsd:string
property_value: editor_note "Continuant doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster's other portions of reality, questions are raised as to whether universals are continuants" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/0000007"}
property_value: IAO:0000600 "A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/008-002"}
property_value: IAO:0000601 "if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/126-001"}
property_value: IAO:0000601 "if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/009-002"}
property_value: IAO:0000601 "if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/011-002"}
property_value: IAO:0000602 "(forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/009-002"}
property_value: IAO:0000602 "(forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/126-001"}
property_value: IAO:0000602 "(forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/008-002"}
property_value: IAO:0000602 "(forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/011-002"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000003
name: occurrent
def: "An entity that has temporal parts and that happens, unfolds or develops through time." []
is_a: BFO:0000001 ! entity
property_value: BFO:0000179 "occurrent" xsd:string
property_value: BFO:0000180 "Occurrent" xsd:string
property_value: editor_note "BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region" xsd:string
property_value: editor_note "BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players." xsd:string
property_value: editor_note "Occurrent doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process." xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/0000006", comment="per discussion with Barry Smith"}
property_value: editor_note "Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by 'spn[e]' and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write 'spr[e]' and `spl[e]' respectively for the spread and spell of e, omitting mention of the frame." xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/0000012"}
property_value: IAO:0000600 "An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/077-002"}
property_value: IAO:0000601 "b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/079-001"}
property_value: IAO:0000601 "Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/108-001"}
property_value: IAO:0000602 "(forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/108-001"}
property_value: IAO:0000602 "(forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/079-001"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000004
name: independent continuant
def: "A continuant that is a bearer of quality and realizable entity entities, in which other entities inhere and which itself cannot inhere in anything." []
def: "b is an independent continuant = Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])" [] {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/017-002"}
is_a: BFO:0000002 ! continuant
disjoint_from: BFO:0000020 ! specifically dependent continuant
disjoint_from: BFO:0000031 ! generically dependent continuant
property_value: BFO:0000179 "ic" xsd:string
property_value: BFO:0000180 "IndependentContinuant" xsd:string
property_value: IAO:0000112 "a chair" xsd:string
property_value: IAO:0000112 "a heart" xsd:string
property_value: IAO:0000112 "a leg" xsd:string
property_value: IAO:0000112 "a molecule" xsd:string
property_value: IAO:0000112 "a spatial region" xsd:string
property_value: IAO:0000112 "an atom" xsd:string
property_value: IAO:0000112 "an orchestra." xsd:string
property_value: IAO:0000112 "an organism" xsd:string
property_value: IAO:0000112 "the bottom right portion of a human torso" xsd:string
property_value: IAO:0000112 "the interior of your mouth" xsd:string
property_value: IAO:0000601 "For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/134-001"}
property_value: IAO:0000601 "For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/018-002"}
property_value: IAO:0000602 "(forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/018-002"}
property_value: IAO:0000602 "(forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/134-001"}
property_value: IAO:0000602 "(iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/017-002"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000005
name: obsolete dependent continuant
def: "A continuant that is either dependent on one or other independent continuant bearers or inheres in or is borne by other entities." []
is_a: ObsoleteClass
is_obsolete: true
[Term]
id: BFO:0000006
name: spatial region
is_a: BFO:0000141 ! immaterial entity
[Term]
id: BFO:0000015
name: process
def: "An occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t." []
def: "p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])" [] {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/083-003"}
is_a: BFO:0000003 ! occurrent
property_value: BFO:0000179 "process" xsd:string
property_value: BFO:0000180 "Process" xsd:string
property_value: editor_note "BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)" xsd:string
property_value: IAO:0000112 "a process of cell-division, \\ a beating of the heart" xsd:string
property_value: IAO:0000112 "a process of meiosis" xsd:string
property_value: IAO:0000112 "a process of sleeping" xsd:string
property_value: IAO:0000112 "the course of a disease" xsd:string
property_value: IAO:0000112 "the flight of a bird" xsd:string
property_value: IAO:0000112 "the life of an organism" xsd:string
property_value: IAO:0000112 "your process of aging." xsd:string
property_value: IAO:0000602 "(iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/083-003"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000016
name: disposition
is_a: BFO:0000017 ! realizable entity
disjoint_from: BFO:0000023 ! role
[Term]
id: BFO:0000017
name: realizable entity
def: "A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances." []
is_a: BFO:0000020 ! specifically dependent continuant
disjoint_from: BFO:0000019 ! quality
property_value: BFO:0000179 "realizable" xsd:string
property_value: BFO:0000180 "RealizableEntity" xsd:string
property_value: IAO:0000112 "the disposition of this piece of metal to conduct electricity." xsd:string
property_value: IAO:0000112 "the disposition of your blood to coagulate" xsd:string
property_value: IAO:0000112 "the function of your reproductive organs" xsd:string
property_value: IAO:0000112 "the role of being a doctor" xsd:string
property_value: IAO:0000112 "the role of this boundary to delineate where Utah and Colorado meet" xsd:string
property_value: IAO:0000117 https://orcid.org/0000-0001-8815-0078 xsd:string
property_value: IAO:0000600 "To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/058-002"}
property_value: IAO:0000601 "All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/060-002"}
property_value: IAO:0000602 "(forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/060-002"}
property_value: IAO:0000602 "(forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/058-002"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000019
name: quality
is_a: BFO:0000020 ! specifically dependent continuant
[Term]
id: BFO:0000020
name: specifically dependent continuant
def: "A continuant that inheres in or is borne by other entities. Every instance of A requires some specific instance of B which must always be the same." []
def: "b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])" [] {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/050-003"}
is_a: BFO:0000002 ! continuant
disjoint_from: BFO:0000031 ! generically dependent continuant
property_value: BFO:0000179 "sdc" xsd:string
property_value: BFO:0000180 "SpecificallyDependentContinuant" xsd:string
property_value: editor_note "Specifically dependent continuant doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. We're not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc." xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/0000005", comment="per discussion with Barry Smith"}
property_value: IAO:0000112 "of one-sided specifically dependent continuants: the mass of this tomato" xsd:string
property_value: IAO:0000112 "of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates." xsd:string
property_value: IAO:0000112 "Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key" xsd:string
property_value: IAO:0000112 "the disposition of this fish to decay" xsd:string
property_value: IAO:0000112 "the function of this heart: to pump blood" xsd:string
property_value: IAO:0000112 "the mutual dependence of proton donors and acceptors in chemical reactions [79" xsd:string
property_value: IAO:0000112 "the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction" xsd:string
property_value: IAO:0000112 "the pink color of a medium rare piece of grilled filet mignon at its center" xsd:string
property_value: IAO:0000112 "the role of being a doctor" xsd:string
property_value: IAO:0000112 "the shape of this hole." xsd:string
property_value: IAO:0000112 "the smell of this portion of mozzarella" xsd:string
property_value: IAO:0000602 "(iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/050-003"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000023
name: role
def: "A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts." []
is_a: BFO:0000017 ! realizable entity
property_value: BFO:0000179 "role" xsd:string
property_value: BFO:0000180 "Role" xsd:string
property_value: editor_note "BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t =Def. there is some c, c instance_of professor role & c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives." xsd:string
property_value: IAO:0000112 "John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married." xsd:string
property_value: IAO:0000112 "the priest role" xsd:string
property_value: IAO:0000112 "the role of a boundary to demarcate two neighboring administrative territories" xsd:string
property_value: IAO:0000112 "the role of a building in serving as a military target" xsd:string
property_value: IAO:0000112 "the role of a stone in marking a property boundary" xsd:string
property_value: IAO:0000112 "the role of subject in a clinical trial" xsd:string
property_value: IAO:0000112 "the student role" xsd:string
property_value: IAO:0000600 "b is a role means: b is a realizable entity & b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be& b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/061-001"}
property_value: IAO:0000602 "(forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/061-001"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000027
name: object aggregate
is_a: BFO:0000040 ! material entity
property_value: BFO:0000179 "object-aggregate" xsd:string
property_value: BFO:0000180 "ObjectAggregate" xsd:string
property_value: editor_note "An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/0000301"}
property_value: editor_note "An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/0000011"}
property_value: editor_note "BFO 2 Reference: object aggregates may gain and lose parts while remaining numerically identical (one and the same individual) over time. This holds both for aggregates whose membership is determined naturally (the aggregate of cells in your body) and aggregates determined by fiat (a baseball team, a congressional committee)." xsd:string
property_value: IAO:0000112 "a collection of cells in a blood biobank." xsd:string
property_value: IAO:0000112 "a swarm of bees is an aggregate of members who are linked together through natural bonds" xsd:string
property_value: IAO:0000112 "a symphony orchestra" xsd:string
property_value: IAO:0000112 "an organization is an aggregate whose member parts have roles of specific types (for example in a jazz band, a chess club, a football team)" xsd:string
property_value: IAO:0000112 "defined by fiat: the aggregate of members of an organization" xsd:string
property_value: IAO:0000112 "defined through physical attachment: the aggregate of atoms in a lump of granite" xsd:string
property_value: IAO:0000112 "defined through physical containment: the aggregate of molecules of carbon dioxide in a sealed container" xsd:string
property_value: IAO:0000112 "defined via attributive delimitations such as: the patients in this hospital" xsd:string
property_value: IAO:0000112 "the aggregate of bearings in a constant velocity axle joint" xsd:string
property_value: IAO:0000112 "the aggregate of blood cells in your body" xsd:string
property_value: IAO:0000112 "the nitrogen atoms in the atmosphere" xsd:string
property_value: IAO:0000112 "the restaurants in Palo Alto" xsd:string
property_value: IAO:0000112 "your collection of Meissen ceramic plates." xsd:string
property_value: IAO:0000119 "ISBN:978-3-938793-98-5pp124-158#Thomas Bittner and Barry Smith, 'A Theory of Granular Partitions', in K. Munn and B. Smith (eds.), Applied Ontology: An Introduction, Frankfurt/Lancaster: ontos, 2008, 125-158." xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/0000300"}
property_value: IAO:0000600 "b is an object aggregate means: b is a material entity consisting exactly of a plurality of objects as member_parts at all times at which b exists. (axiom label in BFO2 Reference: [025-004])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/025-004"}
property_value: IAO:0000602 "(forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (= y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/025-004"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000029
name: site
is_a: BFO:0000141 ! immaterial entity
property_value: BFO:0000179 "site" xsd:string
property_value: BFO:0000180 "Site" xsd:string
property_value: IAO:0000112 "a hole in the interior of a portion of cheese" xsd:string
property_value: IAO:0000112 "a rabbit hole" xsd:string
property_value: IAO:0000112 "an air traffic control region defined in the airspace above an airport" xsd:string
property_value: IAO:0000112 "Manhattan Canyon)" xsd:string
property_value: IAO:0000112 "the cockpit of an aircraft" xsd:string
property_value: IAO:0000112 "the Grand Canyon" xsd:string
property_value: IAO:0000112 "the hold of a ship" xsd:string
property_value: IAO:0000112 "the interior of a kangaroo pouch" xsd:string
property_value: IAO:0000112 "the interior of the trunk of your car" xsd:string
property_value: IAO:0000112 "the interior of your bedroom" xsd:string
property_value: IAO:0000112 "the interior of your office" xsd:string
property_value: IAO:0000112 "the interior of your refrigerator" xsd:string
property_value: IAO:0000112 "the lumen of your gut" xsd:string
property_value: IAO:0000112 "the Piazza San Marco" xsd:string
property_value: IAO:0000112 "your left nostril (a fiat part – the opening – of your left nasal cavity)" xsd:string
property_value: IAO:0000600 "b is a site means: b is a three-dimensional immaterial entity that is (partially or wholly) bounded by a material entity or it is a three-dimensional immaterial part thereof. (axiom label in BFO2 Reference: [034-002])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/034-002"}
property_value: IAO:0000602 "(forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/034-002"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000031
name: generically dependent continuant
def: "A continuant that is dependent on one or other independent continuant bearers. For every instance of A requires some instance of (an independent continuant type) B but which instance of B serves can change from time to time." []
def: "b is a generically dependent continuant = Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])" [] {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/074-001"}
is_a: BFO:0000002 ! continuant
property_value: BFO:0000179 "gdc" xsd:string
property_value: BFO:0000180 "GenericallyDependentContinuant" xsd:string
property_value: IAO:0000112 "The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity." xsd:string
property_value: IAO:0000112 "the pdf file on your laptop, the pdf file that is a copy thereof on my laptop" xsd:string
property_value: IAO:0000112 "the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule." xsd:string
property_value: IAO:0000602 "(iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/074-001"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000034
name: function
is_a: BFO:0000016 ! disposition
[Term]
id: BFO:0000040
name: material entity
def: "An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time." []
is_a: BFO:0000004 ! independent continuant
disjoint_from: BFO:0000141 ! immaterial entity
property_value: BFO:0000179 "material" xsd:string
property_value: BFO:0000180 "MaterialEntity" xsd:string
property_value: editor_note "BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60" xsd:string
property_value: editor_note "BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity." xsd:string
property_value: editor_note "BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here." xsd:string
property_value: IAO:0000112 "a flame" xsd:string
property_value: IAO:0000112 "a forest fire" xsd:string
property_value: IAO:0000112 "a human being" xsd:string
property_value: IAO:0000112 "a hurricane" xsd:string
property_value: IAO:0000112 "a photon" xsd:string
property_value: IAO:0000112 "a puff of smoke" xsd:string
property_value: IAO:0000112 "a sea wave" xsd:string
property_value: IAO:0000112 "a tornado" xsd:string
property_value: IAO:0000112 "an aggregate of human beings." xsd:string
property_value: IAO:0000112 "an energy wave" xsd:string
property_value: IAO:0000112 "an epidemic" xsd:string
property_value: IAO:0000112 "the undetached arm of a human being" xsd:string
property_value: IAO:0000600 "A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/019-002"}
property_value: IAO:0000601 "every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/021-002"}
property_value: IAO:0000601 "Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002])" xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/020-002"}
property_value: IAO:0000602 "(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/021-002"}
property_value: IAO:0000602 "(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/020-002"}
property_value: IAO:0000602 "(forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] " xsd:string {http://purl.obolibrary.org/obo/IAO_0010000="http://purl.obolibrary.org/obo/bfo/axiom/019-002"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000141
name: immaterial entity
is_a: BFO:0000004 ! independent continuant
property_value: BFO:0000179 "immaterial" xsd:string
property_value: BFO:0000180 "ImmaterialEntity" xsd:string
property_value: editor_note "BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10" xsd:string
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: CARO:0000012
name: multicellular organism
def: "Anatomical structure that is an individual member of a clade and, at some point in its life-cycle, consists of more than one cell." []
comment: MH: Can't define this class based on 2 or more cells because most multi cellular organisms (if not all) have only a single cell at some point in life history.
comment: MH: sexual subtypes should probably be logically defined based on sexual processes or sex qualities.
is_a: CARO:0010004 ! organism
property_value: http://purl.obolibrary.org/obo/IAO_created_by "Melissa Haendel" xsd:string
property_value: http://purl.obolibrary.org/obo/IAO_creation_date "9/18/11" xsd:string
property_value: IAO:0000589 "multicellular organism" xsd:string
[Term]
id: CARO:0001010
name: organism or virus or viroid
def: "Material anatomical entity that is a member of an individual species or is a viral or viroid particle." []
is_a: PCO:0000031 ! organismal entity
property_value: http://purl.obolibrary.org/obo/IAO_created_by "Melissa Haendel" xsd:string
property_value: http://purl.obolibrary.org/obo/IAO_creation_date "9/18/11" xsd:string
property_value: IAO:0000589 "organism or virus" xsd:string
[Term]
id: CARO:0010004
name: organism
def: "An individual member of a clade." []
comment: A general term for organism that is agnostic about single cell vs multi-cellular. Note that this is a subclass of 'anatomical structure', meaning that an organism must be a connected structure. So, if I take one plant and make a rooted cutting from a it, I now have two (clonally related) organisms.
is_a: CARO:0001010 ! organism or virus or viroid
property_value: http://purl.obolibrary.org/obo/IAO_created_by "mah" xsd:string
property_value: http://purl.obolibrary.org/obo/IAO_creation_date "7.16.2011" xsd:string
property_value: IAO:0000589 "organism" xsd:string
[Term]
id: ECOCORE:00000045
name: symbiotroph
def: "heterotroph that acquires nutrition from a symbiont" []
is_a: CARO:0001010 ! organism or virus or viroid
property_value: IAO:0000117 http://orcid.org/0000-0002-2908-3327 xsd:string
[Term]
id: ECOCORE:00000146
name: parasite
def: "A symbiotroph that reduces the fitness, survival, or growth of its symbiont, often called a host" []
xref: https://www.wikidata.org/entity/Q10253316
is_a: ECOCORE:00000045 ! symbiotroph
property_value: IAO:0000117 http://orcid.org/0000-0002-2908-3327 xsd:string
[Term]
id: ENVO:01000744
name: human dwelling
def: "A self-contained constructed feature used by one or more households as a home, such as a house, apartment, mobile home, houseboat or other 'substantial' structure. A dwelling typically includes nearby outbuildings, sheds etc. within the curtilage of the property, excluding any 'open fields beyond'. It has significance in relation to search and seizure, conveyancing of real property, burglary, trespass, and land use planning." [https://en.wikipedia.org/wiki/Dwelling accessed 11/25/2015]
is_a: BFO:0000040 ! material entity
property_value: editor_note "See https://github.com/EnvironmentOntology/envo/issues/264 for discussion. This definition needs a lot of clean up and links to household and related classes must be made to form logical definitions for inference to work." xsd:string
property_value: editor_note "Subclasses will be added by inference." xsd:string
[Term]
id: ENVO:01001369
name: tidal mangrove shrubland
alt_id: CMECS:577
def: "A shrubland biome which is densely vegetated by dwarf or short mangroves (and associates) that are generally less than 6 meters in height, is tidally influenced, is located in tropical or subtropical areas." []
comment: This class aligns to the Coastal and Marine Ecological Classification Standard (CMECS). In ENVO, we may adapt the definition for consistency, but the semantics (meaning) of the term should be unaffected. Please consult the CMECS catalogue (https://cmecscatalog.org/) for authoritative and semantically unconstrained definitions. CMECS provides the following notes: "Commonly found on intertidal mud flats along the shores of estuaries. Tidal mangrove shrublands may include immature stands or stunted mature trees that indicate a harsh growing environment. Areas characterized by tall mangroves (> 6 meters) are placed in the Tidal Mangrove Forest Biotic Group. Where tidal amplitude is relatively low, the vegetation forms narrow bands along the coastal plains, and it rarely penetrates inland more than several kilometers along rivers. Where tidal amplitude is greater, mangroves extend further inland along river courses, forming extensive stands in the major river deltas. Also, mangrove cays may occur within the lagoon complex of barrier reefs. The list of biotic communities for this group is long: a few examples are provided below, and the complete list is available in Appendix F"
subset: envoCmecs
subset: envoMarine
xref: https://cmecscatalog.org/cmecs/classification/unit/577.html
is_a: BFO:0000040 ! material entity
created_by: http://orcid.org/0000-0002-4366-3088
[Term]
id: GO:0003674
name: molecular_function
is_a: BFO:0000015 ! process
property_value: IAO:0000589 "molecular process" xsd:string
property_value: isDefinedBy http://purl.obolibrary.org/obo/go.owl
[Term]
id: GO:0003824
name: catalytic activity
is_a: GO:0003674 ! molecular_function
property_value: isDefinedBy http://purl.obolibrary.org/obo/go.owl
[Term]
id: GO:0007610
name: behavior
namespace: biological_process
alt_id: GO:0023032
alt_id: GO:0044708
alt_id: GO:0044709
def: "The internally coordinated responses (actions or inactions) of animals (individuals or groups) to internal or external stimuli, via a mechanism that involves nervous system activity." [GOC:ems, GOC:jl, ISBN:0395448956, PMID:20160973]
comment: 1. Note that this term is in the subset of terms that should not be used for direct gene product annotation. Instead, select a child term or, if no appropriate child term exists, please request a new term. Direct annotations to this term may be amended during annotation reviews.\n2. While a broader definition of behavior encompassing plants and single cell organisms would be justified on the basis of some usage (see PMID:20160973 for discussion), GO uses a tight definition that limits behavior to animals and to responses involving the nervous system, excluding plant responses that GO classifies under development, and responses of unicellular organisms that has general classifications for covering the responses of cells in multicellular organisms (e.g. cell chemotaxis).
subset: gocheck_do_not_manually_annotate
subset: goslim_agr
subset: goslim_flybase_ribbon
synonym: "behavioral response to stimulus" EXACT []
synonym: "behaviour" EXACT []
synonym: "behavioural response to stimulus" EXACT []
synonym: "single-organism behavior" RELATED []
xref: Wikipedia:Behavior
is_a: GO:0008150 ! biological_process
property_value: isDefinedBy http://purl.obolibrary.org/obo/go.owl
created_by: jl
creation_date: 2012-09-20T14:06:08Z
[Term]
id: GO:0008150
name: biological_process
namespace: biological_process
alt_id: GO:0000004
alt_id: GO:0007582
alt_id: GO:0044699
def: "A biological process represents a specific objective that the organism is genetically programmed to achieve. Biological processes are often described by their outcome or ending state, e.g., the biological process of cell division results in the creation of two daughter cells (a divided cell) from a single parent cell. A biological process is accomplished by a particular set of molecular functions carried out by specific gene products (or macromolecular complexes), often in a highly regulated manner and in a particular temporal sequence." [GOC:pdt]
comment: Note that, in addition to forming the root of the biological process ontology, this term is recommended for use for the annotation of gene products whose biological process is unknown. When this term is used for annotation, it indicates that no information was available about the biological process of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this.
subset: goslim_aspergillus
subset: goslim_candida
subset: goslim_chembl
subset: goslim_generic
subset: goslim_metagenomics
subset: goslim_pir
subset: goslim_plant
subset: goslim_pombe
subset: goslim_yeast
synonym: "biological process" EXACT []
synonym: "physiological process" EXACT []
synonym: "single organism process" RELATED []
synonym: "single-organism process" RELATED []
xref: Wikipedia:Biological_process
is_a: BFO:0000015 ! process
property_value: isDefinedBy http://purl.obolibrary.org/obo/go.owl
created_by: jl
creation_date: 2012-09-19T15:05:24Z
[Term]
id: GO:0016301
name: kinase activity
is_a: GO:0016772 ! transferase activity, transferring phosphorus-containing groups
property_value: isDefinedBy http://purl.obolibrary.org/obo/go.owl
[Term]
id: GO:0016740
name: transferase activity
is_a: GO:0003824 ! catalytic activity
property_value: isDefinedBy http://purl.obolibrary.org/obo/go.owl
[Term]
id: GO:0016772
name: transferase activity, transferring phosphorus-containing groups
is_a: GO:0016740 ! transferase activity
property_value: isDefinedBy http://purl.obolibrary.org/obo/go.owl
[Term]
id: GO:0035176
name: social behavior
namespace: biological_process
def: "Behavior directed towards society, or taking place between members of the same species. Occurs predominantly, or only, in individuals that are part of a group." [GOC:jh2, PMID:12848939, Wikipedia:Social_behavior]
comment: Behavior such as predation which involves members of different species is not social. Communication between members of different species is also not social behavior.
synonym: "cooperative behavior" RELATED []
synonym: "social behaviour" EXACT []
xref: Wikipedia:Social_behavior
is_a: GO:0007610 ! behavior
is_a: GO:0051703 ! biological process involved in intraspecies interaction between organisms
property_value: isDefinedBy http://purl.obolibrary.org/obo/go.owl
[Term]
id: GO:0044419
name: biological process involved in interspecies interaction between organisms
namespace: biological_process
def: "Any process evolved to enable an interaction with an organism of a different species." [GOC:cc]
subset: gocheck_do_not_annotate
subset: goslim_candida
subset: goslim_pir
synonym: "interaction with another species" EXACT []
synonym: "interspecies interaction" EXACT []
synonym: "interspecies interaction between organisms" EXACT []
synonym: "interspecies interaction with other organisms" EXACT []
is_a: GO:0008150 ! biological_process
property_value: IAO:0000233 https://github.com/geneontology/go-ontology/issues/20191 xsd:anyURI
property_value: isDefinedBy http://purl.obolibrary.org/obo/go.owl
property_value: RO:0002161 NCBITaxon:4895
[Term]
id: GO:0051703
name: biological process involved in intraspecies interaction between organisms
namespace: biological_process
def: "Any process in which an organism has an effect on an organism of the same species." [GOC:ai]
subset: gocheck_do_not_annotate
subset: goslim_pir
synonym: "intraspecies interaction between organisms" EXACT []
synonym: "intraspecies interaction with other organisms" EXACT []
is_a: GO:0008150 ! biological_process
property_value: IAO:0000233 https://github.com/geneontology/go-ontology/issues/20191 xsd:anyURI
property_value: isDefinedBy http://purl.obolibrary.org/obo/go.owl
[Term]
id: GO:0051704
name: multi-organism process
namespace: biological_process
alt_id: GO:0051706
def: "A biological process which involves another organism of the same or different species." [GOC:jl]
subset: gocheck_do_not_annotate
subset: goslim_pir
synonym: "interaction between organisms" EXACT []
synonym: "physiological interaction between organisms" EXACT []
synonym: "physiological interaction with other organism" EXACT []
is_a: GO:0008150 ! biological_process
property_value: isDefinedBy http://purl.obolibrary.org/obo/go.owl
[Term]
id: IAO:0000027
name: data item
def: "a data item is an information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements." []
is_a: IAO:0000030 ! information content entity
property_value: editor_note "2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers." xsd:string
property_value: editor_note "2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum." xsd:string
property_value: editor_note "2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym." xsd:string
property_value: editor_note "2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/" xsd:string
property_value: editor_note "JAR: datum -- well, this will be very tricky to define, but maybe some \ninformation-like stuff that might be put into a computer and that is \nmeant, by someone, to denote and/or to be interpreted by some \nprocess... I would include lists, tables, sentences... I think I might \ndefer to Barry, or to Brian Cantwell Smith\n\nJAR: A data item is an approximately justified approximately true approximate belief" xsd:string
property_value: IAO:0000111 "data item" xsd:string
property_value: IAO:0000112 "Data items include counts of things, analyte concentrations, and statistical summaries." xsd:string
property_value: IAO:0000114 IAO:0000125
property_value: IAO:0000117 "PERSON: Alan Ruttenberg" xsd:string
property_value: IAO:0000117 "PERSON: Chris Stoeckert" xsd:string
property_value: IAO:0000117 "PERSON: Jonathan Rees" xsd:string
property_value: IAO:0000118 "data" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
[Term]
id: IAO:0000030
name: information content entity
is_a: BFO:0000031 ! generically dependent continuant
property_value: IAO:0000111 "information content entity" xsd:string
[Term]
id: IAO:0000078
name: curation status specification
def: "The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value." []
is_a: IAO:0000102 ! data about an ontology part
property_value: editor_note "Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)" xsd:string
property_value: IAO:0000111 "curation status specification" xsd:string
property_value: IAO:0000114 IAO:0000125
property_value: IAO:0000117 "PERSON:Bill Bug" xsd:string
property_value: IAO:0000119 GROUP:OBI:<http://purl.obolibrary.org/obo/obi> xsd:string
property_value: IAO:0000119 "OBI_0000266" xsd:string
[Term]
id: IAO:0000102
name: data about an ontology part
def: "Data about an ontology part is a data item about a part of an ontology, for example a term" []
is_a: IAO:0000027 ! data item
property_value: IAO:0000111 "data about an ontology part" xsd:string
property_value: IAO:0000117 "Person:Alan Ruttenberg" xsd:string
[Term]
id: IAO:0000109
name: measurement datum
def: "A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device." []
is_a: IAO:0000027 ! data item
property_value: editor_note "2/2/2009 is_specified_output of some assay?" xsd:string
property_value: IAO:0000111 "measurement datum" xsd:string
property_value: IAO:0000112 "Examples of measurement data are the recoding of the weight of a mouse as {40,mass,\"grams\"}, the recording of an observation of the behavior of the mouse {,process,\"agitated\"}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}." xsd:string
property_value: IAO:0000114 IAO:0000125
property_value: IAO:0000117 "person:Chris Stoeckert" xsd:string
property_value: IAO:0000119 group:OBI xsd:string
property_value: IAO:0000119 "OBI_0000305" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
[Term]
id: IAO:0000225
name: obsolescence reason specification
def: "The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value." []
is_a: IAO:0000102 ! data about an ontology part
property_value: editor_note "The creation of this class has been inspired in part by Werner Ceusters' paper, Applying evolutionary terminology auditing to the Gene Ontology." xsd:string
property_value: IAO:0000111 "obsolescence reason specification" xsd:string
property_value: IAO:0000114 IAO:0000125
property_value: IAO:0000117 "PERSON: Alan Ruttenberg" xsd:string
property_value: IAO:0000117 "PERSON: Melanie Courtot" xsd:string
[Term]
id: IAO:0000409
name: denotator type
def: "A denotator type indicates how a term should be interpreted from an ontological perspective." []
is_a: IAO:0000102 ! data about an ontology part
property_value: IAO:0000111 "denotator type" xsd:string
property_value: IAO:0000112 "The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are \"natural kinds\" and the latter arbitrary collections of entities." xsd:string
property_value: IAO:0000117 "Alan Ruttenberg" xsd:string
property_value: IAO:0000119 "Barry Smith, Werner Ceusters" xsd:string
[Term]
id: IAO:8000000
name: ontology module
is_a: IAO:0000102 ! data about an ontology part
property_value: editor_note "I have placed this under 'data about an ontology part', but this can be discussed. I think this is OK if 'part' is interpreted reflexively, as an ontology module is the whole ontology rather than part of it." xsd:string
property_value: IAO:0000111 "ontology module" xsd:string
property_value: IAO:0000118 "ontology file" xsd:string
property_value: IAO:0000232 "This class and it's subclasses are applied to OWL ontologies. Using an rdf:type triple will result in problems with OWL-DL. I propose that dcterms:type is instead used to connect an ontology URI with a class from this hierarchy. The class hierarchy is not disjoint, so multiple assertions can be made about a single ontology." xsd:string
[Term]
id: IAO:8000001
name: base ontology module
def: "An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies." []
is_a: IAO:8000000 ! ontology module
property_value: IAO:0000111 "base ontology module" xsd:string
property_value: seeAlso https://github.com/INCATools/ontology-starter-kit/issues/50
[Term]
id: IAO:8000002
name: editors ontology module
def: "An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users." []
is_a: IAO:8000000 ! ontology module
property_value: IAO:0000111 "editors ontology module" xsd:string
property_value: IAO:0000118 "source ontology module" xsd:string
[Term]
id: IAO:8000003
name: main release ontology module
def: "An ontology module that is intended to be the primary release product and the one consumed by the majority of tools." []
is_a: IAO:8000000 ! ontology module
property_value: editor_note "TODO: Add logical axioms that state that a main release ontology module is derived from (directly or indirectly) an editors module" xsd:string
property_value: IAO:0000111 "main release ontology module" xsd:string
[Term]
id: IAO:8000004
name: bridge ontology module
def: "An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module." []
is_a: IAO:8000000 ! ontology module
property_value: IAO:0000111 "bridge ontology module" xsd:string
property_value: seeAlso https://github.com/obophenotype/uberon/wiki/inter-anatomy-ontology-bridge-ontologies
[Term]
id: IAO:8000005
name: import ontology module
def: "A subset ontology module that is intended to be imported from another ontology." []
is_a: IAO:8000006 ! subset ontology module
property_value: editor_note "TODO: add axioms that indicate this is the output of a module extraction process." xsd:string
property_value: IAO:0000111 "import ontology module" xsd:string
property_value: IAO:0000118 "import file" xsd:string
property_value: seeAlso http://robot.obolibrary.org/extract
[Term]
id: IAO:8000006
name: subset ontology module
def: "An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms." []
is_a: IAO:8000000 ! ontology module
property_value: IAO:0000111 "subset ontology module" xsd:string
property_value: IAO:0000118 "ontology slim" xsd:string
property_value: IAO:0000118 "subset ontology" xsd:string
property_value: seeAlso http://robot.obolibrary.org/filter
property_value: seeAlso http://www.geneontology.org/page/go-slim-and-subset-guide
[Term]
id: IAO:8000007
name: curation subset ontology module
def: "A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation." []
is_a: IAO:8000006 ! subset ontology module
property_value: IAO:0000111 "curation subset ontology module" xsd:string
[Term]
id: IAO:8000008
name: analysis subset ontology module
def: "An ontology module that is intended for usage in analysis or discovery applications." []
is_a: IAO:8000006 ! subset ontology module
property_value: IAO:0000111 "analysis ontology module" xsd:string
[Term]
id: IAO:8000009
name: single layer subset ontology module
def: "A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint." []
is_a: IAO:8000006 ! subset ontology module
property_value: IAO:0000111 "single layer ontology module" xsd:string
property_value: IAO:0000118 "ribbon subset" xsd:string
[Term]
id: IAO:8000010
name: exclusion subset ontology module
def: "A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes." []
is_a: IAO:8000006 ! subset ontology module
property_value: IAO:0000111 "exclusion subset ontology module" xsd:string
property_value: IAO:0000118 "antislim" xsd:string
[Term]
id: IAO:8000011
name: external import ontology module
def: "An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach." []
is_a: IAO:8000005 ! import ontology module
property_value: IAO:0000111 "external import ontology module" xsd:string
property_value: IAO:0000118 "external import" xsd:string
[Term]
id: IAO:8000012
name: species subset ontology module
def: "A subset ontology that is crafted to either include or exclude a taxonomic grouping of species." []
is_a: IAO:8000006 ! subset ontology module
property_value: IAO:0000111 "species subset ontology module" xsd:string
property_value: IAO:0000118 "taxon subset" xsd:string
property_value: seeAlso https://github.com/obophenotype/uberon/wiki/Taxon-constraints
[Term]
id: IAO:8000013
name: reasoned ontology module
def: "An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available." []
is_a: IAO:8000000 ! ontology module
property_value: IAO:0000111 "reasoned ontology module" xsd:string
property_value: seeAlso http://robot.obolibrary.org/reason
[Term]
id: IAO:8000014
name: generated ontology module
def: "An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV." []
is_a: IAO:8000000 ! ontology module
property_value: editor_note "TODO: Add axioms (using PROV-O?) that indicate this is the output-of some reasoning process" xsd:string
property_value: IAO:0000111 "generated ontology module" xsd:string
[Term]
id: IAO:8000015
name: template generated ontology module
def: "An ontology module that is automatically generated from a template specification and fillers for slots in that template." []
is_a: IAO:8000014 ! generated ontology module
property_value: IAO:0000111 "template generated ontology module" xsd:string
property_value: seeAlso http://robot.obolibrary.org/template
property_value: seeAlso https://doi.org/10.1186/s13326-017-0126-0
property_value: seeAlso https://github.com/dosumis/dead_simple_owl_design_patterns/
[Term]
id: IAO:8000016
name: taxonomic bridge ontology module
is_a: IAO:8000004 ! bridge ontology module
property_value: IAO:0000111 "taxonomic bridge ontology module" xsd:string
[Term]
id: IAO:8000017
name: ontology module subsetted by expressivity
is_a: IAO:8000006 ! subset ontology module
property_value: IAO:0000111 "ontology module subsetted by expressivity" xsd:string
[Term]
id: IAO:8000018
name: obo basic subset ontology module
def: "A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\n\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\n\nAn ontology is OBO Basic if and only if it has the following characteristics:\nDAG\nUnidirectional\nNo Dangling Clauses\nFully Asserted\nFully Labeled\nNo equivalence axioms\nSingly labeled edges\nNo qualifier lists\nNo disjointness axioms\nNo owl-axioms header\nNo imports" []
is_a: IAO:8000017 ! ontology module subsetted by expressivity
property_value: IAO:0000111 "obo basic subset ontology module" xsd:string
property_value: seeAlso "6.2"
[Term]
id: IAO:8000019
name: ontology module subsetted by OWL profile
is_a: IAO:8000017 ! ontology module subsetted by expressivity
property_value: IAO:0000111 "ontology module subsetted by OWL profile" xsd:string
[Term]
id: IAO:8000020
name: EL++ ontology module
is_a: IAO:8000019 ! ontology module subsetted by OWL profile
property_value: IAO:0000111 "EL++ ontology module" xsd:string
[Term]
id: NCBITaxon:10239
name: Viruses
namespace: ncbi_taxonomy
synonym: "Vira" RELATED synonym []
synonym: "Viridae" RELATED synonym []
synonym: "viruses" RELATED blast_name []
xref: GC_ID:1
property_value: has_rank NCBITaxon:superkingdom
property_value: isDefinedBy http://purl.obolibrary.org/obo/ncbitaxon.owl
[Term]
id: NCBITaxon:117570
name: Teleostomi
namespace: ncbi_taxonomy
xref: GC_ID:1
is_a: NCBITaxon:7776 ! Gnathostomata <vertebrates>
property_value: isDefinedBy http://purl.obolibrary.org/obo/ncbitaxon.owl
[Term]
id: NCBITaxon:117571
name: Euteleostomi
namespace: ncbi_taxonomy
alt_id: NCBITaxon:40673
synonym: "bony vertebrates" EXACT genbank_common_name []
xref: GC_ID:1
is_a: NCBITaxon:117570 ! Teleostomi
property_value: isDefinedBy http://purl.obolibrary.org/obo/ncbitaxon.owl
[Term]
id: NCBITaxon:131221
name: Streptophytina
namespace: ncbi_taxonomy
synonym: "Charophyta/Embryophyta group" RELATED synonym []
synonym: "charophyte/embryophyte group" EXACT equivalent_name []
xref: GC_ID:1
is_a: NCBITaxon:35493 ! Streptophyta
property_value: has_rank NCBITaxon:subphylum
property_value: isDefinedBy http://purl.obolibrary.org/obo/ncbitaxon.owl
[Term]
id: NCBITaxon:131567
name: cellular organisms
namespace: ncbi_taxonomy
synonym: "biota" RELATED synonym []
xref: GC_ID:1
property_value: isDefinedBy http://purl.obolibrary.org/obo/ncbitaxon.owl
[Term]
id: NCBITaxon:1338369
name: Dipnotetrapodomorpha
namespace: ncbi_taxonomy
xref: GC_ID:1
is_a: NCBITaxon:8287 ! Sarcopterygii
property_value: isDefinedBy http://purl.obolibrary.org/obo/ncbitaxon.owl
[Term]
id: NCBITaxon:1437010
name: Boreoeutheria
namespace: ncbi_taxonomy
synonym: "Boreotheria" RELATED synonym []
xref: GC_ID:1
xref: PMID:11743200
xref: PMID:11791233
is_a: NCBITaxon:9347 ! Eutheria
property_value: isDefinedBy http://purl.obolibrary.org/obo/ncbitaxon.owl
[Term]
id: NCBITaxon:1437180
name: Acrogymnospermae
namespace: ncbi_taxonomy
xref: GC_ID:1
is_a: NCBITaxon:58024 ! Spermatophyta
property_value: isDefinedBy http://purl.obolibrary.org/obo/ncbitaxon.owl
[Term]
id: NCBITaxon:2
name: Bacteria
namespace: ncbi_taxonomy
synonym: "bacteria" RELATED blast_name []
synonym: "eubacteria" EXACT genbank_common_name []
synonym: "Monera" RELATED in_part []
synonym: "Procaryotae" RELATED in_part []
synonym: "Prokaryota" RELATED in_part []
synonym: "Prokaryotae" RELATED in_part []
synonym: "prokaryote" RELATED in_part []
synonym: "prokaryotes" RELATED in_part []
xref: GC_ID:11
xref: PMID:10425795
xref: PMID:10425796
xref: PMID:10425797
xref: PMID:10490293
xref: PMID:10843050
xref: PMID:10939651
xref: PMID:10939673
xref: PMID:10939677
xref: PMID:11211268
xref: PMID:11321083
xref: PMID:11321113
xref: PMID:11411719
xref: PMID:11540071
xref: PMID:11542017
xref: PMID:11542087
xref: PMID:11760965
xref: PMID:12054223
xref: PMID:2112744
xref: PMID:270744
xref: PMID:7520741
xref: PMID:8123559
xref: PMID:8186100
xref: PMID:8590690
xref: PMID:9103655
xref: PMID:9336922
is_a: NCBITaxon:131567 ! cellular organisms
property_value: has_rank NCBITaxon:superkingdom
property_value: isDefinedBy http://purl.obolibrary.org/obo/ncbitaxon.owl
[Term]
id: NCBITaxon:207598
name: Homininae
namespace: ncbi_taxonomy
synonym: "Homo/Pan/Gorilla group" RELATED synonym []
xref: GC_ID:1
is_a: NCBITaxon:9604 ! Hominidae
property_value: has_rank NCBITaxon:subfamily
property_value: isDefinedBy http://purl.obolibrary.org/obo/ncbitaxon.owl
[Term]
id: NCBITaxon:2157
name: Archaea
namespace: ncbi_taxonomy
synonym: "archaea" RELATED blast_name []
synonym: "Archaebacteria" RELATED synonym []
synonym: "Mendosicutes" RELATED synonym []
synonym: "Metabacteria" RELATED synonym []
synonym: "Monera" RELATED in_part []
synonym: "Procaryotae" RELATED in_part []
synonym: "Prokaryota" RELATED in_part []
synonym: "Prokaryotae" RELATED in_part []
synonym: "prokaryote" RELATED in_part []
synonym: "prokaryotes" RELATED in_part []
xref: GC_ID:11
xref: PMID:10425795
xref: PMID:10425796
xref: PMID:10425797
xref: PMID:10490293
xref: PMID:10843050
xref: PMID:10939651
xref: PMID:10939673
xref: PMID:10939677
xref: PMID:11211268
xref: PMID:11321083
xref: PMID:11321113
xref: PMID:11411719
xref: PMID:11540071
xref: PMID:11541975
xref: PMID:11542064
xref: PMID:11542149
xref: PMID:11760965
xref: PMID:12054223
xref: PMID:2112744
xref: PMID:25527841
xref: PMID:270744
xref: PMID:8123559
xref: PMID:8590690
xref: PMID:9103655
xref: PMID:9336922
is_a: NCBITaxon:131567 ! cellular organisms
property_value: has_rank NCBITaxon:superkingdom
property_value: isDefinedBy http://purl.obolibrary.org/obo/ncbitaxon.owl
[Term]
id: NCBITaxon:2759
name: Eukaryota
namespace: ncbi_taxonomy
synonym: "Eucarya" RELATED synonym []
synonym: "Eucaryotae" RELATED synonym []
synonym: "eucaryotes" EXACT genbank_common_name []
synonym: "Eukarya" RELATED synonym []
synonym: "Eukaryotae" RELATED synonym []
synonym: "eukaryotes" EXACT common_name []
synonym: "eukaryotes" RELATED blast_name []
xref: GC_ID:1
xref: PMID:23020233
xref: PMID:30257078
is_a: NCBITaxon:131567 ! cellular organisms
property_value: has_rank NCBITaxon:superkingdom
property_value: isDefinedBy http://purl.obolibrary.org/obo/ncbitaxon.owl
[Term]
id: NCBITaxon:3041
name: Chlorophyta
namespace: ncbi_taxonomy
synonym: "algae" RELATED in_part []
synonym: "Chlorophycota" RELATED synonym []
synonym: "Chlorophyta sensu Bremer 1985" RELATED synonym []
synonym: "green algae" EXACT genbank_common_name []
synonym: "green algae" RELATED blast_name []
xref: GC_ID:1
xref: PMID:23020233
is_a: NCBITaxon:33090 ! Viridiplantae
property_value: has_rank NCBITaxon:phylum
property_value: isDefinedBy http://purl.obolibrary.org/obo/ncbitaxon.owl
[Term]
id: NCBITaxon:314146
name: Euarchontoglires
namespace: ncbi_taxonomy
xref: GC_ID:1
xref: PMID:11214319
xref: PMID:12082125
xref: PMID:12878460
xref: PMID:15522813
is_a: NCBITaxon:1437010 ! Boreoeutheria
property_value: has_rank NCBITaxon:superorder
property_value: isDefinedBy http://purl.obolibrary.org/obo/ncbitaxon.owl
[Term]
id: NCBITaxon:314293
name: Simiiformes
namespace: ncbi_taxonomy
synonym: "Anthropoidea" RELATED synonym []
xref: GC_ID:1
is_a: NCBITaxon:376913 ! Haplorrhini
property_value: has_rank NCBITaxon:infraorder
property_value: isDefinedBy http://purl.obolibrary.org/obo/ncbitaxon.owl
[Term]
id: NCBITaxon:314295
name: Hominoidea
namespace: ncbi_taxonomy
synonym: "ape" EXACT common_name []
synonym: "apes" EXACT genbank_common_name []
xref: GC_ID:1
is_a: NCBITaxon:9526 ! Catarrhini
property_value: has_rank NCBITaxon:superfamily
property_value: isDefinedBy http://purl.obolibrary.org/obo/ncbitaxon.owl
[Term]
id: NCBITaxon:3193
name: Embryophyta