-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgeno-base.obo
3934 lines (3406 loc) · 306 KB
/
geno-base.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: geno/releases/2023-10-08/geno-base.owl
ontology: geno/geno-base
property_value: http://purl.org/dc/elements/1.1/description "GENO is an OWL model of genotypes, their more fundamental sequence components, and links to related biological and experimental entities. At present many parts of the model are exploratory and set to undergo refactoring. In addition, many classes and properties have GENO URIs but are place holders for classes that will be imported from an external ontology (e.g. SO, ChEBI, OBI, etc). Furthermore, ongoing work will implement a model of genotype-to-phenotype associations. This will support description of asserted and inferred relationships between a genotypes, phenotypes, and environments, and the evidence/provenance behind these associations. \n\nDocumentation is under development as well, and for now a slidedeck is available at http://www.slideshare.net/mhb120/brush-icbo-2013" xsd:string
property_value: http://purl.org/dc/elements/1.1/title "GENO ontology" xsd:string
property_value: http://purl.org/dc/elements/1.1/type IAO:8000001
property_value: http://purl.org/dc/terms/license https://creativecommons.org/licenses/by/4.0/
property_value: owl:versionInfo "2023-10-08" xsd:string
[Term]
id: BFO:0000001
name: entity
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:0000116 "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: IAO:0000116 "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
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
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000002
name: continuant
is_a: BFO:0000001 ! entity
disjoint_from: BFO:0000003 ! occurrent
property_value: IAO:0000116 "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: IAO:0000116 "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
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
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000003
name: occurrent
is_a: BFO:0000001 ! entity
property_value: IAO:0000116 "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: IAO:0000116 "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: IAO:0000116 "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
property_value: IAO:0000116 "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
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
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000004
name: independent continuant
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])" []
is_a: BFO:0000002 ! continuant
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: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000015
name: process
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])" []
is_a: BFO:0000003 ! occurrent
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:0000116 "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: 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
property_value: IAO:0000112 "an atom of element X has the disposition to decay to an atom of element Y" xsd:string
property_value: IAO:0000112 "certain people have a predisposition to colon cancer" xsd:string
property_value: IAO:0000112 "children are innately disposed to categorize objects in certain ways." xsd:string
property_value: IAO:0000112 "the cell wall is disposed to filter chemicals in endocitosis and exocitosis" xsd:string
property_value: IAO:0000116 "BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type [89" xsd:string
property_value: IAO:0000600 "b is a disposition means: b is a realizable entity & b’s bearer is some material entity & b is such that if it ceases to exist, then its bearer is physically changed, & b’s realization occurs when and because this bearer is in some special physical circumstances, & this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002])" xsd:string
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000017
name: realizable entity
is_a: BFO:0000020 ! specifically dependent continuant
disjoint_from: BFO:0000019 ! quality
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: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
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000019
name: quality
is_a: BFO:0000020 ! specifically dependent continuant
property_value: IAO:0000112 "the ambient temperature of this portion of air" xsd:string
property_value: IAO:0000112 "the color of a tomato" xsd:string
property_value: IAO:0000112 "the length of the circumference of your waist" xsd:string
property_value: IAO:0000112 "the mass of this piece of gold." xsd:string
property_value: IAO:0000112 "the shape of your nose" xsd:string
property_value: IAO:0000112 "the shape of your nostril" xsd:string
property_value: IAO:0000600 "a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001])" xsd:string
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000020
name: specifically dependent continuant
def: "b is a relational specifically dependent continuant = Def. b is a specifically dependent continuant and there are n > 1 independent continuants c1, … cn which are not spatial regions are such that for all 1 i < j n, ci and cj share no common parts, are such that for each 1 i n, b s-depends_on ci at every time t during the course of b’s existence (axiom label in BFO2 Reference: [131-004])" []
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])" []
is_a: BFO:0000002 ! continuant
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:0000116 "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
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000023
name: role
is_a: BFO:0000017 ! realizable entity
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:0000116 "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:0000600 "b is a role means: b is a realizable entity and 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 and 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
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000031
name: generically dependent continuant
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])" []
is_a: BFO:0000002 ! continuant
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: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000040
name: material entity
is_a: BFO:0000004 ! independent continuant
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:0000116 "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: IAO:0000116 "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: IAO:0000116 "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: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
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BothStrandsPosition
name: Both strands
is_a: StrandedPosition ! Stranded position
[Term]
id: CHEBI:23367
name: molecular entity
is_a: BFO:0000040 ! material entity
property_value: IAO:0000116 "Stub class to serve as root of hierarchy for imports of molecular entities from ChEBI ontology." xsd:string
[Term]
id: CHEBI:33696
name: nucleic acid
is_a: CHEBI:23367 ! molecular entity
[Term]
id: CL:0000000
name: cell
comment: Stub class to serve as root of hierarchy for imports of cell types from CL or other cell terminologies.
is_a: UBERON:0001062 ! anatomical entity
[Term]
id: CLO:0000031
name: cell line
def: "A cultured cell population that represents a genetically stable and homogenous population of cultured cells that shares a common propagation history (i.e. has been successively passaged together in culture)." []
is_a: BFO:0000040 ! material entity
relationship: RO:0001000 OBI:0100026 ! derives from organism
[Term]
id: ENVO:01000254
name: environmental system
comment: In ENVO's alignment with the Basic Formal Ontology, this class is being considered as a subclass of a proposed BFO class "system". The relation "environed_by" is also under development. Roughly, a system which includes a material entity (at least partially) within its site and causally influences that entity may be considered to environ it. Following the completion of this alignment, this class' definition and the definitions of its subclasses will be revised.
is_a: BFO:0000040 ! material entity
property_value: IAO:0000116 "1. Stub class to serve as root of hierarchy for imports from an ontology of environment and experimental conditions.\n\n2. Need to consdier how to model environments in a way that covers ENVO and XCO content in a consistent and coherent way. A couple classes under Exploratory Class are relvant here. Consider how we might approach environments/condisitons using an EQ aproach analogous to how phenotypes are defined (i.e. consider environments/coonditions as qualities inhereing in some entity)." xsd:string
[Term]
id: ExactPosition
name: Exact position
def: "A position that is exactly known." []
is_a: Position ! Position
[Term]
id: ForwardStrandPosition
name: Positive strand
is_a: StrandedPosition ! Stranded position
[Term]
id: GENO:0000000
name: genomic genotype (sex-agnostic)
def: "A genomic genotype that does not specify the sex determining chromosomal features of its bearer (i.e. does not indicate the background sex chromosome complement)" []
comment: In practice, most genotype instances classified as sex-agnostic genotypes because they are not sex-specific. When a genotype is indicated to be that of a male or female, it implies a known sex chromosome complement in the genomic background. This requires us to distinguish separate 'sex-qualified' genotype instances for males and females that share a common 'sex-agnostic' genotype. For example, male and female mice that of the same strain/background and containing the same set of genetic variations will have the same sex-agnostic intrinsic genotype, but different sex-qualified intrinsic genotypes (which take into account background sex chromosome sequence as identifying criteria for genotype instances).
is_a: GENO:0000899 ! genomic genotype
property_value: IAO:0000112 "Example zebrafish intrinsic genotype:\n\nGenotype = fgf8a<ti282a/+>; shha<tb392/tb392> (AB)\nreference component (genomic background) = AB \nvariant component ('genomic variation complement') = fgf8a<ti282a/+>; shha<tb392/tb392>\n\n. . . and within this variant component, there are two 'variant single locus complements' represented:\n\nallele complement 1 = fgf8a<ti282a/+>\nallele complement 2 = shha<tb392/tb392>\n\nand within each of these 'variant single locus complements' there is one or more variant gene locus member:\n\nin complement 1: fgf8a<ti282a>\nin complement 2: shha<ttb392>" xsd:string
property_value: IAO:0000116 "This modeling approach allows use to create separate genotype instances for data sources that report sex-specific phenotypes to ensure that sex-specific G2P differences are accurately described. These sex-qualified genotypes can be linked to the more general sex-agnostic intrinsic genotype that is shared by make and female mice of the same strain, to aggregate associated phenotypes at this level, and allow aggregation with G2P association data about the same strains from sources that distinguish sex-specific phenotypes (e.g. IMPC) and those that do not (e.g. MGI).\n\nConceptually, a sex-qualified phenotype represents a superset of sequence features relative to a sex-agnostic intirnsic genotype, in that if specifies the background sex-chromosome complement of the genome. Thus, in the genotype partonomy, a sex-qualified genotype has as part a sex-agnostic genotype. This allows for the propagation of phenotypes associated with a sex-qualified genotype to the intrinsic genotype." xsd:string
property_value: IAO:0000118 "genotype" xsd:string
property_value: IAO:0000118 "organismal genotype" xsd:string
property_value: IAO:0000118 "sex-agnostic intrinsic genotype" xsd:string
[Term]
id: GENO:0000002
name: variant allele
def: "An allele that varies in it sequence from what is considered the reference or canonical sequence at that location." []
comment: Note that what is considered the 'reference' vs. 'variant' sequence at a given locus may be context-dependent - so being 'variant' is more a role played in a particular situation. A 'variant allele' contains a 'sequence alteration', or is itself a 'sequence alteration', that makes it vary_with some other allele to which it is being compared. But in any comparison of alternative sequences at a particular genomic location, the choice of a 'reference' vs the 'variant' is context-dependent - as comparisons in other contexts might consider a different feature to be the reference. So being 'variant' is more a role played in a particular situation - as an allele that is variant in one context/analysis may be considered reference in another.\n\nA variant allele can be variant along its entire extent, in which case it is considered a 'sequence alteration', or it can span a broader extent of sequence contains sequence alteration(s) as part. And example of the former is a SNP, and an example of the latter is a variant gene allele that contains one or more point mutations in its sequence.
intersection_of: GENO:0000512 ! allele
intersection_of: GENO:0000683 GENO:0000036 ! varies_with reference allele
property_value: IAO:0000116 "The use of the descriptor 'variant' here is consistent with naming recommendations from the ACMG Guidelines paper here: PMID:25741868. Generally, the descriptive labels chosen for subtypes of variant allele conform these recommendations as well, where 'variant' is used to cover mutant and polymorphic alleles." xsd:string
property_value: IAO:0000118 "alternate allele" xsd:string
property_value: IAO:0000118 "sequence-variant feature" xsd:string
property_value: IAO:0000118 "variant feature" xsd:string
[Term]
id: GENO:0000009
name: genomic variation complement
def: "A genomic feature set representing all 'variant single locus complements' in a single genome, which together constitute the 'variant' component of a genomic genotype." []
comment: A 'complement' refers to an exhaustive collection of *all* objects that make up some well-defined set. Such a complement may contain 0, 1, or more than one members. The notion of a complement is useful for defining many biologically-relevant sets of sequence features. Here, a 'genomic variation complement' is the set of all 'single locus complements' in a particular genome that harbor some known variation.\n\nIn model organisms, the majority of genotypes describe variation at a single location in the genome (ie only one 'single-locus variant complement') that are variant realtive to some reference background. For example, the genotype instance 'fgf8a<t1282a/+>(AB)') exhibits a mutation at only one locus. But some genotypes describe variation at more than one location (e.g. a double mutant that has alterations in the fgf8a gene and the shh gene)).
intersection_of: GENO:0000660 ! genomic feature set
intersection_of: GENO:0000382 GENO:0000030 ! has_variant_part variant single locus complement
property_value: IAO:0000116 "Note that even a reference feature (e.g. a wild-type gene) that is a member of a single locus complement that contains a variant allele is included in this 'genomic variation complement'. Thus, the members of this 'genomic variation complement' (which is a sequence collection) are 'single locus variant complements'. Our axiom below uses has_part rather than has_member, however, to account for the fact that many 'genomic variation complements' have only one 'single locus variant complement' as members. So because has_member is not reflexive, it is not appropriate for these cases." xsd:string
[Term]
id: GENO:0000010
name: background genome
def: "A reference genome that represents the sequence of a genome from which a variant genome is derived (through the introduction of sequence alterations)." []
xref: OBI:genetic population background information
is_a: GENO:0000914 ! reference genome
property_value: IAO:0000112 "The ZFIN background 'AB' that serves as a reference as part of the genotype fgf8a^ti282a/+ (AB)" xsd:string
property_value: IAO:0000116 "Here, a 'genomic background' would differ form a 'reference genome' in that 'background' implies a derivation of the variant from the background (which is the case for most MOD strains), whereas a reference is simply meant as a target for comparison. But in a sense all background genomes are by default reference, in that the derived variant genome is compared against it." xsd:string
property_value: IAO:0000118 "genomic background" xsd:string
[Term]
id: GENO:0000014
name: gene allele
def: "A genomic feature that represents one of a set of versions of a gene (i.e. a haplotype whose extent is that of a gene)" []
comment: In SO, the concept of a 'gene' is functionally defined, in that a gene necessarily produces a functional product. By contrast, the concept of a 'gene allele' here is positionally defined - representing the sequence present at the location a gene resides in a reference genome (based on sequence alignment). An Shh gene allele, for example, may be a fully functional wild-type version of the gene, a non-functional version carrying a deleterious point mutation, a truncated version of the gene, or even a complete deletion. In all these cases, an 'Shh gene allele' exists at the position where the canonical gene resides in the reference genome - even if the extent of this allele different than the wild-type, or even zero in the case of the complete deletion.\n\nA genomic feature being an allele_of a gene is based on its location in a host genome - not on its sequence. This means, for example, that the insertion of the human SMN2 gene into the genome of a mouse (see http://www.informatics.jax.org/allele/MGI:3056903) DOES NOT represent an allele_of the human SMN2 gene according to the GENO model - because it is located in a mouse genome, not a human one. Rather, this is a transgenic insertion that derives_sequence_from the human SMN2 gene. If this human SMN2 gene is inserted within the mouse SMN2 gene locus (e.g. used to replace mouse SMN2 gene), the feature it creates is an allele_of the mouse SMN2 gene (one that happens to match the sequence of the human ortholog of the gene). But again, it is not an allele_of the human SMN2 gene.
xref: http://purl.obolibrary.org/obo/SO_0001023 ! allele
is_a: GENO:0000512 ! allele
relationship: GENO:0000408 SO:0000704 ! is_allele_of gene
property_value: IAO:0000112 "The reference/wild-type cd99l2 danio rerio gene allele spans bases 27,004,426-27,021,059 on Chromosome 7. The \"mn004Gt\" represents an experimentally-created allele of this gene, in which sequence from a gene trap construct containing an RFP marker has been inserted at the cd99l2 gene locus. The resulting gene allele includes sequence from this construct that make it longer than the reference gene sequence, and also alter its seqauence in a way that prevents it from producing a functional product. The sequence extent of this cd99l2 gene allele is determined based on how its sequence aligns with that of the canonical gene and surrounding sequence in a reference genome.\n\nhttp://useast.ensembl.org/Danio_rerio/Gene/Summary?g=ENSDARG00000056722\n\nhttp://zfin.org/action/feature/feature-detail?zdbID=ZDB-ALT-111117-8" xsd:string
property_value: IAO:0000116 "Regarding the distinction between a 'gene' and a 'gene allele': Every zebrafish genome contains a 'gene allele' for every zebrafish gene. Many will be 'wild-type' or at least functional gene alleles. But some may be alleles that are mutated or truncated so as to lack functionality. According to current SO criteria defining genes, a 'gene' no longer exists in the case of a non-functional or deleted variant. But the 'gene allele' does exist - and its extent is that of the remaining/altered sequence based on alignment with a reference gene. Even for completely deleted genes, an allele of the gene exists (and here is equivalent to the junction corresponding to the where gene would live based on a reference alignment).\n\nThis design allows us to classify genes and any variants of those genes (be they functional or not) as the same type of thing (ie a 'gene allele'), since classification is based on genomic position rather than functional capacity. This is practical for representation of variant genotypes which often carry non-functional versions of a gene at a particular locus. What is important here is specifying what is present at a locus associated with a particular gene, whether or not it is a functional gene or not." xsd:string
[Term]
id: GENO:0000017
name: reference sequence
def: "A sequence that serves as a standard against which other sequences at the same location are compared." []
comment: A reference sequence is one that serves as a standard against which 'variant' versions of the feature are compared, or against which located sequence features within the reference region are aligned in order to assign position information. Being 'reference' does not imply anything about the frequency or function of features bearing the sequence. Only that some agent has used it to serve a reference role in defining a variant or locating a sequence.
intersection_of: GENO:0000702 ! biological sequence
intersection_of: GENO:0000968 GENO:0000152 ! sequence role reference
property_value: IAO:0000116 "The notion of a 'reference' in GENO is implemented at the level of 'biological sequence' rather than at the level of a sequence feature - i.e. we define a class for 'reference sequence' rather than reference sequence feature'. This is because it is at the *sequence* level that features of interest are determined to be variant or not. It is taken for granted that the *location* of the feature of interest is the same as that of the reference sequence to which it is compared, becasue an alignment process establishing common location always precedes the sequence comparison that determines if the feature is variant." xsd:string
property_value: IAO:0000118 "reference sequence" xsd:string
[Term]
id: GENO:0000019
name: obsolete sequence feature collection
def: "a collection more than one sequence features (ie a collection of discontinuous sequence features)" []
comment: 1. Note that members of this class can be features with extents of zero (e.g. junctions). This is likely different than the SO:sequence feature class which has members that are regions.
xref: perhaps not same as SO:sequence collection\, as here we explicitly include features that can have an extent of zero (and SO\:sequence collection is a collection of regions that have an extent of at least one)
is_obsolete: true
[Term]
id: GENO:0000022
name: obsolete genomic feature collection
def: "A sequence feature collection comprised of discontiguous sequences from a single genome" []
comment: Conceptually, members of this collection are meant to be about the sum total genetic material in a single cell or organism. But these members need not be associated with an actual material in a real cell or organism individual. For example, things like a 'reference genome' may not actually represent the material genome of any individual cell or organism in reality. Here, there may be no genomic material referents of the sequences in such a collection because the genome is tied to an idealized, hypothetical cell or organism instance. The key is that conceptually, they are still tied to the idea of being contained in a single genome. In the case of a genotype, the individual seqeunce members are not all about the genetic material of a singel cell or organism. Rather, it is the resolved sequence contained in the genotype that is meant to be about the total genomic sequence content of a genome - which we deem acceptable for classifying as a genetic locus collection.
property_value: IAO:0000116 "Previously called 'genetic locus collection'. Difference between 'genetic' and 'genomic', as used here, is that 'genomic' implies a feature is a heritable part of some genome, while 'genetic' implies that it is part of some feature that is capable of contributing to gene expression in a cell or other biological system." xsd:string
property_value: IAO:0000118 "genomic feature collection" xsd:string
is_obsolete: true
[Term]
id: GENO:0000029
name: obsolete reference single locus complement
def: "A single locus complement that serves as a standard against which 'variant' sequences are compared" []
property_value: IAO:0000118 "reference allelic complement" xsd:string
property_value: IAO:0000118 "reference single locus feature complement" xsd:string
property_value: IAO:0000231 "Not required at present for any specific use case, so marking as exploratory and obsoleting for simplicity.\n\nEq Class axiom:\n'single locus complement'\n and (has_sequence_attribute some reference)\n\nSC axioms:\n'has member' exactly 0 'variant allele'\n'has member' only 'reference genomic feature'\n'has member' some 'reference genomic feature'" xsd:string
is_obsolete: true
[Term]
id: GENO:0000030
name: variant single locus complement
def: "A single locus complement in which at least one member allele is considered variant, and/or the total number of features in the complement deviates from the normal poloidy of the reference genome (e.g. trisomy 13)." []
comment: Instances of this class are sets comprised of all allels at a specified genomic location where at least one allele is variant (non-reference). In diploid genomes this complement typically has two members.\n\nNote that this class also covers cases where deviant numbers of genes or chromosomes are present in a genome (e.g. trisomy of chromosome 21), even if their sequence is not variant.
intersection_of: GENO:0000516 ! single locus complement
intersection_of: GENO:0000382 GENO:0000002 ! has_variant_part variant allele
property_value: IAO:0000118 "variant allelic complement" xsd:string
[Term]
id: GENO:0000033
name: variant genome
def: "A genome that varies at one or more loci from the sequence of some reference genome." []
xref: http://purl.obolibrary.org/obo/SO_0001506 ! variant_genome (definition of SO term here is too vague to know if has same meaning as GENO class here)
intersection_of: SO:0001026 ! genome
intersection_of: GENO:0000683 GENO:0000914 ! varies_with reference genome
relationship: GENO:0000382 SO:0001059 ! has_variant_part sequence_alteration
[Term]
id: GENO:0000036
name: reference allele
def: "An allele whose sequence matches what is consdiered to be the reference sequence at that location in the genome." []
comment: Being a 'reference allele' is a role or status assigned in the context of a specific dataset or analysis. In human variation datasets, 'reference' status is typically assigned based on factors such as being the most common in a population, being an ancestral allele, or being indentified first as a prototypical example of some feature or gene. For example, 'reference alleles' in characterizing SNPs often represent the allele first characterized in a reference genome, or the most common allele in a population.\n\nIn model organism datasets, 'reference' alleles are typically (but not always) the 'wild-type' variant at a given locus, representing a functional and unaltered version of the feature that is part of a defined genomic background, and against which natural or experimentally-induced alterations are compared.
intersection_of: GENO:0000512 ! allele
intersection_of: GENO:0000968 GENO:0000152 ! sequence role reference
[Term]
id: GENO:0000037
name: obsolete unspecified feature
def: "A genomic feature known to exist, but remaining uncharacterized with respect to its identity (e.g. which allele exists at a given gene locus)." []
comment: An unspecified feature is known to exist as the partner of a characterized allele when the zygosity at that locus is not known. Its specific sequence/identity, however, is unknown (ie whether it is a reference or variant allele).
property_value: IAO:0000114 GENO:0000484
property_value: IAO:0000116 "Uses as a term of convenience for describing data reporting unspecified alleles in a genotype (i.e. in cases where zygosoty for a given locus is not known). Typlically recorded in genotype syntaxes as a ' /? '." xsd:string
property_value: IAO:0000231 "Not required at present for any specific use case, so marking as exploratory and obsoleting for simplicity.\n\nEq Class def: 'genomic feature'\n and (has_sequence_attribute some unspecified)" xsd:string
is_obsolete: true
[Term]
id: GENO:0000042
name: obsolete reference junction
def: "A junction found at a chromosomal position where an insertion has occurred on the homologous chromosome, such that the junction represents the reference feature paired with the hemizygously inserted feature." []
comment: In the case of a transgenic insertion that creates a hemizygous locus, the refernce locus that this insertion is variant_with is the junction on the homologous chromosome at the same position where the insertion occurred. This is the 'hemizygous reference' junction.\n\nThe junction-insertion pair represents the allelic complement at that locus, which is considered to be hemizygous. Most genotype syntaxes represent this hemizygous state with a ' /0' notation.
property_value: IAO:0000118 "hemizygous reference junction" xsd:string
property_value: IAO:0000231 "Eliminating unecessary defined/organizational classes. Former logical def:\n\njunction\n and (has_sequence_attribute some reference)\n\nSubclass axiom:\nis_variant_with some insertion" xsd:string
is_obsolete: true
[Term]
id: GENO:0000047
name: danio rerio gene
def: "A gene that originates from the genome of a danio rerio." []
intersection_of: SO:0000704 ! gene
intersection_of: RO:0002162 NCBITaxon:7955 ! in taxon Danio rerio
[Term]
id: GENO:0000054
name: homo sapiens gene
def: "A gene that originates from the genome of a homo sapiens." []
intersection_of: SO:0000704 ! gene
intersection_of: RO:0002162 NCBITaxon:9606 ! in taxon Homo sapiens
[Term]
id: GENO:0000057
name: mus musculus gene
def: "A gene that originates from the genome of a mus musculus." []
intersection_of: SO:0000704 ! gene
intersection_of: RO:0002162 NCBITaxon:10090 ! in taxon Mus musculus
[Term]
id: GENO:0000060
name: obsolete reference gene allele
def: "A version/allele of a gene that serves as a standard against which variant genes are compared." []
comment: Being a 'reference gene' is a role or status assigned in the context of a specific dataset or analysis. In human variation datasets, 'reference' status is typically assigned based on factors such as being the most common version/allele in a population, being an ancestral allele, or being indentified first as a prototypical example of a gene.\n\nIn model organism datasets, 'reference' genes are typically the 'wild-type' allele for a given gene, representing a functional and unaltered version of the gene that is part of a defined genomic background, and against which natural or experimentally-induced versions are compared.
property_value: IAO:0000112 "A reference human sonic hedgehog (shh) gene spans bases 155,592,680-155,604,967 on Chromosome 7, according to genome build GRCh37, and produces a primary funcitonal transcript that is 4454 bp in length and produces a 462 amino acid protein involved in cell signaling events behind various aspects of cell differentiation and development.\nhttp://useast.ensembl.org/Homo_sapiens/Gene/Summary?g=ENSG00000164690\n\nNote that this may be slightly different than the extend described in other gene databases, such as Entrez Gene:http://www.ncbi.nlm.nih.gov/gene/6469" xsd:string
property_value: IAO:0000118 "reference gene" xsd:string
property_value: IAO:0000231 "Not required at present for any specific use case, so marking as exploratory and obsoleting for simplicity.\n\nEq Class axiom:\n'gene allele'\n and (has_sequence_attribute some reference)\n\nSC axioms:\nis_variant_with some 'gene allele'\nis_reference_allele_of some gene" xsd:string
is_obsolete: true
[Term]
id: GENO:0000091
name: obsolete experimental insertion
is_obsolete: true
[Term]
id: GENO:0000092
name: gene trap insertion
is_a: SO:0000667 ! insertion
[Term]
id: GENO:0000093
name: integrated transgene
def: "A transgene that has been integrated into a chrromosome in the host genome." []
comment: An integrated transgene differs from a transgenic insertion in that a transgenic insertion may contain single transgene, a partial transgene that needs endognous sequences from the host genome to become functional (e.g. an enhancer trap), or multiple transgenes (i.e. be polycistronic). Fiurthermore, the transgenic insertion may contain sequences in addition to its transgene(s - e.g. sequences flanking the transgene reqired for integration or replicaiton/maintenance in the host genome. The term 'integrated transgene' covers individual transgenes that were delivered in whole or in part by a transgenic insertion.\n\nAn 'integrated transgene' differs from its parent 'transgene' in that transgenes can include genes introduced into a cell/organism on an extra-chromosomal plasmid that is never integrated into the host genome.
is_a: SO:0000902 ! transgene
relationship: BFO:0000050 SO:0001218 ! is part of transgenic_insertion
[Term]
id: GENO:0000106
name: genomic material
def: "A nucleic acid macromolecule that is part of a cell or virion and has been inherited from an ancestor cell or virion, and/or is capable of being replicated and inherited through successive generations of progeny." []
comment: 1. Genomic material here is considered as a DNA or RNA molecule that is found in a cell or virus, and capable of being replicated and inherited by progeny cells or virus. As such, this nucleic acid is either chromosomal DNA, or some replicative epi-chromosomal plasmid or transposon. Genetic material is necessarily part of some 'material genome', and both are necessarily part of some cell or virion. So a genomic library is not considered a material genome/genetic material - rather, we could say that this genomic library is a 'genomic material sample' that bears the concretization of some genome.\n\n2. Genomic material need not be inherited from an immediate ancestor cell or organism (e.g. a replicative plasmid or transposon acquired through some experimental modification), but such cases must be capable of being inherited by progeny cells or organisms.
is_a: GENO:0000482 ! genetic material
relationship: RO:0000091 GENO:0000139 ! has disposition heritable
property_value: IAO:0000114 GENO:0000484
property_value: IAO:0000116 "1. Note that at present, a material genome and genetic material are necessarily part of some cell or virion. So a genomic library is not considered a material genome/genomic material - rather, we could say that this genomic library is a 'genomic material sample' that bears the concretization of some genome.\n\n2. A challenging edge case is experimentally delivered DNA into a terminally differentiated cell that will never divide. Such material does technically meet our definition - since we are careful to say that the material must be *capable of* being stably inherited through subsequent generations. Thus, we would say that *if* the cell were resume replication, the material would be heritable in this way." xsd:string
[Term]
id: GENO:0000108
name: material genome
def: "A material entity that represents all genetic material in a cell or virion. The material genome is typically molecular aggregate of all the chromosomal DNA and epi-chromosomal DNA that represents all sequences that are heritable by progeny of a cell or virion." []
comment: A genome is the collection of all nucleic acids in a cell or virus, representing all of an organism's hereditary information. It is typically DNA, but many viruses have RNA genomes. The genome includes both nuclear chromosomes (ie nuclear and micronucleus chromosomes) and cytoplasmic chromosomes stored in various organelles (e.g. mitochondrial or chloroplast chromosomes), and can in addition contain non-chromosomal elements such as replicative viruses, plasmids, and transposable elements.\n\nNote that at present, a material genome and genetic material are necessarily part of some cell or virion. So a genomic library is not considered a material genome/genetic material - rather, we could say that this genomic library is a 'genomic material sample' that bears the concretization of some SO:genome.
is_a: BFO:0000040 ! material entity
property_value: IAO:0000118 "physical genome" xsd:string
[Term]
id: GENO:0000111
name: human population
def: "a population of homo sapiens grouped together in virtue of their sharing some commonality (either an inherent attribute or an externally assigned role)" []
is_a: OBI:0000181 ! population
property_value: IAO:0000116 "Consider http://semanticscience.org/resource/SIO_001062 ! human population (\"A human population refers to a collection of human beings\")." xsd:string
property_value: IAO:0000118 "homo sapiens population" xsd:string
[Term]
id: GENO:0000112
name: strain or breed
def: "A maximal collection of organisms of a single species that have been bred or experimentally manipulated with the goal of being genetically identical." []
comment: Two mice colonies with the same genotype information, but maintained in different labs, are different strains (many examples of this in MGI/IMSR)
is_a: GENO:0000113 ! taxonomic group
relationship: RO:0002162 OBI:0100026 ! in taxon organism
property_value: IAO:0000118 "organism strain or breed" xsd:string
[Term]
id: GENO:0000113
name: taxonomic group
is_a: PCO:0000000 ! collection of organisms
property_value: IAO:0000116 "A group comprised of organisms from a single taxonomic group (e.g. family, order, genus, species, or a strain or breed within a given taxon)" xsd:string
[Term]
id: GENO:0000118
name: mus musculus strain
is_a: GENO:0000112 ! strain or breed
[Term]
id: GENO:0000119
name: danio rerio strain
is_a: GENO:0000112 ! strain or breed
relationship: RO:0002351 NCBITaxon:7955 {all_only="true"} ! has member Danio rerio
relationship: RO:0002351 NCBITaxon:7955 ! has member Danio rerio
[Term]
id: GENO:0000125
name: obsolete sequence feature collection attribute
def: "sequence attribute that can inhere only in a collection of more than one sequence features" []
is_obsolete: true
[Term]
id: GENO:0000131
name: in cis
def: "A quality inhering in a collection of discontinuous sequence features in a single genome that reside on the same macromolecule (eg the same chromosomes)." []
is_a: GENO:0000886 ! allelic phase
[Term]
id: GENO:0000132
name: in trans
def: "A quality inhering in a collection of discontinuous sequence features in a single genome that reside on different macromolecules (e.g. different chromosomes)." []
is_a: GENO:0000886 ! allelic phase
[Term]
id: GENO:0000133
name: zygosity
def: "An allelic state that describes the degree of similarity between features in a 'single locus complement', within the genome of a cell or organism (i.e., whether the alleles or haplotypes that reside at the same location on paired chromosomes are the same or different)." []
xref: http://semanticscience.org/resource/SIO_001263
is_a: GENO:0000875 ! allelic state
relationship: RO:0000052 GENO:0000516 ! inheres_in single locus complement
property_value: IAO:0000118 "allelic state" xsd:string
property_value: IAO:0000119 "derived from https://en.wikipedia.org/wiki/Zygosity" xsd:string
[Term]
id: GENO:0000134
name: hemizygous
def: "A zygosity quality inhering in a 'single locus complement' with half the number of alleles than normal (e.g. a single allele in a diploid genome, for example, a locus on the Y chromosome in a eukaryotic male genome, or a transgene that is present only in one of the two parental chromosome sets)" []
is_a: GENO:0000391 ! disomic zygosity
[Term]
id: GENO:0000135
name: heterozygous
def: "A zygosity quality inhering in a 'single locus complement' where the copies of the feature at this location have at least one difference in sequence (in a eukaryotic diploid genome, this means having two distinct alleles on each of the two homologous chromosomes, one inherited from each parent)." []
is_a: GENO:0000391 ! disomic zygosity
[Term]
id: GENO:0000136
name: homozygous
def: "A zygosity quality inhering in a 'single locus complement' where all copies of the feature at this location have the same sequence (in a eukaryotic diploid genome, this means having identical alleles on each of the two homologous chromosomes, one inherited from each parent)." []
is_a: GENO:0000391 ! disomic zygosity
[Term]
id: GENO:0000137
name: unspecified zygosity
is_a: GENO:0000133 ! zygosity
property_value: IAO:0000118 "indeterminite zygosity" xsd:string {comment="MGI uses this term when zygosity is not known."}
property_value: IAO:0000118 "no-call zygosity" xsd:string {comment="(this is how the GVF10 format/standard refers to loci without enough data to make an accurate call . . . see http://www.sequenceontology.org/resources/gvf.html#quick_gvf_examples)"}
property_value: IAO:0000118 "unknown zygosity" xsd:string
[Term]
id: GENO:0000138
name: heritabililty
def: "The disposition of an entity to be transmitted to subsequent generations following a genetic replication or organismal reproduction event." []
comment: We can use these terms to describe the heritability of genetic matieral or sequence features - e.g. chromosomal DNA or genes are heritable in that they are passed on to child cells/organisms). Such genetic material has a heritable disposition in a cell or virion, in virtue of its being replicated in its cellular host and inherited by progeny cells (such that the sequence content it encodes is stably propagated in the genetic material of subsequence generations of cells).\n\nWe can also use these terms to describe the heritability of phenotypes/conditions - e.g. the passage of a particular trait or disease across generations of reproducing cells/organisms.
is_a: BFO:0000016 ! disposition
[Term]
id: GENO:0000139
name: heritable
is_a: GENO:0000138 ! heritabililty
[Term]
id: GENO:0000140
name: non-heritable
is_a: GENO:0000138 ! heritabililty
[Term]
id: GENO:0000141
name: inheritance pattern
def: "The pattern in which a genetic trait or condition is passed from one generation to the next, as determined by genetic interactions between alleles of the causal gene, and interactions between these alleles and the environment." []
comment: An inheritance pattern results from the disposition of a genetic variant to cause a particular trait or phenotype when it is present in a particular genetic and environmental context. Here, "genetic context" refers to the allelic state of the variant, which depends on what other alleles exist at the same location/locus in the genome. Zygosities such as heterozygous and homozygous are simple, common examples of 'states' of an allele. \n\nThese genetic and environmental "interactions" of alleles play out at the level of the gene products produced by the causal alleles, and are observable in the pattern with which the trait caused by an allele is inherited across generations of individuals. Thus, an inheritance pattern such as dominance is not inherent to a single allele or its phenotype, but rather a result of the relationship between two alleles of a gene and the phenotype that results in a given environment. This also means that the 'dominance' of an allele is context dependent - Allele 1 can be dominant over Allele 2 in the context of Phenotype X, but recessive to Allele 3 in the context of Phenotype Y.
xref: http://purl.obolibrary.org/obo/HP_0000005
xref: http://purl.obolibrary.org/obo/NCIT_C45827
is_a: BFO:0000016 ! disposition
property_value: IAO:0000116 "The subtypes of inheritance pattern in this hierarchy are largely distinguished based on the underlying genetic mechanism, which will manifest in a characteristic pattern of traits in affected and unaffected family members. For example, 'autosomal dominant inheritance' defines an inheritance pattern that is caused by the interaction of alleles on non-sex chromosomes wherein the trait manifests even in heterozygotes - resulting in a characteristic pattern of 'dominant' inheritance across generations of individuals in a family." xsd:string
property_value: IAO:0000118 "mode of inheritance" xsd:string
property_value: IAO:0000118 "phenotypic inheritance pattern" xsd:string
[Term]
id: GENO:0000142
name: obsolete dominant inheritance
def: "disposition inhering in a genetic locus variant that is realized in its inheritance by some offspring such that at least a partial variant-associated phenotype is apparent in heterozygotes" []
property_value: IAO:0000231 "Triage until decide if want to define this as grouping class that would result in multiple-inheritance." xsd:string
is_obsolete: true
[Term]
id: GENO:0000143
name: co-dominant autosomal inheritance
def: "An autosomal dominant inheritance pattern wherein a heterozygous individual simultaneously expresses the distinct traits associated with each allele in the heterozygous locus." []
is_a: GENO:0000147 ! autosomal dominant inheritance
[Term]
id: GENO:0000144
name: complete autosomal dominant inheritance
def: "An autosomal dominant inheritance pattern wherein the trait associated with one allele completely masks the trait associated with a different allele found at that locus." []
is_a: GENO:0000147 ! autosomal dominant inheritance
property_value: IAO:0000118 "pure dominant inheritance" xsd:string
[Term]
id: GENO:0000145
name: incomplete autosomal dominant inheritance
def: "An autosomal dominant inheritance pattern wherein the trait expressed in a heterozygous individual is intermediate between the trait expressed in individuals homozygous for either allele in the heterozygous locus." []
is_a: GENO:0000147 ! autosomal dominant inheritance
property_value: IAO:0000118 "intermediate dominant autosomal inheritance" xsd:string
property_value: IAO:0000118 "semi-dominant autosomal inheritance" xsd:string
[Term]
id: GENO:0000146
name: X-linked dominant inheritance
def: "An X-linked inheritance pattern wherein the trait manifests in heterozygotes." []
xref: http://purl.obolibrary.org/obo/HP_0001423
is_a: GENO:0000936 ! X-linked inheritance
[Term]
id: GENO:0000147
name: autosomal dominant inheritance
def: "An inheritance pattern wherein a trait caused by alleles of an autosomal gene manifests in heterozygotes." []
xref: http://purl.obolibrary.org/obo/HP_0000006
is_a: GENO:0000934 ! autosomal inheritance
property_value: IAO:0000118 "vertical inheritance" xsd:string
[Term]
id: GENO:0000148
name: autosomal recessive inheritance
def: "An inheritance pattern wherein a trait caused by alleles of an autosomal gene manifests in homozygous but not heterozygote individuals." []
is_a: GENO:0000934 ! autosomal inheritance
[Term]
id: GENO:0000149
name: X-linked recessive inheritance
def: "An X-linked inheritance pattern wherein a trait caused by alleles of a gene on the X-chromosome manifests in homozygous but not heterozygote individuals." []
xref: http://purl.obolibrary.org/obo/HP_0001419
is_a: GENO:0000936 ! X-linked inheritance
[Term]
id: GENO:0000150
name: obsolete autosomal recessive inheritance
property_value: IAO:0000231 "duplicate term, use GENO:0000148" xsd:string
is_obsolete: true
[Term]
id: GENO:0000152
name: reference
def: "An attribute inhering in a feature that is designated to serve as a standard against which 'variant' versions of the same location are compared." []
comment: Being 'reference' is a role or status assigned in the context of a data set or analysis framework. A given allele can be reference on one context and variant in another.
is_a: GENO:0000773 ! variation attribute
[Term]
id: GENO:0000160
name: unspecified life cycle stage
is_a: UBERON:0000105 ! life cycle stage
[Term]
id: GENO:0000164
name: obsolete genetic insertion technique
is_obsolete: true
[Term]
id: GENO:0000165
name: obsolete mutagen treatment technique
is_obsolete: true
[Term]
id: GENO:0000166
name: obsolete targeted gene mutation technique
is_obsolete: true
[Term]
id: GENO:0000169
name: obsolete random genetic insertion technique
is_obsolete: true
[Term]
id: GENO:0000170
name: obsolete targeted genetic insertion technique
is_obsolete: true
[Term]
id: GENO:0000171
name: obsolete enhancer trapping technique
is_obsolete: true
[Term]
id: GENO:0000172
name: obsolete gene trapping technique
is_obsolete: true
[Term]
id: GENO:0000173
name: obsolete promoter trapping technique
is_obsolete: true
[Term]
id: GENO:0000174
name: obsolete targeted knock-in technique
is_obsolete: true
[Term]
id: GENO:0000175
name: obsolete random transgene insertion technique
is_obsolete: true
[Term]
id: GENO:0000324
name: obsolete chromosome complement
def: "A single locus complement that represents the collection of all chromosome sequences for a given chromosome in a single genome" []
is_obsolete: true
[Term]
id: GENO:0000338
name: gained aneusomic chromosome
def: "A complete chromosome that has been abnormally duplicated in a genome, typically as the result of a meiotic non-disjunction event or unbalanced translocation" []
comment: This 'gained' chromosome is conceptually an 'insertion' in a genome that received two copies of a chromosome in a cell division following a non-disjunction event. As such, it qualifies as a type of sequence_alteration, and as a 'extra' chromosome.
is_a: GENO:0000346 ! aneusomic chromosome
relationship: GENO:0000207 GENO:0000685 ! has_sequence_attribute novel
property_value: IAO:0000114 GENO:0000484
property_value: IAO:0000118 "duplicate chromosome" xsd:string
[Term]
id: GENO:0000339
name: lost aneusomic chromosome
def: "A 'deletion' resulting from the loss of a complete chromosome, typically as the result of a meiotic non-disjunction event or unbalanced translocation." []
is_a: GENO:0000346 ! aneusomic chromosome
property_value: IAO:0000114 GENO:0000484
property_value: IAO:0000116 "This 'lost' chromosome is conceptually a 'deletion' in a genome that received zero copies of a chromosome in a cell division following a non-disjunction event. As such, it qualifies as a type of sequence_alteration. But it doesn't classify under SO:deletion because this class is defined as \"the point at which one or more contiguous nucleotides were excised\"." xsd:string
property_value: IAO:0000118 "absent aneusomic chromosome" xsd:string
[Term]
id: GENO:0000343
name: aneusomic chromosomal part
def: "A large deletion or terminal addition of part of some non-homologous chromsosome, as the result of an unbalanced translocation." []
comment: Aneusomic chromosomal parts are examples of "partial aneuploidy" as described in http://en.wikipedia.org/wiki/Aneuploidy: "The terms "partial monosomy" and "partial trisomy" are used to describe an imbalance of genetic material caused by loss or gain of part of a chromosome. In particular, these terms would be used in the situation of an unbalanced translocation, where an individual carries a derivative chromosome formed through the breakage and fusion of two different chromosomes. In this situation, the individual would have three copies of part of one chromosome (two normal copies and the portion that exists on the derivative chromosome) and only one copy of part of the other chromosome involved in the derivative chromosome."
is_a: SO:0001059 ! sequence_alteration
relationship: GENO:0000207 GENO:0000513 ! has_sequence_attribute aneusomic
relationship: GENO:0000248 SO:0000340 ! is_proper_part_of chromosome
property_value: IAO:0000114 GENO:0000484
property_value: IAO:0000116 "Novel sequence features gained in a genome are considered to be sequence alterations, including aneusomic chromosome segments gained through unbalanced translocation events, entire aneusomic chromosomes gained through a non-disjunction event during replication, or extrachromosomal replicons that becoome part of the heritable genome of a cell or organism." xsd:string
property_value: IAO:0000118 "aneuploid chromosomal segment" xsd:string
property_value: IAO:0000118 "aneusomic chromosomal subregion/segment" xsd:string
property_value: IAO:0000118 "partial aneusomic chromosomal element" xsd:string
[Term]
id: GENO:0000344
name: gained aneusomic chromosomal segment
def: "A part of some non-homologous chromosome that has been gained as the result of an unbalanced translocation event." []
comment: Such additions of translocated chromosomal parts confer a trisomic condition to the duplicated region of the chromsome, and are thus considered to be 'variant single locus complements' in virtue of an abnormal number of features at a particular genomic location, rather than abnormal sequence within the location.
is_a: GENO:0000343 ! aneusomic chromosomal part
property_value: IAO:0000114 GENO:0000484
property_value: IAO:0000118 "duplicate partial aneuploid chromosomal element" xsd:string
property_value: IAO:0000118 "translocated duplicate chromosomal element" xsd:string
property_value: IAO:0000118 "translocated duplicate chromosomal segment" xsd:string
[Term]
id: GENO:0000345
name: lost aneusomic chromosomal segment
def: "A deletion of a terminal portion of a chromosome resulting from an unbalanced translocation to another chromosome." []
comment: This is not a deletion in the sense defined by the Sequence Ontology in that it is not the result of an 'excision' of nucleotides, but an unbalanced translocation event. The allelic complement that results is comprised of the terminus or junction represented by this lost chromosomal segment, and the remaining normal segment in the homologous chromosome. The lost aneusommic chromosomal segment is typically accommpanied by a gained aneusomic chromosomal segment from another chromosome.\n\nLoss of translocated chromosomal parts can confer a monosomic condition to a region of the chromsome. This results in a 'variant single locus complement' - in virtue of an abnormal number of features at a particular locus, rather than abnormal sequence within the locus.
is_a: GENO:0000343 ! aneusomic chromosomal part
property_value: IAO:0000114 GENO:0000484
property_value: IAO:0000116 "In our model, we consider this chromosomal region to be monosomic, and thus a variant single locus complement" xsd:string
property_value: IAO:0000118 "dropped partial anneuploid chromosomal element" xsd:string
property_value: IAO:0000118 "translocated absent chromosomal segment" xsd:string
property_value: IAO:0000118 "truncated chromosome terminus" xsd:string
[Term]
id: GENO:0000346
name: aneusomic chromosome
def: "A complete chromosome that has been abnormally duplicated, or the absense of a chromosome that has been lost, typically as the result of a non-disjunction event or unbalanced translocation" []
comment: Large sequence features gained in a genome are considered to be sequence alterations (akin to insertions), including aneusomic chromosome segments gained through unbalanced translocation events, entrie aneusomic chromosomes gained through a non-disjunction event during replication, or extrachromosomal replicons that become part of the heritable gneme of a cell or organism.\n\nSimilarly, large sequence features lost from genome are akin to deletions and therefore also considered sequence alterations. This includes the loss of chromosomal segments through unbalanced translocation events, and the loss of entire chromosomes through a non-disjunction event during replication.
is_a: SO:0000340 ! chromosome
is_a: SO:0001059 ! sequence_alteration
relationship: GENO:0000207 GENO:0000513 ! has_sequence_attribute aneusomic
property_value: IAO:0000114 GENO:0000484
property_value: IAO:0000118 "complete aneusomic chromosome" xsd:string
[Term]
id: GENO:0000351
name: biological process
is_a: BFO:0000015 ! process
property_value: IAO:0000116 "Stub class to serve as root of hierarchy for imports of biological processes from GO-BP." xsd:string
[Term]
id: GENO:0000391
name: disomic zygosity
def: "A zygosity quality inhering in a 'single locus complement' in a genome with a normal ploidy of two (i.e. two copies of autosomal chromosomes). Disomic zygosity terms describe the degree of similarity of the two sequence features that reside at a particular location across homozygous chromosomes (or the state of being the only feature at a given locus in the case of hemizygosity)." []
is_a: GENO:0000133 ! zygosity
[Term]
id: GENO:0000392
name: aneusomic zygosity
def: "A zygosity quality inhering in a 'single locus complement' in a genome with an abnormal ploidy at the location (i.e. an autosomal locus with one or three copies in a diploid genome)." []
is_a: GENO:0000133 ! zygosity
[Term]
id: GENO:0000393
name: trisomic homozygous
is_a: GENO:0000392 ! aneusomic zygosity
[Term]
id: GENO:0000394
name: trisomic heterozygous
is_a: GENO:0000392 ! aneusomic zygosity
[Term]
id: GENO:0000402
name: compound heterozygous
def: "A heterozygous quality inhering in a single locus complement comprised of two different varaint alleles and no wild type locus. (e.g.fgf8a<ti282a>/fgf8a<x15>)" []
is_a: GENO:0000135 ! heterozygous
property_value: IAO:0000118 "trans-heterozygous" xsd:string
[Term]
id: GENO:0000415
name: obsolete reagent sequence feature
def: "A sequence feature that references some biological macromolecule applied as a reagent in an experiment or technique (e.g. a morpholino expression plasmid, or oligonucleotide probe)" []
property_value: IAO:0000116 "replaced with SO:engineered_region" xsd:string
property_value: IAO:0000118 "extra-genomic sequence" xsd:string
is_obsolete: true
[Term]
id: GENO:0000458
name: simple heterozygous
comment: a heterozygous quality inhering in a single locus complement comprised of one variant allele and one wild-type/reference allele (e.g.fgf8a<ti282a/+>)
is_a: GENO:0000135 ! heterozygous
[Term]
id: GENO:0000460
name: transgene part
def: "A structurally or functionally defined component of a transgene (e.g. a promoter, a region coding for a fluorescent protein tag, etc)" []
intersection_of: GENO:0000666 ! gene part
intersection_of: RO:0002525 SO:0000902 ! is subsequence of transgene
[Term]
id: GENO:0000476
name: variant
def: "An attribute inhering in a sequence feature that varies from some designated reference in virtue of alterations in its sequence or expression level" []
is_a: GENO:0000773 ! variation attribute
[Term]
id: GENO:0000477
name: polymorphic
def: "An attribute inhereing in a sequence feature for which there is more than one version fixed in a population at some significant percentage (typically 1% or greater), where the locus is not considered to be either reference or a variant." []
is_a: GENO:0000773 ! variation attribute
[Term]
id: GENO:0000480
name: mutant
def: "An attribute inhering in a feature bearing a sequence alteration that is present at very low levels in a given population (typically less than 1%), or that has been experimentally generated to alter the feature with respect to some reference sequence." []
is_a: GENO:0000773 ! variation attribute
[Term]
id: GENO:0000481
name: genomic feature
def: "A sequence feature (continuous extent of biological sequence) that is of genomic origin (i.e. carries sequence from the genome of a cell or organism)" []
comment: 1. A feature being 'of genomic origin' here means only that its sequence has been located to the genome of some organism by alignment with some reference genome. This is because the sequence was originally identified in, or artificially created to replicate, sequence from an organism's genome. \n\n2. The location of a genomic feature is defined by start and end coordinates based on alignment with a reference genome. Genomic features can span any size from a complete chromosome, to a chromosomal band or region, to a gene, to a single base pair or even junction between base pairs (this would be a sequence feature with an extent of zero). \n\n3. As sequence features, instances of genomic features are identified by both their inherent *sequence* and their *position* in a genome - as determined by an alignment with some reference sequence. Accordingly, the 'ATG' start codon in the coding DNA sequence of the human AKT gene and the 'ATG' start codon in the human SHH gene represent two distinct genomic features despite having he same sequence, in virtue of their different positions in the genome.
intersection_of: SO:0000110 ! sequence_feature
intersection_of: GENO:0000903 GENO:0000902 ! has_location genomic feature location
relationship: BFO:0000050 SO:0001026 ! is part of genome
relationship: GENO:0000239 GENO:0000960 ! has_sequence genomic sequence
relationship: RO:0002162 OBI:0100026 ! in taxon organism
property_value: IAO:0000116 "This class was created largely as a modeling convenience to support organizing data for schema definitions. We may consider obsoleting it if it ends up causing confusion or complicating classification of terms in the ontology." xsd:string
[Term]
id: GENO:0000482
name: genetic material
def: "A nucleic acid molecule that contains one or more sequences serving as a template for gene expression in a biological system (ie a cell or virion)." []
comment: This class is different from genomic material in that genomic material is necessarily heritable, while genetic material includes genomic material, as well as any additional nucleic acids that participate in gene expression resulting in a cellular or organismal phenotype. So things like transiently transfected expression constructs would qualify as 'genetic material but not 'genomic material'. Things like siRNAs and morpholinos affect gene expression indirectly, (ie are not templates for gene expression), and therefore do not qualify as genetic material.
is_a: CHEBI:33696 ! nucleic acid
property_value: IAO:0000114 GENO:0000484
[Term]
id: GENO:0000491
name: obsolete mutant allele
def: "An allele that is variant with respect to some wild-type allele, in virtue of its being very rare in a population (typically <1%), or being an experimentally-induced alteration that derives from a wild-type feature in a given strain." []
comment: 'Mutant' is typically contrasted with 'wild-type', where 'mutant' indicates a natural but very rare allele in a population (typically <1%), or an experimentally-induced variation that derives from a wild-type background locus for a given strain, which can be selected for in establishing a mutant line.
property_value: IAO:0000114 GENO:0000484
property_value: IAO:0000119 "Based on use of 'mutant' as described in PMID: 25741868 ACMG Guidelines" xsd:string
property_value: IAO:0000231 "Not required for any specific use case at this point so removed for simplicity. \nFormely asserted as allele and inferred as varaint allele. \nEq class definition:\nallele\n and (mutation or ('has subsequence' some mutation))" xsd:string
is_obsolete: true
[Term]
id: GENO:0000492
name: mutation
def: "A sequence alteration that is very rare allele in a population (typically <1%), or an experimentally-induced variation that derives from a wild-type feature in a given strain." []
is_a: SO:0001059 ! sequence_alteration
relationship: GENO:0000683 GENO:0000501 ! varies_with wild-type allele
[Term]
id: GENO:0000494
name: extrachromosomal replicon
def: "A genetic feature that is not part of the chromosomal genome of a cell or virion, but rather a stable and heritable element that is replilcated and passed on to progeny (e.g. a replicative plasmid or transposon)" []
property_value: IAO:0000116 "Consider replacing with SO_0001038 ! extrachromosomal_mobile_genetic_element" xsd:string
property_value: IAO:0000118 "episomal replicon" xsd:string
property_value: IAO:0000231 "Extrachromosomal replicons are replicated and passed on to descendents, and thus part of the heritable genome of a cell or organism. In cases where the presence of such a replicon is novel or aberrant (i.e. not included in the reference for that genome), the replicon is considered a 'sequence alteration'." xsd:string
[Term]
id: GENO:0000495
name: expression construct
is_a: GENO:0000856 ! engineered genetic construct
property_value: IAO:0000118 "expression construct feature" xsd:string
[Term]
id: GENO:0000497
name: polymorphic allele
def: "An allele that is fixed in a population at some stable level, typically > 1%. Polymorphic alleles reside at loci where more than one version exists at some signifcant frequency in a population." []
comment: Polymorphic alleles are contrasted with mutant alleles (extremely rare variants that exist in <1% of a population), and 'wild-type alleles' (extremenly common variants present in >99% of a population). Polymorphic alleles exist in equilibrium in a given population somewhere between these two extremes (i.e. >1% and <99%).
is_a: GENO:0000512 ! allele
property_value: IAO:0000119 "PMID: 25741868 ACMG Guidelines" xsd:string
[Term]
id: GENO:0000498
name: major polymorphic allele
def: "A polymorphic allele that is present at the highest frequency relative to other polymorphic variants at the same genomic location." []
is_a: GENO:0000497 ! polymorphic allele
property_value: IAO:0000118 "major allele" xsd:string
[Term]
id: GENO:0000499
name: minor polymorphic allele
def: "A polymorphic allele that is not present at the highest frequency among all fixed variants at the locus (i.e. not the major polymorphic allele at a given location)." []
is_a: GENO:0000497 ! polymorphic allele
property_value: IAO:0000118 "minor allele" xsd:string
[Term]
id: GENO:0000500
name: ancestral polymorphic allele
def: "A polymorphic allele that is determined from the sequence of a recent ancestor in a phylogentic tree." []
is_a: GENO:0000497 ! polymorphic allele
property_value: IAO:0000118 "ancestral allele" xsd:string
[Term]
id: GENO:0000501
name: wild-type allele
def: "An allele representing a highly common varaint (typically >99% in a population), that typically exhibits canonical function, and against which rare and/or non-functional mutant alleles are often compared." []
comment: 'Wild-type' is typically contrasted with 'mutant', where 'wild-type' indicates a highly prevalent allele in a population (typically >99%), and/or some prototypical allele in a background genome that serves as a basis for some experimental alteration to generate a mutant allele, which can be selected for in establishing a mutant strain.\n\nThe notion of wild-type alleles is more common in model organism databases, where specific mutations are generated against a wild-type reference feature. Wild-type alleles are typically but not always used as reference alleles in sequence comparison/analysis applications. More than one wild-type sequence can exist for a given feature, but typically only one allele is deemed wild-type iin the context of a single dataset or analysis.
is_a: GENO:0000512 ! allele
relationship: GENO:0000683 GENO:0000481 ! varies_with genomic feature
property_value: IAO:0000118 "wild-type allele" xsd:string
[Term]
id: GENO:0000502
name: wild-type gene
comment: A gene allele representing the most common varaint in a population (typically >99% frequency), that exhibits canonical function, and against which rare and/or non-functional mutant gene alleles are compared in characterizing the phenotypic consequences of genetic variation.
is_a: GENO:0000501 ! wild-type allele
is_a: SO:0000704 ! gene
property_value: IAO:0000118 "wild-type gene allele" xsd:string
[Term]
id: GENO:0000504
name: reagent targeted gene
def: "A gene altered in its expression level in the context of some experiment as a result of being targeted by gene-knockdown reagent(s) such as a morpholino or RNAi." []
comment: The identity of a given instance of a reagent-targeted gene is dependent on the experimental context of its knock-down - specifically what reagent was used and at what level. For example, the wild-type shha zebrafish gene targeted in epxeriment 1 by morpholino1 annd in experiment 2 by morpholino 2 represent two distinct instances of a 'reagent-targeted gene', despite sharing the same sequence and position.
is_a: GENO:0000529 ! expression-variant gene
relationship: GENO:0000231 GENO:0000534 ! has_proper_part reagent-targeted gene subregion
relationship: GENO:0000447 GENO:0000533 ! is_gene_target_of gene knockdown reagent
[Term]
id: GENO:0000506
name: transiently-expressed transgene
def: "A transgene that is delivered as part of a DNA expression construct into a cell or organism in order to transiently express a specified product (i.e. it has not integrated into the host genome)." []
is_a: GENO:0000529 ! expression-variant gene
property_value: IAO:0000118 "experimentally-expressed transgene" xsd:string
property_value: IAO:0000118 "extrinsic transgene" xsd:string
[Term]
id: GENO:0000511
name: wild-type
def: "An allele attribute describing a highly common variant (typically >99% in a population), that typically exhibits canonical function, and against which rare and/or non-functional mutant alleles are compared." []
is_a: GENO:0000773 ! variation attribute
[Term]
id: GENO:0000512
name: allele
def: "One of a set of sequence features known to exist at a particular genomic location." []
comment: An allele is a seqeunce feature at a genomic location where variation occurs (i.e. where >1 different sequence is known to exist). An allele can span only the extent of sequence known to vary (e.g. a single base SNP, or short insertion), or it can span a larger extent that includes one or more variable features as proper parts (e.g. a 'gene allele' that spans the extent of an entire gene which contains several sequence alterations).\n\nAlleles can carry 'reference' or 'variant' sequence - depending on whether the its 'state' matches that considered to be the reference at that location. Alleles whose state differs from the reference are called 'variant alleles', and those that match the reference are called 'reference alleles'. What is considered the 'reference' state at a particular location may vary, depending on the context/goal of a particular analysis. A 'sequence alteration' is a 'variant allele' that varies along its entire extent (i.e every position varies from that of some defined reference sequence).
intersection_of: GENO:0000481 ! genomic feature
intersection_of: GENO:0000683 GENO:0000481 ! varies_with genomic feature
property_value: IAO:0000116 "A landsacpe review found mostly gene-centric definitions of 'allele' that represented a particular version of a gene, or variation within a gene sequence [1][2][3][4][5][6][6a]. But we also found 'allele' used to refer to other types and extents of variation - including single nucleotide polymorphisms, repeat regions, and copy number variations [7][8][9][10][11], where such variations don't neccessarily impact a gene.\n\nTo be maximally accommodating of how this term is used across research communities, GENO defines 'allele' broadly and allow alleles can span any locus or extent of sequence. While 'alleles' encountered in public datases typically overlap a gene, many do not. But GENO does define the 'gene allele' class as a subtype of 'allele' to refers more specifically to a specifc version of an entire gene.\n \n[1] https://isogg.org/wiki/Allele (retrieved 2018-03-17)\n[2] http://semanticscience.org/resource/allele (retrieved 2018-03-17)\n[3] https://en.wikipedia.org/wiki/Allele (retrieved 2018-03-17)\n[4] https://www.cancer.gov/publications/dictionaries/genetics-dictionary/def/allele (retrieved 2018-03-17)\n[5] http://purl.obolibrary.org/obo/SO_0001023 (retrieved 2018-03-17)\n[6] http://purl.obolibrary.org/obo/NCIT_C16277 (retrieved 2018-03-17)\n[6a] https://www.ncbi.nlm.nih.gov/mesh/68000483\n[7] https://www.snpedia.com/index.php/Allele (retrieved 2018-03-17)\n[8] https://en.wikipedia.org/wiki/Single-nucleotide_polymorphism (retrieved 2018-03-17)\n[9] http://purl.obolibrary.org/obo/OGI_0000008 (retrieved 2018-03-17)\n[10] http://purl.obolibrary.org/obo/OBI_0001352 (retrieved 2018-03-17)\n[11] http://purl.phyloviz.net/ontology/typon#Allele (retrieved 2018-03-17)" xsd:string
property_value: IAO:0000118 "variable feature" xsd:string
[Term]
id: GENO:0000513
name: aneusomic
def: "a sequence attribute of a chromosome or chromosomal region that has been abnormally duplicated or lost, as the result of a non-disjunction event or unbalanced translocation." []
is_a: GENO:0000773 ! variation attribute
property_value: IAO:0000114 GENO:0000484
[Term]
id: GENO:0000515
name: variant gene allele
def: "An allele of a gene that contains some sequence alteration." []
comment: A gene allele is 'variant' in virtue of its containing a sequence alteration that varies from some reference gene standard. But note that a gene allele that is variant in one context/dataset can be considered a reference in another context/dataset.
intersection_of: GENO:0000014 ! gene allele
intersection_of: GENO:0000683 GENO:0000036 ! varies_with reference allele
relationship: GENO:0000382 SO:0001059 ! has_variant_part sequence_alteration
relationship: GENO:0000641 SO:0000704 ! is_variant_allele_of gene
[Term]
id: GENO:0000516
name: single locus complement
def: "A set representing the complement of all sequence features occupying a particular genomic location across all homologous chromosomes in the genome of a single organism." []
comment: A 'complement' refers to an exhaustive collection of *all* objects that make up some well-defined set. Such a complement may contain 0, 1, or more than one members. The notion of a complement is useful for defining many biologically-relevant sets of sequence features. Here, a 'single locus complement' is the set of all alleles at a specified location in a particular genome. This complement is typically a pair of two features in a diploid genome (with two copies of each chromosome). E.g. a gene pair, a QTL pair, a nucleotide pair for a SNP, or a pair of entire chromosomes.\n\nThe fact that we are counting how many copies of the same *sequence* exist in a genome, as opposed to how many of the same *feature*, is what sets feature-level concepts like 'single locus complement'. apart from sequence-level concepts like 'copy number complement'. To illustrate the difference, consider a duplication event that creates a new copy of the human APOE gene on a different chromosome. This creates an entirely new sequence feature at a distinct locus from that of the original APOE gene. The 'copy number complement' for sequence defined by the APOE gene locus would have a count of three, as this sequence is present three times in the genome. But the 'single locus complement' at the APOE gene locus would still have a count of two - because the duplicated copy is at a different location in the genome, and therefore does not represent a copy of the APOE locus.
is_a: GENO:0000660 ! genomic feature set
property_value: IAO:0000112 "The set of both shha gene alleles in a diiploid zebrafish genome, e.g. fgf8a<ti282a/+>.\n\nThe collection of the individual base-pairs present at the position 24126737 in both copies of chromosome 5 in a diploid human genome." xsd:string
property_value: IAO:0000116 "TO DO: show a VCF representation of this example. Consider making 'allelic complement' the primary label." xsd:string
property_value: IAO:0000118 "allelic complement" xsd:string
property_value: IAO:0000118 "homologous allele complement" xsd:string
property_value: IAO:0000118 "single locus feature complement" xsd:string
[Term]
id: GENO:0000524
name: extrinsic genotype
def: "A specification of the known state of gene expression across a genome, and how it varies from some baseline/reference state." []
comment: An extrinsic genotype describes variation in the 'expression level' of genes in a cell or organism, as mediated by transient, gene-specific experimental interventions such as RNAi, morpholinos, TALENS CRISPR, or construct overexpression. This concept is relevant primarily for model organisms and systems that are subjected to such interventions to determine how altered expression of specific genes may impact organismal or cellular phenotypes in the context of a particular experiment.\n\nThe 'extrinsic genotype' concept is contrasted with the more familiar notion of an 'intrinsic genotype', describing variation in the inherent genomic sequence (i.e. 'allelic state'). In G2P research, interventions affecting both genomic sequence and gene expression are commonly applied in order to assess the impact specific genomic features can have on phenotype and disease. It is in this context that we chose to model 'extrinsic' alterations in expression as genotypes - to support parallel conceptualization and representation of these different types of genetic variation that inform the discovery of G2P associations.
is_a: GENO:0000536 ! genotype
property_value: IAO:0000112 "In an experiment where shha is targeted by MO1 and shhb is overexpressed from a transgenic expression construct, the extrinsic genotype captures the altered expression status of these two genes. A notation for representing such a genotype might describe this scenario as:\n\n shha<MO1-1ng/ul>; shhb<pFLAG-mmusShhb>\n\nThis notation parallels those used for more traditional 'intrinsic' genotypes, where the affected gene is presented with its alteration in angled brackets < >. In the extrinsic genotype shown here, the variation in shha is affected by a specific concentration of an shha-targeting morpholino (instead of a mutation in the shha gene). And the variation in shhb is affected by its overexpression from a pFLAG Shhb expression construct." xsd:string
property_value: IAO:0000116 "We acknowledge that this is not a 'genotype' in the traditional sense, but this terminological choice highlights similarities that play out in parallel modeling of intrinsic and extrinsic genotype partonomies, and parallel syntactic formats for labeling instances of these genotypes. \n\nOur rationale here is that what we care about from perspective of G2P associations is identifying genomic features that impact phenotype - where experimental approaches include permanent introduction of intrinsic modifications to genomic sequence, and transient introduction of extrinsic factors that modify expression of specific genes. As the former is described by the traditional notion of a genotype, it seems a rational leap to consider the latter akin to an 'extrinsic genotype' wherein the alterations are externally applied rather than inherent to the genome. \n\nFinally, there is some precedent to thinking about such extrinsic modifications in terms of a genotype, in the EFO:0000513 ! genotype: \"The total sum of the genetic information of an organism that is known and relevant to the experiment being performed, including chromosomal, plasmid, viral or other genetic material which has been introduced into the organism either prior to or during the experiment.\"" xsd:string
property_value: IAO:0000118 "experimental genotype" xsd:string
property_value: IAO:0000118 "expression genotype" xsd:string
[Term]
id: GENO:0000525
name: effective genotype
def: "A genotype that describes the total intrinsic and extrinsic variation across a genome at the time of a phenotypic assessment (where 'intrinsic' refers to variation in genomic sequence, as mediated by sequence alterations, and 'extrinsic' refers to variation in gene expression, as mediated through transient gene-specific interventions such as gene knockdown reagents or overexpression constructs)." []
comment: An effective genotype is meant to summarize all factors related to genes and their expression that influence an observed phenotype - including 'intrinsic' alterations in genomic sequence, and gene-specific 'extrinsic' alterations in expression transiently introduced at the time of the phenotypic assessment.
is_a: GENO:0000536 ! genotype
relationship: BFO:0000051 GENO:0000524 ! has part extrinsic genotype
relationship: BFO:0000051 GENO:0000719 ! has part intrinsic genotype
property_value: IAO:0000116 "Closest concept/definition we could find for this concept was for EFO:0000513 ! genotype: \"The total sum of the genetic information of an organism that is known and relevant to the experiment being performed, including chromosomal, plasmid, viral or other genetic material which has been introduced into the organism either prior to or during the experiment.\"" xsd:string
[Term]
id: GENO:0000527