-
Notifications
You must be signed in to change notification settings - Fork 0
/
eco_from_obo.json
16801 lines (16801 loc) · 538 KB
/
eco_from_obo.json
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
{
"ECO:0000000": {
"def": [
"\"A type of information that is used to support an assertion.\" [ECO:MCC]"
],
"disjoint_from": [
"ECO:0000217 ! assertion method"
],
"id": [
"ECO:0000000"
],
"is_a": [],
"name": [
"evidence"
],
"synonym": [
"\"evidence code\" RELATED []",
"\"evidence_code\" RELATED []"
]
},
"ECO:0000001": {
"def": [
"\"A curator inference that links the current annotation to a different evidence-based annotation via background knowledge of the curator.\" [ECO:go, ECO:MCC]"
],
"id": [
"ECO:0000001"
],
"is_a": [
"ECO:0000205 ! curator inference"
],
"name": [
"inference from background scientific knowledge"
],
"synonym": [
"\"IC\" EXACT [GO:IC]",
"\"inferred by curator\" EXACT [GO:IC]"
]
},
"ECO:0000002": {
"def": [
"\"Experimental evidence that is based on direct measurement of some aspect of a biological feature.\" [ECO:MCC, GO:IDA]"
],
"id": [
"ECO:0000002"
],
"is_a": [
"ECO:0000006 ! experimental evidence"
],
"name": [
"direct assay evidence"
]
},
"ECO:0000003": {
"def": [
"\"A type of direct assay evidence based on reconstructing a biological sample from its disassociated state to its original state.\" [ECO:KAV, PMID:26029343]"
],
"id": [
"ECO:0000003"
],
"is_a": [
"ECO:0000002 ! direct assay evidence"
],
"name": [
"reconstitution assay evidence"
]
},
"ECO:0000004": {
"comment": [
"If using this term for Gene Ontology annotation, it would be used most typically for annotations to the cellular component ontology."
],
"def": [
"\"A type of fractionation evidence where sub-cellular components are separated based on their physical properties such as density in a sucrose density gradient.\" [ECO:KIM, TAIR:TED]"
],
"id": [
"ECO:0000004"
],
"is_a": [
"ECO:0000100 ! fractionation evidence"
],
"name": [
"cell fractionation evidence"
],
"synonym": [
"\"IDA: cell fractionation\" RELATED []"
]
},
"ECO:0000005": {
"def": [
"\"Used when an annotation is made based on assays that determine the catalytic activity of enzymes.\" [TAIR:TED]"
],
"id": [
"ECO:0000005"
],
"is_a": [
"ECO:0000039 ! protein assay evidence"
],
"name": [
"enzyme assay evidence"
],
"synonym": [
"\"IDA: enzyme assays\" RELATED []"
],
"xref": [
"PSI-MI:MI\\:0415 \"enzymatic study\""
]
},
"ECO:0000006": {
"def": [
"\"An evidence type that is based on the results of a laboratory assay.\" [ECO:MCC, GOC:ecd]"
],
"id": [
"ECO:0000006"
],
"is_a": [
"ECO:0000000 ! evidence"
],
"name": [
"experimental evidence"
],
"subset": [
"go_groupings"
],
"synonym": [
"\"EXP\" EXACT [GO:EXP]",
"\"inferred from experiment\" EXACT [GO:EXP]"
]
},
"ECO:0000007": {
"def": [
"\"A type of protein detection assay evidence where a fluorescently labeled antibody is used to detect the presence or localization of a biomolecule within a cell.\" [ECO:MCC, TAIR:TED]"
],
"id": [
"ECO:0000007"
],
"is_a": [
"ECO:0005517 ! protein detection assay evidence"
],
"name": [
"immunofluorescence evidence"
],
"synonym": [
"\"IDA: immunofluorescence\" RELATED []"
]
},
"ECO:0000008": {
"comment": [
"Use this evidence type when the annotation is inferred from the timing or location of expression of a gene. It may be difficult to determine whether the expression pattern truly indicates that a gene plays a role in a given process."
],
"def": [
"\"Experimental evidence that is based on characterization of gene expression.\" [ECO:MCC, GO:IEP]"
],
"id": [
"ECO:0000008"
],
"is_a": [
"ECO:0000006 ! experimental evidence"
],
"name": [
"expression pattern evidence"
],
"synonym": [
"\"IEP\" EXACT [GO:IEP]",
"\"inferred from expression pattern\" EXACT [GO:IEP]"
]
},
"ECO:0000009": {
"id": [
"ECO:0000009"
],
"is_a": [
"ECO:0000008 ! expression pattern evidence"
],
"name": [
"transcript expression evidence"
]
},
"ECO:0000010": {
"id": [
"ECO:0000010"
],
"is_a": [
"ECO:0000008 ! expression pattern evidence",
"ECO:0000039 ! protein assay evidence"
],
"name": [
"protein expression evidence"
]
},
"ECO:0000011": {
"id": [
"ECO:0000011"
],
"is_a": [
"ECO:0000059 ! experimental phenotypic evidence"
],
"name": [
"genetic interaction evidence"
],
"xref": [
"TAIR:TED\\:0000006"
]
},
"ECO:0000012": {
"def": [
"\"Used when an annotation is made based on a functional complementation assay in which a wild-type copy of the gene in question is inserted into a mutant background in the organism of the gene's origin or a heterologous organism with a mutation in the homologous gene.\" [TAIR:TED]"
],
"id": [
"ECO:0000012"
],
"is_a": [
"ECO:0000011 ! genetic interaction evidence"
],
"name": [
"functional complementation evidence"
],
"synonym": [
"\"IGI: functional complementation\" RELATED []"
]
},
"ECO:0000013": {
"id": [
"ECO:0000013"
],
"is_a": [
"ECO:0000012 ! functional complementation evidence"
],
"name": [
"transgenic rescue experiment evidence"
]
},
"ECO:0000015": {
"def": [
"\"The IMP evidence code covers those cases when the function, process or cellular localization of a gene product is inferred based on differences in the function, process, or cellular localization between two different alleles of the corresponding gene. The IMP code is used for cases where one allele may be designated 'wild-type' and another as 'mutant'. It is also used in cases where allelic variation occurs naturally and no specific allele is designated as wild-type or mutant. Caution should be used when making annotations from gain-of-function mutations as it may be difficult to infer a gene's normal function from a gain of function mutation, although it is sometimes possible.\" [GO:IMP]"
],
"id": [
"ECO:0000015"
],
"is_a": [
"ECO:0000059 ! experimental phenotypic evidence"
],
"name": [
"mutant phenotype evidence"
]
},
"ECO:0000016": {
"id": [
"ECO:0000016"
],
"is_a": [
"ECO:0000015 ! mutant phenotype evidence"
],
"name": [
"loss-of-function mutant phenotype evidence"
]
},
"ECO:0000017": {
"def": [
"\"Used when an annotation is made based on the analysis of the phenotype of a wild-type or mutant transgenic organism that has been engineered to overexpress or ectopically express the gene product in question.\" [TAIR:TED]"
],
"id": [
"ECO:0000017"
],
"is_a": [
"ECO:0000059 ! experimental phenotypic evidence"
],
"name": [
"ectopic expression evidence"
],
"synonym": [
"\"IMP: analysis of overexpression/ectopic expression phenotype\" RELATED []"
]
},
"ECO:0000018": {
"def": [
"\"Used when an annotation is based on a phenotype observed when expressing an anti-sense version of a gene product in a wild-type (for that gene product) background.\" [TAIR:TED]"
],
"id": [
"ECO:0000018"
],
"is_a": [
"ECO:0000059 ! experimental phenotypic evidence"
],
"name": [
"anti-sense experiment evidence"
],
"synonym": [
"\"IMP: anti-sense experiments\" RELATED []"
]
},
"ECO:0000019": {
"def": [
"\"Inference based on a phenotype observed when expressing an RNAi construct that includes a fragment of the gene product in a wild-type (for that gene product) background. A double-stranded RNA specifically suppresses the expression of the gene bearing its complementary sequence.\" [TAIR:TED]"
],
"id": [
"ECO:0000019"
],
"is_a": [
"ECO:0000059 ! experimental phenotypic evidence"
],
"name": [
"RNAi evidence"
],
"synonym": [
"\"IMP: RNAi experiment\" RELATED []"
]
},
"ECO:0000020": {
"def": [
"\"A type of protein assay evidence based on the inhibition of the molecular function of a protein.\" [ECO:MCC]"
],
"id": [
"ECO:0000020"
],
"is_a": [
"ECO:0000039 ! protein assay evidence"
],
"name": [
"specific protein inhibition evidence"
]
},
"ECO:0000021": {
"comment": [
"Molecules interacted with might include protein, nucleic acid, ion, or complex."
],
"def": [
"\"Experimental evidence that is based on characterization of an interaction between a gene product and another molecule.\" [ECO:MCC]"
],
"id": [
"ECO:0000021"
],
"is_a": [
"ECO:0000006 ! experimental evidence"
],
"name": [
"physical interaction evidence"
],
"xref": [
"PSI-MI:MI\\:0045 \"experimental interaction detection\""
]
},
"ECO:0000022": {
"def": [
"\"A type of physical interaction evidence where a cellular component subunit is isolated as part of purification of its larger complex.\" [TAIR:TED]"
],
"id": [
"ECO:0000022"
],
"is_a": [
"ECO:0000021 ! physical interaction evidence"
],
"name": [
"co-purification evidence"
],
"synonym": [
"\"IPI: co-purification\" RELATED []"
],
"xref": [
"PSI-MI:MI\\:0025 \"copurification\""
]
},
"ECO:0000023": {
"def": [
"\"A type of physical interaction evidence that depends on the strength of the interaction between two entities.\" [ECO:MCC, PSI-MI:MI\\:0400]"
],
"id": [
"ECO:0000023"
],
"is_a": [
"ECO:0000021 ! physical interaction evidence"
],
"name": [
"affinity evidence"
],
"synonym": [
"\"ligand binding evidence\" NARROW []"
],
"xref": [
"PSI-MI:MI\\:0400 \"affinity technology\""
]
},
"ECO:0000024": {
"id": [
"ECO:0000024"
],
"is_a": [
"ECO:0000023 ! affinity evidence",
"ECO:0000039 ! protein assay evidence"
],
"name": [
"protein binding evidence"
]
},
"ECO:0000025": {
"comment": [
"Typically enzymes which confer resistance to antibiotics, such as Dihydrofolate reductase or Beta-lactamase, or proteins that give colorimetric or fluorescent signals are used. The Bait protein is generally the protein under study and the methods are readily adaptable to highthroughput mode."
],
"def": [
"\"A type of affinity evidence where proteins of interest (bait and prey) are covalently linked to incomplete fragments of a third protein (reporter) and expressed in vivo, at which time interaction between bait and prey proteins brings reporter fragments in close enough proximity to allow them to reform and become a functional reporter protein.\" [ECO:MCC, PSI-MI:MI\\:0090]"
],
"id": [
"ECO:0000025"
],
"is_a": [
"ECO:0000023 ! affinity evidence"
],
"name": [
"hybrid interaction evidence"
],
"xref": [
"PSI-MI:MI\\:0090 \"protein complementation assay\""
]
},
"ECO:0000026": {
"id": [
"ECO:0000026"
],
"is_a": [
"ECO:0000073 ! experimental genomic evidence"
],
"name": [
"nucleic acid hybridization evidence"
]
},
"ECO:0000027": {
"comment": [
"For GO annotation, in the case of a single gene, an accession for the related gene's sequence is entered in the evidence_with field."
],
"def": [
"\"A type of similarity evidence based on structural similarity of an annotated gene or gene product to another gene or group of genes.\" [ECO:MCC, TAIR:TED]"
],
"id": [
"ECO:0000027"
],
"is_a": [
"ECO:0000057 ! phenotypic similarity evidence"
],
"name": [
"structural similarity evidence"
]
},
"ECO:0000028": {
"def": [
"\"Used when an annotation is made based on the presence of a recognized domain or motif in a gene product's (usually protein) primary sequence.\" [TAIR:TED]"
],
"id": [
"ECO:0000028"
],
"is_a": [
"ECO:0000202 ! match to sequence model evidence"
],
"name": [
"motif similarity evidence"
],
"synonym": [
"\"ISS: recognized domains\" RELATED []"
]
},
"ECO:0000029": {
"id": [
"ECO:0000029"
],
"is_a": [
"ECO:0000202 ! match to sequence model evidence"
],
"name": [
"match to InterPro member signature evidence"
]
},
"ECO:0000030": {
"def": [
"\"A type of BLAST evidence that is used in a manual assertion.\" [ECO:MCC]"
],
"id": [
"ECO:0000030"
],
"intersection_of": [
"ECO:0000206 ! BLAST evidence",
"used_in ECO:0000218 ! manual assertion"
],
"is_a": [
"ECO:0000206 ! BLAST evidence",
"ECO:0005560 {is_inferred=\"true\"} ! pairwise sequence alignment evidence used in manual assertion"
],
"name": [
"BLAST evidence used in manual assertion"
],
"relationship": [
"used_in ECO:0000218 {is_inferred=\"true\"} ! manual assertion"
],
"synonym": [
"\"curated BLAST analysis\" RELATED []"
]
},
"ECO:0000031": {
"def": [
"\"Protein BLAST evidence that is used in a manual assertion.\" [ECO:MCC]"
],
"id": [
"ECO:0000031"
],
"intersection_of": [
"ECO:0000208 ! protein BLAST evidence",
"used_in ECO:0000218 ! manual assertion"
],
"is_a": [
"ECO:0000030 {is_inferred=\"true\"} ! BLAST evidence used in manual assertion",
"ECO:0000208 ! protein BLAST evidence"
],
"name": [
"protein BLAST evidence used in manual assertion"
],
"relationship": [
"used_in ECO:0000218 {is_inferred=\"true\"} ! manual assertion"
],
"synonym": [
"\"curated protein BLAST analysis\" RELATED []"
],
"xref": [
"GO_REF:0000012 \"Pairwise alignment (TIGR)\"",
"GO_REF:0000027 \"BLAST search criteria for ISS assignment in PAMGO_GAT\""
]
},
"ECO:0000032": {
"def": [
"\"Nucleotide BLAST evidence that is used in a manual assertion.\" [ECO:MCC]"
],
"id": [
"ECO:0000032"
],
"intersection_of": [
"ECO:0000207 ! nucleotide BLAST evidence",
"used_in ECO:0000218 ! manual assertion"
],
"is_a": [
"ECO:0000030 {is_inferred=\"true\"} ! BLAST evidence used in manual assertion",
"ECO:0000207 ! nucleotide BLAST evidence"
],
"name": [
"nucleotide BLAST evidence used in manual assertion"
],
"relationship": [
"used_in ECO:0000218 {is_inferred=\"true\"} ! manual assertion"
],
"synonym": [
"\"curated nucleic acid BLAST analysis\" RELATED []"
]
},
"ECO:0000033": {
"comment": [
"The traceable author statement (TAS) evidence code covers author statements that are attributed to a cited source. Typically this type of information comes from review articles. Material from the introductions and discussion sections of non-review papers may also be suitable if another reference is cited as the source of experimental work or analysis. When annotating with this code the curator should use caution and be aware that authors often cite papers dealing with experiments that were performed in organisms different from the one being discussed in the paper at hand. Thus a problem with the TAS code is that it may turn out from following up the references in the paper that no experiments were performed on the gene in the organism actually being characterized in the primary paper. For this reason we recommend (when time and resources allow) that curators track down the cited paper and annotate directly from the experimental paper using the appropriate experimental evidence code. When this is not possible and it is necessary to annotate from reviews, the TAS code is the appropriate code to use for statements that are associated with a cited reference. Once an annotation has been made to a given term using an experimental evidence code, we recommend removing any annotations made to the same term using the TAS evidence code."
],
"def": [
"\"An author statement that is based on a cited reference.\" [ECO:MCC, GO:TAS]"
],
"disjoint_from": [
"ECO:0000034 ! non-traceable author statement"
],
"id": [
"ECO:0000033"
],
"is_a": [
"ECO:0000204 ! author statement"
],
"name": [
"traceable author statement"
]
},
"ECO:0000034": {
"comment": [
"The non-traceable author statement evidence code should be used in all cases where the author makes a statement that a curator wants to capture but for which there are neither results presented nor a specific reference cited in the source used to make the annotation. The source of the information may be peer reviewed papers, textbooks, database records or vouchered specimens."
],
"def": [
"\"An author statement that is not associated with results presented or a cited reference.\" [ECO:MCC]"
],
"id": [
"ECO:0000034"
],
"is_a": [
"ECO:0000204 ! author statement"
],
"name": [
"non-traceable author statement"
]
},
"ECO:0000035": {
"comment": [
"An assertion of \"no biological data found\" carries the assumption that a more-or-less exhaustive search has been conducted."
],
"def": [
"\"A curator inference that results from research where no information about a biological feature was found in the scientific literature, at biological databases, or within other resources.\" [ECO:MCC, GO:ND]"
],
"id": [
"ECO:0000035"
],
"is_a": [
"ECO:0000205 ! curator inference"
],
"name": [
"no biological data found"
],
"synonym": [
"\"ND\" EXACT [GO:ND]",
"\"no biological data available\" EXACT [GO:ND]"
]
},
"ECO:0000037": {
"comment": [
"The evidence not_recorded appears in some legacy annotations; it should not be used for new annotations."
],
"def": [
"\"An evidence that reflects an annotation was made before curators began tracking evidence types.\" [ECO:MCC, GO:NR]"
],
"id": [
"ECO:0000037"
],
"is_a": [],
"is_obsolete": [
"true"
],
"name": [
"not_recorded"
],
"synonym": [
"\"not recorded\" EXACT [GO:NR]",
"\"NR\" EXACT [GO:NR]"
]
},
"ECO:0000038": {
"id": [
"ECO:0000038"
],
"is_a": [
"ECO:0000012 ! functional complementation evidence"
],
"name": [
"transient rescue experiment evidence"
]
},
"ECO:0000039": {
"id": [
"ECO:0000039"
],
"is_a": [
"ECO:0000002 ! direct assay evidence"
],
"name": [
"protein assay evidence"
]
},
"ECO:0000040": {
"id": [
"ECO:0000040"
],
"is_a": [
"ECO:0000023 ! affinity evidence"
],
"name": [
"immunological assay evidence"
]
},
"ECO:0000041": {
"def": [
"\"An evidence type that is based on comparing likeness of distinct biological entities.\" [ECO:MCC, PhenoScape:IS]"
],
"id": [
"ECO:0000041"
],
"is_a": [
"ECO:0000000 ! evidence"
],
"name": [
"similarity evidence"
],
"synonym": [
"\"inferred from similarity\" RELATED []",
"\"IS\" EXACT []"
]
},
"ECO:0000042": {
"id": [
"ECO:0000042"
],
"is_a": [
"ECO:0000015 ! mutant phenotype evidence"
],
"name": [
"gain-of-function mutant phenotype evidence"
]
},
"ECO:0000044": {
"comment": [
"A sequence similarity analysis may involve a gene or a gene product, and it could be based on similarity to a single other gene or to a group of other genes."
],
"def": [
"\"A type of similarity based on biomolecular sequence.\" [ECO:MCC, TAIR:TED]"
],
"id": [
"ECO:0000044"
],
"is_a": [
"ECO:0000041 ! similarity evidence"
],
"name": [
"sequence similarity evidence"
],
"synonym": [
"\"inferred from sequence or structural similarity\" BROAD [GO:ISS]",
"\"inferred from sequence similarity\" EXACT []",
"\"ISS\" BROAD [GO:ISS]"
]
},
"ECO:0000045": {
"id": [
"ECO:0000045"
],
"is_a": [
"ECO:0000010 ! protein expression evidence"
],
"name": [
"spatial pattern of protein expression evidence"
]
},
"ECO:0000046": {
"id": [
"ECO:0000046"
],
"is_a": [
"ECO:0000010 ! protein expression evidence"
],
"name": [
"protein expression level evidence"
]
},
"ECO:0000047": {
"id": [
"ECO:0000047"
],
"is_a": [
"ECO:0000009 ! transcript expression evidence"
],
"name": [
"spatial pattern of transcript expression evidence"
]
},
"ECO:0000048": {
"id": [
"ECO:0000048"
],
"is_a": [
"ECO:0000009 ! transcript expression evidence"
],
"name": [
"transcript expression level evidence"
]
},
"ECO:0000049": {
"def": [
"\"Used when an annotation is made on the basis of the expression pattern of a reporter gene. The reporter gene may consist of the native promoter of the gene in question that drives the expression of a readily assayable gene product such as GUS or GFP. The reporter gene may also be a marker of a particular type of physiological response.\" [TAIR:TED]"
],
"id": [
"ECO:0000049"
],
"is_a": [
"ECO:0000059 ! experimental phenotypic evidence"
],
"name": [
"reporter gene assay evidence"
],
"synonym": [
"\"IEP: expression of a reporter gene\" RELATED []"
]
},
"ECO:0000050": {
"def": [
"\"Used when an annotation is made on the basis of for a phenotype description for a species or higher level group that given by an author who explicitly references an observation of a voucher specimen(s). Voucher specimens are defined as those specimens with permanent museum catalog numbers. Thus it would be possible for a person to examine this particular specimen and observe the annotated phenotype.\" [PhenoScape:DOA]"
],
"id": [
"ECO:0000050"
],
"is_a": [
"ECO:0000059 ! experimental phenotypic evidence"
],
"name": [
"voucher specimen analysis evidence"
],
"synonym": [
"\"IVS\" EXACT []"
]
},
"ECO:0000051": {
"comment": [
"A genetic similarity analysis might consider genetic markers, polymorphisms, alleles, or other characteristics sometimes considered as part of the field of traditional genetics. Although an attempt has been made to treat as distinct the concepts of \"genetic\", \"genotypic\", \"genomic\", and \"sequence\", there is considerable overlap in usage throughout the field of biology."
],
"def": [
"\"A type of similarity based on genotype without respect to expression.\" [ECO:MCC, PhenoScape:IGTS]"
],
"id": [
"ECO:0000051"
],
"is_a": [
"ECO:0000041 ! similarity evidence"
],
"name": [
"genetic similarity evidence"
],
"synonym": [
"\"IGTS\" EXACT []",
"\"inferred from genetic similarity\" RELATED []"
]
},
"ECO:0000052": {
"id": [
"ECO:0000052"
],
"is_a": [
"ECO:0000011 ! genetic interaction evidence"
],
"name": [
"suppressor/enhancer interaction evidence"
],
"synonym": [
"\"IGI: 'traditional' genetic interactions (e.g. suppressors, synthetic lethals)\" RELATED []"
],
"xref": [
"TAIR:TED\\:0000063"
]
},
"ECO:0000053": {
"comment": [
"Combinatorial analyses could include experimental or computational results. Examples include: (i) large-scale experiment such as a genome-wide two-hybrid or genome-wide synthetic interactions; (ii) integration of large-scale data sets of various types; and (iii) text-based-computation, e.g. text-mining. For simple sequence comparisons, one should use the sequence similarity analysis evidence type. For microarray results alone, expression pattern analysis is appropriate; whereas, large-scale computational analysis should be used when microarray results are combined with the results of other types of large-scale experiments."
],
"def": [
"\"A type of combinatorial analysis where data are combined and evaluated by an algorithm.\" [ECO:go, ECO:MCC]"
],
"id": [
"ECO:0000053"
],
"is_a": [
"ECO:0000212 ! combinatorial evidence"
],
"name": [
"computational combinatorial evidence"
],
"xref": [
"TAIR:TED\\:0000004"
]
},
"ECO:0000054": {
"def": [
"\"Used when an annotation is made based on the phenotype of double mutant organism that contains a mutation in the gene product of interest in addition to a second mutation at an unrelated locus.\" [TAIT:TED]"
],
"id": [
"ECO:0000054"
],
"is_a": [
"ECO:0000011 ! genetic interaction evidence"
],
"name": [
"double mutant phenotype evidence"
],
"synonym": [
"\"IGI: double mutant analysis\" RELATED []"
]
},
"ECO:0000055": {
"id": [
"ECO:0000055"
],
"is_a": [
"ECO:0000008 ! expression pattern evidence"
],
"name": [
"array experiment evidence"
]
},
"ECO:0000056": {
"def": [
"\"Used when an annotation is based on results of epistatis analysis of an allele of the gene in question and a mutant allele at another locus.\" [TAIR:TED]"
],
"id": [
"ECO:0000056"
],
"is_a": [
"ECO:0000011 ! genetic interaction evidence"
],
"name": [
"epistatic interaction evidence"
],
"synonym": [
"\"IGI: epistatic interactions\" RELATED []"
]
},
"ECO:0000057": {
"comment": [
"Phenotype is defined as the outcome of the expression of a genotype in a given environment. A comparison might involve whole organisms or sub-parts of organisms."
],
"def": [
"\"A type of similarity based on the expression of a genotype in an environment.\" [ECO:MCC, PhenoScape:IPTS]"
],
"id": [
"ECO:0000057"
],
"is_a": [
"ECO:0000041 ! similarity evidence"
],
"name": [
"phenotypic similarity evidence"
],
"synonym": [
"\"inferred from phenotypic similarity\" RELATED []",
"\"IPTS\" EXACT []"
]
},
"ECO:0000058": {
"id": [
"ECO:0000058"
],
"is_a": [
"ECO:0000055 ! array experiment evidence"
],
"name": [
"expression microarray evidence"
]
},
"ECO:0000059": {
"alt_id": [
"ECO:0000014"
],
"def": [
"\"Experimental evidence that is based on the expression of a genotype in an environment.\" [ECO:MCC]"
],
"id": [
"ECO:0000059"
],
"is_a": [
"ECO:0000006 ! experimental evidence"
],
"name": [
"experimental phenotypic evidence"
],
"synonym": [
"\"inferred from phenotype\" RELATED []"
]
},
"ECO:0000060": {
"def": [
"\"Used when an annotation is made based on the similarity of the location and or arrangement of structures.\" [PhenoScape:IPS]"
],
"id": [
"ECO:0000060"
],
"is_a": [
"ECO:0000057 ! phenotypic similarity evidence"
],
"name": [
"positional similarity evidence"
],
"synonym": [
"\"IPS\" EXACT []"
]
},
"ECO:0000061": {
"def": [
"\"A type of experimental phenotypic evidence where an annotation is made for a gene product that has not been cloned but is associated with a quantitative trait locus.\" [TAIR:tn]"
],
"id": [
"ECO:0000061"
],
"is_a": [
"ECO:0000059 ! experimental phenotypic evidence"
],
"name": [
"quantitative trait analysis evidence"
],
"synonym": [
"\"IGI: quantitative trait analysis\" RELATED []"
]
},
"ECO:0000062": {
"id": [
"ECO:0000062"
],
"is_a": [
"ECO:0000055 ! array experiment evidence"
],
"name": [
"genomic microarray evidence"
]
},
"ECO:0000063": {
"def": [
"\"Used when an annotation is made based on the similarity of the histological makeup of structures.\" [PhenoScape:ICS]"
],
"id": [
"ECO:0000063"
],
"is_a": [
"ECO:0000057 ! phenotypic similarity evidence"
],
"name": [