-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecto-base.obo
23155 lines (20267 loc) · 669 KB
/
ecto-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: ecto/releases/2023-02-14/ecto-base.owl
subsetdef: mrex "medically relevant exposure"
ontology: ecto/ecto-base
property_value: http://purl.org/dc/elements/1.1/description "ECTO describes exposures to experimental treatments of plants and model organisms (e.g. exposures to modification of diet, lighting levels, temperature); exposures of humans or any other organisms to stressors through a variety of routes, for purposes of public health, environmental monitoring etc, stimuli, natural and experimental, any kind of environmental condition or change in condition that can be experienced by an organism or population of organisms on earth. The scope is very general and can include for example plant treatment regimens, as well as human clinical exposures (although these may better be handled by a more specialized ontology)." xsd:string
property_value: http://purl.org/dc/elements/1.1/title "Environment Exposure 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/publicdomain/zero/1.0/
property_value: IAO:0000700 http://purl.obolibrary.org/obo/ExO_0000002 xsd:string
property_value: owl:versionInfo "2023-02-14" xsd:string
[Term]
id: ECTO:0000001
name: exposure to radiation
def: "A exposure event involving the interaction of an exposure receptor to radiation." []
synonym: "radiation exposure" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 ENVO:01001023
[Term]
id: ECTO:0000002
name: exposure to electromagnetic radiation
def: "A exposure event involving the interaction of an exposure receptor to electromagnetic radiation." []
synonym: "electromagnetic radiation exposure" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 ENVO:01001026
[Term]
id: ECTO:0000006
name: exposure to ultraviolet radiation
def: "A exposure event involving the interaction of an exposure receptor to ultraviolet radiation." []
synonym: "ultraviolet radiation exposure" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 ENVO:21001216
[Term]
id: ECTO:0000007
name: exposure to visible light radiation
def: "A exposure event involving the interaction of an exposure receptor to visible spectrum radiation." []
synonym: "visible spectrum radiation exposure" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 ENVO:21001215
[Term]
id: ECTO:0000015
name: exposure to environmental material
def: "A exposure event involving the interaction of an exposure receptor to environmental material." []
synonym: "environmental material exposure" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 ENVO:00010483
[Term]
id: ECTO:0000135
name: exposure to organic compound
def: "An exposure to organic molecular entity." []
synonym: "exposure to organic molecular entity" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:50860
[Term]
id: ECTO:0000163
name: exposure to organic cyclic compound
def: "An exposure to organic cyclic compound." []
synonym: "exposure to organic cyclic compound" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:33832
[Term]
id: ECTO:0000172
name: exposure to methotrexate
def: "An exposure to methotrexate." []
synonym: "exposure to methotrexate" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:44185
[Term]
id: ECTO:0000173
name: exposure to corticosteroid
def: "An exposure to corticosteroid." []
synonym: "exposure to corticosteroid" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:50858
[Term]
id: ECTO:0000200
name: exposure to lipid
def: "An exposure to lipid." []
synonym: "exposure to lipid" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:18059
[Term]
id: ECTO:0000207
name: exposure to carbon monoxide
def: "An exposure to carbon monoxide." []
synonym: "exposure to carbon monoxide" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:17245
[Term]
id: ECTO:0000231
name: exposure to chemical
def: "An exposure to chemical entity." []
synonym: "exposure to chemical entity" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:24431
[Term]
id: ECTO:0000258
name: exposure to steroid hormone
def: "An exposure to steroid hormone." []
synonym: "exposure to steroid hormone" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:26764
[Term]
id: ECTO:0000259
name: exposure to glucocorticoid
def: "An exposure to glucocorticoid." []
synonym: "exposure to glucocorticoid" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:24261
[Term]
id: ECTO:0000371
name: exposure to oxygen molecular entity
def: "An exposure to oxygen molecular entity." []
synonym: "exposure to oxygen molecular entity" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:25806
[Term]
id: ECTO:0000439
name: exposure to formaldehyde
def: "An exposure to formaldehyde." []
synonym: "exposure to formaldehyde" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:16842
[Term]
id: ECTO:0000481
name: exposure to transition element
def: "An exposure to transition element molecular entity." []
synonym: "exposure to transition element molecular entity" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:33497
[Term]
id: ECTO:0000485
name: exposure to chemical with biological effect
def: "An exposure to biological role." []
synonym: "exposure to biological role" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:24432
[Term]
id: ECTO:0000486
name: exposure to chemical with application
def: "An exposure to application." []
synonym: "exposure to application" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:33232
[Term]
id: ECTO:0000487
name: exposure to chemical with chemical role
def: "An exposure to chemical role." []
synonym: "exposure to chemical role" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:51086
[Term]
id: ECTO:0000496
name: exposure to alkylating agent
def: "An exposure to alkylating agent." []
synonym: "exposure to alkylating agent" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:22333
[Term]
id: ECTO:0000509
name: exposure to drug
def: "An exposure to drug." []
synonym: "exposure to drug" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:23888
[Term]
id: ECTO:0000515
name: exposure to herbicide
def: "An exposure to herbicide." []
synonym: "exposure to herbicide" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:24527
[Term]
id: ECTO:0000516
name: exposure to hormone
def: "An exposure to hormone." []
synonym: "exposure to hormone" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:24621
[Term]
id: ECTO:0000522
name: exposure to mitochondrial respiratory-chain inhibitor
def: "An exposure to mitochondrial respiratory-chain inhibitor." []
synonym: "exposure to mitochondrial respiratory-chain inhibitor" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:25355
[Term]
id: ECTO:0000523
name: exposure to mutagen
def: "An exposure to mutagen." []
synonym: "exposure to mutagen" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:25435
[Term]
id: ECTO:0000524
name: exposure to mycotoxin
def: "An exposure to mycotoxin." []
synonym: "exposure to mycotoxin" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:25442
[Term]
id: ECTO:0000526
name: exposure to neurotransmitter
def: "An exposure to neurotransmitter." []
synonym: "exposure to neurotransmitter" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:25512
[Term]
id: ECTO:0000530
name: exposure to pesticide
def: "An exposure to pesticide." []
synonym: "exposure to pesticide" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:25944
[Term]
id: ECTO:0000537
name: exposure to toxin
def: "An exposure to toxin." []
synonym: "exposure to toxin" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:27026
[Term]
id: ECTO:0000543
name: exposure to molecular messenger
def: "An exposure to molecular messenger." []
synonym: "exposure to molecular messenger" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:33280
[Term]
id: ECTO:0000544
name: exposure to antimicrobial agent
def: "An exposure to antimicrobial agent." []
synonym: "exposure to antimicrobial agent" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:33281
[Term]
id: ECTO:0000557
name: exposure to inhibitor
def: "An exposure to inhibitor." []
synonym: "exposure to inhibitor" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:35222
[Term]
id: ECTO:0000590
name: exposure to vasodilator agent
def: "An exposure to vasodilator agent." []
synonym: "exposure to vasodilator agent" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:35620
[Term]
id: ECTO:0000637
name: exposure to EC 1.9.3.1 (cytochrome c oxidase) inhibitor
def: "An exposure to EC 1.9.3.1 (cytochrome c oxidase) inhibitor." []
synonym: "exposure to EC 1.9.3.1 (cytochrome c oxidase) inhibitor" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:38500
[Term]
id: ECTO:0000650
name: exposure to Bronsted acid
def: "An exposure to Bronsted acid." []
synonym: "exposure to Bronsted acid" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:39141
[Term]
id: ECTO:0000657
name: exposure to disinfectant
def: "An exposure to disinfectant." []
synonym: "exposure to disinfectant" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:48219
[Term]
id: ECTO:0000672
name: exposure to agonist
def: "An exposure to agonist." []
synonym: "exposure to agonist" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:48705
[Term]
id: ECTO:0000689
name: exposure to P450 inhibitor
def: "An exposure to P450 inhibitor." []
synonym: "exposure to P450 inhibitor" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:50183
[Term]
id: ECTO:0000699
name: exposure to probe
def: "An exposure to probe." []
synonym: "exposure to probe" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:50406
[Term]
id: ECTO:0000724
name: exposure to genotoxin
def: "An exposure to genotoxin." []
synonym: "exposure to genotoxin" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:50902
[Term]
id: ECTO:0000725
name: exposure to carcinogenic agent
def: "An exposure to carcinogenic agent." []
synonym: "exposure to carcinogenic agent" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:50903
[Term]
id: ECTO:0000726
name: exposure to allergen
def: "An exposure to allergen." []
synonym: "exposure to allergen" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:50904
[Term]
id: ECTO:0000730
name: exposure to neurotoxin
def: "An exposure to neurotoxin." []
synonym: "exposure to neurotoxin" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:50910
[Term]
id: ECTO:0000738
name: exposure to ligand
def: "An exposure to ligand." []
synonym: "exposure to ligand" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:52214
[Term]
id: ECTO:0000750
name: exposure to biomarker
def: "An exposure to biomarker." []
synonym: "exposure to biomarker" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:59163
[Term]
id: ECTO:0000776
name: exposure to signalling molecule
def: "An exposure to signalling molecule." []
synonym: "exposure to signalling molecule" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:62488
[Term]
id: ECTO:0000922
name: exposure to EC 3.5.1.4 (amidase) inhibitor
def: "An exposure to EC 3.5.1.4 (amidase) inhibitor." []
synonym: "exposure to EC 3.5.1.4 (amidase) inhibitor" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:77941
[Term]
id: ECTO:0000931
name: exposure to environmental contaminant
def: "An exposure to environmental contaminant." []
synonym: "exposure to environmental contaminant" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:78298
[Term]
id: ECTO:0000979
name: exposure to temperature of environmental surroundings
def: "A exposure event involving the interaction of an exposure receptor to temperature of environmental material." []
synonym: "temperature of environmental material exposure" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 ENVO:09200000
[Term]
id: ECTO:0000980
name: exposure to temperature of air in surroundings
def: "A exposure event involving the interaction of an exposure receptor to temperature of air." []
synonym: "temperature of air exposure" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 ENVO:09200001
[Term]
id: ECTO:0001055
name: exposure to decreased air temperature
def: "A exposure event involving the interaction of an exposure receptor to decreased amount of temperature of air." []
synonym: "exposure to decreased amount in temperature of air" EXACT []
[Term]
id: ECTO:0001057
name: exposure to decreased temperature
def: "A exposure event involving the interaction of an exposure receptor to decreased temperature." []
synonym: "decreased temperature exposure" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 PATO:0001306
[Term]
id: ECTO:0001082
name: exposure to alcohol consumption
def: "An exposure event involving Alcohol Consumption" []
synonym: "Alcohol Consumption exposure" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 NCIT:C16273
[Term]
id: ECTO:0001108
name: exposure to aflatoxin
def: "An exposure to aflatoxin." []
synonym: "exposure to aflatoxin" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:22271
[Term]
id: ECTO:0001152
name: exposure to organochlorine compound
def: "An exposure to organochlorine compound." []
synonym: "exposure to organochlorine compound" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:36683
[Term]
id: ECTO:0001566
name: exposure to cadmium
def: "An exposure to cadmium molecular entity." []
synonym: "exposure to cadmium molecular entity" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:22978
[Term]
id: ECTO:0001571
name: exposure to mercury
def: "An exposure to mercury molecular entity." []
synonym: "exposure to mercury molecular entity" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:25196
[Term]
id: ECTO:0001591
name: exposure to occupation
def: "An exposure event involving Occupation" []
synonym: "Occupation exposure" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 NCIT:C25193
[Term]
id: ECTO:0001659
name: exposure to chloroacetic acid
def: "An exposure to chloroacetic acid." []
synonym: "exposure to chloroacetic acid" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:27869
[Term]
id: ECTO:0002002
name: exposure to steroid
def: "An exposure to steroid." []
synonym: "exposure to steroid" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 CHEBI:35341
[Term]
id: ECTO:0010000
name: exposure to environmental quality
def: "A exposure event involving the interaction of an exposure receptor to quality." []
synonym: "quality exposure" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 PATO:0000001
[Term]
id: ECTO:0010001
name: exposure to qualitative environmental quality
def: "A exposure event involving the interaction of an exposure receptor to qualitative." []
synonym: "qualitative exposure" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 PATO:0000068
[Term]
id: ECTO:0010002
name: exposure to environmental process quality
def: "A exposure event involving the interaction of an exposure receptor to process quality." []
synonym: "process quality exposure" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 PATO:0001236
[Term]
id: ECTO:0010003
name: exposure to environmental physical object quality
def: "A exposure event involving the interaction of an exposure receptor to physical object quality." []
synonym: "physical object quality exposure" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 PATO:0001241
[Term]
id: ECTO:0020000
name: exposure to automotive occupations
def: "An exposure event involving Automotive Occupations" []
synonym: "Automotive Occupations exposure" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002309 NCIT:C103933
[Term]
id: ECTO:0030000
name: obsolete exposure to a diet
is_obsolete: true
[Term]
id: ECTO:0030001
name: obsolete exposure to high vegetable diet
is_obsolete: true
[Term]
id: ECTO:0070000
name: exposure to probiotic or bacteria supplement via ingestion
def: "An exposure to probiotic or bacteria supplement via ingestion." []
synonym: "probiotic or bacteria supplement exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03401308
[Term]
id: ECTO:0070001
name: exposure to skim milk via ingestion
def: "An exposure to skim milk (pasteurized, vitamin A and D fortified) via ingestion." []
synonym: "skim milk (pasteurized, vitamin A and D fortified) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03311235
[Term]
id: ECTO:0070002
name: exposure to lowfat milk via ingestion
def: "An exposure to lowfat cow milk (1% fat) via ingestion." []
synonym: "lowfat cow milk (1% fat) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:00002815
[Term]
id: ECTO:0070003
name: exposure to whole milk via ingestion
def: "An exposure to cow whole milk 3.5% fat via ingestion." []
synonym: "cow whole milk 3.5% fat exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03310780
[Term]
id: ECTO:0070004
name: exposure to almond milk via ingestion
def: "An exposure to almond milk via ingestion." []
synonym: "almond milk exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:00003157
[Term]
id: ECTO:0070005
name: exposure to soybean milk via ingestion
def: "An exposure to soybean milk via ingestion." []
synonym: "soybean milk exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03305289
[Term]
id: ECTO:0070006
name: exposure to milk beverage analog via ingestion
def: "An exposure to milk beverage analog via ingestion." []
synonym: "milk beverage analog exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:00002034
[Term]
id: ECTO:0070007
name: exposure to heavy cream via ingestion
def: "An exposure to heavy cream via ingestion." []
synonym: "heavy cream exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03310795
[Term]
id: ECTO:0070008
name: exposure to imitation half and half via ingestion
def: "An exposure to imitation half and half via ingestion." []
synonym: "imitation half and half exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03304468
[Term]
id: ECTO:0070009
name: exposure to frozen yogurt via ingestion
def: "An exposure to frozen yogurt via ingestion." []
synonym: "frozen yogurt exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03307445
[Term]
id: ECTO:0070010
name: exposure to ice cream via ingestion
def: "An exposure to ice cream food product via ingestion." []
synonym: "ice cream food product exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:00001045
[Term]
id: ECTO:0070011
name: exposure to butter via ingestion
def: "An exposure to butter via ingestion." []
synonym: "butter exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03310351
[Term]
id: ECTO:0070012
name: exposure to margarine via ingestion
def: "An exposure to margarine via ingestion." []
synonym: "margarine exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03301672
[Term]
id: ECTO:0070013
name: exposure to butter spread via ingestion
def: "An exposure to butter blend spread via ingestion." []
synonym: "butter blend spread exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03303711
[Term]
id: ECTO:0070014
name: exposure to non fat yogurt via ingestion
def: "An exposure to yogurt (nonfat) via ingestion." []
synonym: "yogurt (nonfat) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03305085
[Term]
id: ECTO:0070015
name: exposure to lowfat yogurt via ingestion
def: "An exposure to yogurt (lowfat) via ingestion." []
synonym: "yogurt (lowfat) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03307444
[Term]
id: ECTO:0070016
name: exposure to regular yogurt via ingestion
def: "An exposure to yogurt (plain) via ingestion." []
synonym: "yogurt (plain) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03301502
[Term]
id: ECTO:0070017
name: exposure to cottage cheese via ingestion
def: "An exposure to cottage cheese (lowfat) via ingestion." []
synonym: "cottage cheese (lowfat) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03303720
[Term]
id: ECTO:0070018
name: exposure to cream cheese via ingestion
def: "An exposure to cream cheese via ingestion." []
synonym: "cream cheese exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03301889
[Term]
id: ECTO:0070020
name: exposure to lowfat cheese via ingestion
def: "An exposure to cheese (lowfat) via ingestion." []
synonym: "cheese (lowfat) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03303902
[Term]
id: ECTO:0070021
name: exposure to cheese (natural) via ingestion
def: "An exposure to cheese (natural) via ingestion." []
synonym: "cheese (natural) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03303504
[Term]
id: ECTO:0070022
name: exposure to apple via ingestion
def: "An exposure to apple (whole) via ingestion." []
synonym: "apple (whole) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:00002473
[Term]
id: ECTO:0070023
name: exposure to avocado via ingestion
def: "An exposure to avocado (whole, raw) via ingestion." []
synonym: "avocado (whole, raw) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03305236
[Term]
id: ECTO:0070024
name: exposure to banana via ingestion
def: "An exposure to banana (whole) via ingestion." []
synonym: "banana (whole) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:00004183
[Term]
id: ECTO:0070025
name: exposure to blueberries via ingestion
def: "An exposure to blueberry (whole, raw) via ingestion." []
synonym: "blueberry (whole, raw) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03302045
[Term]
id: ECTO:0070026
name: exposure to cantaloupe via ingestion
def: "An exposure to cantaloupe (whole, raw) via ingestion." []
synonym: "cantaloupe (whole, raw) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03302805
[Term]
id: ECTO:0070027
name: exposure to grapes via ingestion
def: "An exposure to grape (whole, raw) via ingestion." []
synonym: "grape (whole, raw) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03301123
[Term]
id: ECTO:0070028
name: exposure to grapefruit via ingestion
def: "An exposure to grapefruit (whole, raw) via ingestion." []
synonym: "grapefruit (whole, raw) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03301702
[Term]
id: ECTO:0070029
name: exposure to navel orange via ingestion
def: "An exposure to navel orange (whole, raw) via ingestion." []
synonym: "navel orange (whole, raw) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:00002511
[Term]
id: ECTO:0070030
name: exposure to peach via ingestion
def: "An exposure to peach (whole, raw) via ingestion." []
synonym: "peach (whole, raw) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03301719
[Term]
id: ECTO:0070031
name: exposure to plum via ingestion
def: "An exposure to plum (whole, raw) via ingestion." []
synonym: "plum (whole, raw) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03301580
[Term]
id: ECTO:0070032
name: exposure to apricot via ingestion
def: "An exposure to apricot (whole, raw) via ingestion." []
synonym: "apricot (whole, raw) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03301701
[Term]
id: ECTO:0070033
name: exposure to pear via ingestion
def: "An exposure to pear (whole, raw) via ingestion." []
synonym: "pear (whole, raw) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03301724
[Term]
id: ECTO:0070034
name: exposure to raspberry via ingestion
def: "An exposure to raspberry (whole, raw) via ingestion." []
synonym: "raspberry (whole, raw) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03307119
[Term]
id: ECTO:0070035
name: exposure to strawberry via ingestion
def: "An exposure to strawberry (whole, raw) via ingestion." []
synonym: "strawberry (whole, raw) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03301722
[Term]
id: ECTO:0070036
name: exposure to tomato via ingestion
def: "An exposure to tomato (whole) via ingestion." []
synonym: "tomato (whole) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03301453
[Term]
id: ECTO:0070037
name: exposure to tomato juice via ingestion
def: "An exposure to tomato juice via ingestion." []
synonym: "tomato juice exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03301454
[Term]
id: ECTO:0070038
name: exposure to tomato sauce via ingestion
def: "An exposure to tomato sauce via ingestion." []
synonym: "tomato sauce exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03301217
[Term]
id: ECTO:0070039
name: exposure to watermelon via ingestion
def: "An exposure to watermelon (whole, raw) via ingestion." []
synonym: "watermelon (whole, raw) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03301040
[Term]
id: ECTO:0070040
name: exposure to bean via ingestion
def: "An exposure to bean (whole) via ingestion." []
synonym: "bean (whole) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:00002753
[Term]
id: ECTO:0070041
name: exposure to lentil via ingestion
def: "An exposure to lentil (whole) via ingestion." []
synonym: "lentil (whole) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03310641
[Term]
id: ECTO:0070042
name: exposure to bell pepper via ingestion
def: "An exposure to bell pepper (whole) via ingestion." []
synonym: "bell pepper (whole) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:00003546
[Term]
id: ECTO:0070043
name: exposure to broccoli via ingestion
def: "An exposure to broccoli floret (whole, raw) via ingestion." []
synonym: "broccoli floret (whole, raw) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03301713
[Term]
id: ECTO:0070044
name: exposure to brussels sprout via ingestion
def: "An exposure to brussels sprout (whole) via ingestion." []
synonym: "brussels sprout (whole) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03311885
[Term]
id: ECTO:0070045
name: exposure to cabbage via ingestion
def: "An exposure to cabbage head via ingestion." []
synonym: "cabbage head exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:00003406
[Term]
id: ECTO:0070046
name: exposure to carrot via ingestion
def: "An exposure to carrot root (whole) via ingestion." []
synonym: "carrot root (whole) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:00003408
[Term]
id: ECTO:0070047
name: exposure to cauliflower via ingestion
def: "An exposure to cauliflower floret (whole) via ingestion." []
synonym: "cauliflower floret (whole) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:00003410
[Term]
id: ECTO:0070048
name: exposure to corn via ingestion
def: "An exposure to corn kernel (whole) via ingestion." []
synonym: "corn kernel (whole) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03317387
[Term]
id: ECTO:0070049
name: exposure to eggplant via ingestion
def: "An exposure to eggplant (whole) via ingestion." []
synonym: "eggplant (whole) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:00003618
[Term]
id: ECTO:0070050
name: exposure to zucchini via ingestion
def: "An exposure to zucchini squash (whole) via ingestion." []
synonym: "zucchini squash (whole) exposure via ingestion" EXACT []
intersection_of: ExO:0000002
intersection_of: RO:0002242 ExO:0000056
intersection_of: RO:0002309 FOODON:03310943
[Term]
id: ECTO:0070051
name: exposure to squash via ingestion