-
Notifications
You must be signed in to change notification settings - Fork 5
/
zeco-base.json
2168 lines (2168 loc) · 74.9 KB
/
zeco-base.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
{
"graphs" : [ {
"nodes" : [ {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000246",
"meta" : {
"definition" : {
"val" : "Housing condition in which the enclosure of the fish is undercrowded,containing a low amount of fish that increases the available space of the enclosure.",
"xrefs" : [ ]
},
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "low density",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "undercrowding"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000125",
"meta" : {
"definition" : {
"val" : "Fat content condition in which the amount of fat in the diet is reduced.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "low fat"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000126",
"meta" : {
"definition" : {
"val" : "Low fat condition in which the amount of trans fat in the diet is reduced.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "low trans fat"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000247",
"meta" : {
"definition" : {
"val" : "Food availability condition in which food is provided in increased supply.",
"xrefs" : [ ]
},
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "overfeeding",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "increased food availability"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000248",
"meta" : {
"definition" : {
"val" : "Physical alteration which uses cold to damage an anatomical structure, cell, or organ",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "cold damage"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000127",
"meta" : {
"definition" : {
"val" : "Low fat condition in which the amount of polyunsaturated fat in the diet is reduced.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "low polyunsaturated fat"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000128",
"meta" : {
"definition" : {
"val" : "Food content condition in which the amount of protein in the diet is manipulated.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "protein content"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000249",
"meta" : {
"definition" : {
"val" : "Experimental condition which uses a cold instrument to ablate an anatomical structure or cell.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "cryoablation"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000121",
"meta" : {
"definition" : {
"val" : "Food content condition in which the amount of fat in the diet is manipulated.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "fat content"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000242",
"meta" : {
"definition" : {
"val" : "Food content condtion in which the amount of carbohydrate in the diet is reduced.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "low carbohydrate"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000243",
"type" : "CLASS",
"lbl" : "stress by handling"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000122",
"meta" : {
"definition" : {
"val" : "Fat content condition in which the amount of fat in the diet is elevated.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "high fat"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000244",
"meta" : {
"definition" : {
"val" : "Mechanical stress condition where the organism is subjected to vibrations having an ultrasonic frequency.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "ultrasound"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000123",
"meta" : {
"definition" : {
"val" : "High fat condition in which the amount of saturated fat in the diet is elevated.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "high saturated fat"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000245",
"meta" : {
"definition" : {
"val" : "Physical alteration which uses light to damage the anatomical structure, cell, or organ.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "light damage"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000124",
"meta" : {
"definition" : {
"val" : "High fat condition in which the amount of monounsaturated fat in the diet is elevated.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "high monounsaturated fat"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000240",
"meta" : {
"definition" : {
"val" : "Food content condition in which the amount of carbohydrate in the diet is manipulated.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "carbohydrate content"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000241",
"meta" : {
"definition" : {
"val" : "Food content condtion in which the amount of carbohydrate in the diet is elevated.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "high carbohydrate"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000120",
"meta" : {
"definition" : {
"val" : "Cholesterol content condition in which the amount of cholesterol in the diet is reduced.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "low cholesterol"
}, {
"id" : "http://purl.obolibrary.org/obo/IAO_0000115",
"type" : "PROPERTY",
"lbl" : "definition"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000118",
"meta" : {
"definition" : {
"val" : "Food content condition in which the amount of cholesterol in the diet is manipulated.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "cholesterol content"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000239",
"meta" : {
"definition" : {
"val" : "Chemical treatment condition in which the chemical is introduced through the diet.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "chemical treatment by diet"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000119",
"meta" : {
"definition" : {
"val" : "Cholesterol content condition in which the amount of cholesterol in the diet is elevated.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "high cholesterol"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000114",
"meta" : {
"definition" : {
"val" : "Limited food availability condition in which there is no food provided.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "fasting"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000235",
"meta" : {
"definition" : {
"val" : "Viral treatment where the virus is injected into the fish.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "viral treatment by injection"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000115",
"meta" : {
"definition" : {
"val" : "Food availability condition in which food is provided in limited supply.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "limited food availability"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000236",
"meta" : {
"definition" : {
"val" : "Xenotransplantation condition in which cancer cells are injected or grafted into the zebrafish.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "cancer xenotransplantation"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000237",
"meta" : {
"definition" : {
"val" : "Chemical treatment in which the chemical is injected into the zebrafish.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "chemical treatment by injection"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000116",
"meta" : {
"definition" : {
"val" : "Food availability condition in which food is available in unlimited supply.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "unlimited food availability"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000117",
"meta" : {
"definition" : {
"val" : "Diet condition in which the contents of the food is manipulated.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "food content"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000238",
"meta" : {
"definition" : {
"val" : "Chemical treatment condition in which the chemical is introduced through the environment. For zebrafish this is the tank water.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "chemical treatment by environment"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000110",
"meta" : {
"definition" : {
"val" : "Biological treatment in which fish have been infected with a virus.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "viral treatment"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000198",
"type" : "CLASS",
"lbl" : "high sodium"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000231",
"meta" : {
"definition" : {
"val" : "Bacterial treatment where the bacteria are introduced via the environment. For zebrafish this is the tank water.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "bacterial treatment by exposure to environment"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000111",
"meta" : {
"definition" : {
"val" : "Experimental condition in which the fish is treated with a chemical substance. This treatment could be administered by adding the chemical substance to the tank water, injections, or by consumption.",
"xrefs" : [ ]
},
"subsets" : [ "http://purl.obolibrary.org/obo/ZECO_0000267" ]
},
"type" : "CLASS",
"lbl" : "chemical treatment"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000232",
"meta" : {
"definition" : {
"val" : "Fungal treatment where the fungus is injected into the fish.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "fungal treatment by injection"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000199",
"type" : "CLASS",
"lbl" : "low sodium"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000112",
"meta" : {
"definition" : {
"val" : "Experimental condition where the food of the zebrafish is manipulated in some way.",
"xrefs" : [ ]
},
"subsets" : [ "http://purl.obolibrary.org/obo/ZECO_0000267" ]
},
"type" : "CLASS",
"lbl" : "diet"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000233",
"meta" : {
"definition" : {
"val" : "Fungal treatment where the fungus is introduced via the environment. For zebrafish this is the tank water.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "fungal treatment by exposure to environment"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000113",
"meta" : {
"definition" : {
"val" : "Experimental condition in which the availability of food is manipulated.",
"xrefs" : [ ]
},
"subsets" : [ "http://purl.obolibrary.org/obo/ZECO_0000267" ]
},
"type" : "CLASS",
"lbl" : "food availability"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000234",
"meta" : {
"definition" : {
"val" : "Viral treatment where the virus is introduced via the environment. For zebrafish this is the tank water.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "viral treatment by exposure to environment"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000194",
"type" : "CLASS",
"lbl" : "modified potassium composition"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000195",
"type" : "CLASS",
"lbl" : "high potassium"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000196",
"type" : "CLASS",
"lbl" : "low potassium"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000230",
"meta" : {
"definition" : {
"val" : "Bacterial treatment where the bacteria are injected into the fish.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "bacterial treatment by injection"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000197",
"type" : "CLASS",
"lbl" : "modified sodium composition"
}, {
"id" : "http://www.geneontology.org/formats/oboInOwl#consider",
"type" : "PROPERTY",
"lbl" : "consider"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000190",
"type" : "CLASS",
"lbl" : "ion composition"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000191",
"type" : "CLASS",
"lbl" : "modified calcium composition"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000192",
"type" : "CLASS",
"lbl" : "high calcium"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000193",
"type" : "CLASS",
"lbl" : "low calcium"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000107",
"meta" : {
"definition" : {
"val" : "Biological treatment in which fish have been infected with a fungus.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "fungal treatment"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000228",
"meta" : {
"definition" : {
"val" : "Low fat condition in which the amount of monounsaturated fat in the diet is reduced.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "low monounsaturated fat"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000108",
"meta" : {
"definition" : {
"val" : "Biological treatment in which fish were raised in the absence of bacteria.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "germ free"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000229",
"meta" : {
"definition" : {
"val" : "Experimental condition in which an anatomical structure, cell, or organ has sustained targeted physical change, usually through the use of an instrument.",
"xrefs" : [ ]
},
"subsets" : [ "http://purl.obolibrary.org/obo/ZECO_0000267" ]
},
"type" : "CLASS",
"lbl" : "physical alteration"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000109",
"meta" : {
"definition" : {
"val" : "Biological treatment in which fish have been infected with protozoa.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "protozoan treatment"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000147",
"type" : "CLASS",
"lbl" : "light duration"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000148",
"type" : "CLASS",
"lbl" : "altered light dark cycle"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000149",
"type" : "CLASS",
"lbl" : "constant dark"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000143",
"meta" : {
"definition" : {
"val" : "Experimental condition in which components of the fish have been removed and are maintained separately.",
"xrefs" : [ ]
},
"subsets" : [ "http://purl.obolibrary.org/obo/ZECO_0000267" ]
},
"type" : "CLASS",
"lbl" : "in vitro culture"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000264",
"meta" : {
"definition" : {
"val" : "Experimental condition in which gravity forces are greater than in control conditions. An example of an increased gravity condition would be the application of centrifugal forces.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "increased gravity"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000144",
"meta" : {
"definition" : {
"val" : "In vitro culture condition in which an organ is dissected/isolated/collected from the fish and placed in culture. The analysis of the experiment is done on this organ in culture.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "organ culture"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000145",
"meta" : {
"definition" : {
"val" : "In vitro culture condition in which an embryo or adult fish is dissociated to a single cell suspension. The analysis is made on this cell culture.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "primary cell culture"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000146",
"meta" : {
"definition" : {
"val" : "Experimental condition in which the intensity, wavelength, and/or duration of illumination is (are) different from the one in controlled conditions.",
"xrefs" : [ ]
},
"subsets" : [ "http://purl.obolibrary.org/obo/ZECO_0000267" ]
},
"type" : "CLASS",
"lbl" : "lighting conditions"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000267",
"type" : "PROPERTY",
"lbl" : "ZECO_AGR_slim"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000260",
"meta" : {
"definition" : {
"val" : "Cauterization of a tissue using a heated instrument.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "thermal cauterization"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000140",
"meta" : {
"definition" : {
"val" : "Experimental condition that manipulates the enclosure of the fish.",
"xrefs" : [ ]
},
"subsets" : [ "http://purl.obolibrary.org/obo/ZECO_0000267" ]
},
"type" : "CLASS",
"lbl" : "housing conditions"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000261",
"meta" : {
"definition" : {
"val" : "An injury that occurs because of pressure from a heavy object onto a body part. A compression injury may also arise from squeezing of a body part between two objects. https://www.medicinenet.com/crush_injury/definition.htm",
"xrefs" : [ ]
},
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "crush injury",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "compression injury"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000262",
"meta" : {
"definition" : {
"val" : "Food content condition in which the amount of probiotics in the diet is manipulated",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "probiotic content"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000141",
"meta" : {
"definition" : {
"val" : "Housing condition in which the roof of the enclosure if open.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "open roofed"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000263",
"meta" : {
"definition" : {
"val" : "Experimental condition in which gravity forces are smaller than in control conditions. An example of a microgravity condition would be trips to outerspace.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "microgravity"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000142",
"meta" : {
"definition" : {
"val" : "Housing condition in which the enclosure of the fish is overcrowded, containing an excess of fish that reduces the available space of the enclosure.",
"xrefs" : [ ]
},
"synonyms" : [ {
"pred" : "hasExactSynonym",
"val" : "high density",
"xrefs" : [ ]
} ]
},
"type" : "CLASS",
"lbl" : "overcrowding"
}, {
"id" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace",
"type" : "PROPERTY",
"lbl" : "has_obo_namespace"
}, {
"id" : "http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion",
"type" : "PROPERTY",
"lbl" : "has_obo_format_version"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000136",
"meta" : {
"definition" : {
"val" : "High carbohydrate conditions in which the amount of sugar in the diet is reduced.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "low sugar"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000137",
"meta" : {
"definition" : {
"val" : "Low sugar condition in which the amount of sucrose in the diet is reduced.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "low sucrose"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000138",
"meta" : {
"definition" : {
"val" : "Low sugar condition in which the amount of fructose in the diet is reduced.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "low fructose"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000259",
"meta" : {
"definition" : {
"val" : "Condition that uses a cold or hot insturment, electrical current, or chemical to burn or dissolve an anatomical structure to remove or close it off.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "cauterization"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000139",
"meta" : {
"definition" : {
"val" : "Low sugar condition in which the amount of glucose in the diet is reduced.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "low glucose"
}, {
"id" : "http://purl.obolibrary.org/obo/IAO_0100001",
"type" : "PROPERTY",
"lbl" : "term replaced by"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000253",
"meta" : {
"definition" : {
"val" : "Feeding regime in which food, drugs, or other substances are administered by force, typically through a tube leading down the throat to the stomach.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "gavage"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000132",
"meta" : {
"definition" : {
"val" : "High carbohydrate conditions in which the amount of sugar in the diet is elevated.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "high sugar"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000133",
"meta" : {
"definition" : {
"val" : "High sugar condition in which the amount of fructose in the diet is elevated.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "high fructose"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000254",
"meta" : {
"definition" : {
"val" : "Bacterial treatment condition where bacteria are introduced to the organism by gavage.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "bacterial treatment by gavage"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000255",
"meta" : {
"definition" : {
"val" : "Chemical treatment condition where the chemical is introduced to the organism by gavage.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "chemical treatment by gavage"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000134",
"meta" : {
"definition" : {
"val" : "High sugar condition in which the amount of glucose in the diet is elevated.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "high glucose"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000256",
"meta" : {
"definition" : {
"val" : "Bacterial treatment where bacteria are introduced via the diet.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "bacterial treatment by diet"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000135",
"meta" : {
"definition" : {
"val" : "High sugar condition in which the amount of sucrose in the diet is elevated.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "high sucrose"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000250",
"meta" : {
"definition" : {
"val" : "Food content condition in which levels of a nutrient are decreased relative to standard diet.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "nutrient decreased"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000251",
"meta" : {
"definition" : {
"val" : "Food content condition in which levels of a nutrient are increased relative to standard diet.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "nutrient increased"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000130",
"meta" : {
"definition" : {
"val" : "Protein content condition in which the protein in the diet is reduced.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "low protein"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000252",
"meta" : {
"definition" : {
"val" : "Experimental condition that manipulates the frequency or way an organism is fed.",
"xrefs" : [ ]
},
"subsets" : [ "http://purl.obolibrary.org/obo/ZECO_0000267" ]
},
"type" : "CLASS",
"lbl" : "feeding regime"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000131",
"meta" : {
"subsets" : [ "http://purl.obolibrary.org/obo/ZECO_0000267" ]
},
"type" : "CLASS",
"lbl" : "stress"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000129",
"meta" : {
"definition" : {
"val" : "Protein content condition in which the protein in the diet is elevated.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "high protein"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000202",
"meta" : {
"definition" : {
"val" : "Experimental condition in which the pH of the water is higher than the pH of the controlled conditions.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "basic"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000169",
"meta" : {
"definition" : {
"val" : "Experimental condition which uses a chemical to ablate an anatomical structure or cell.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "chemical ablation"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000203",
"type" : "CLASS",
"lbl" : "water salinity"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000204",
"meta" : {
"definition" : {
"val" : "Experimental condition in which the salt concentration is higher than the one in controlled conditions.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "hypertonic"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000205",
"meta" : {
"definition" : {
"val" : "Experimental condition in which the salt concentration is lower than the one in controlled conditions.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "hypotonic"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000165",
"meta" : {
"definition" : {
"val" : "Temperature shock condition in which fish are subjected for a short period of time to temperature lower than the controlled temperature. The standard controlled temperature (according to the zebrafish book) is 28.5 degrees C.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "cold shock"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000166",
"meta" : {
"definition" : {
"val" : "Temperature shock condition in which fish are subjected for a short period of time to temperature higher than the controlled temperature. The standard controlled temperature (according to the zebrafish book) is 28.5 degrees C.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "heat shock"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000200",
"type" : "CLASS",
"lbl" : "pH"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000168",
"meta" : {
"definition" : {
"val" : "Targeted destruction of an anatomical structure.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "ablation"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000201",
"meta" : {
"definition" : {
"val" : "Experimental condition in which the pH of the water is lower than the pH of the controlled conditions.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "acidic"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000161",
"meta" : {
"definition" : {
"val" : "Temperature exposure condition in which fish are raised in temperature different (lower or higher) than the controlled temperature. The standard controlled temperature (according to the zebrafish book) is 28.5 degrees C.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "stable temperature exposure"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000162",
"meta" : {
"definition" : {
"val" : "Temperature exposure condition in which fish are raised in temperature that is lower than the controlled temperature. The standard controlled temperature (according to the zebrafish book) is 28.5 degrees C.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "cold exposure"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000163",
"meta" : {
"definition" : {
"val" : "Temperature exposure condition in which fish are raised in temperature that is higher than the controlled temperature. The standard controlled temperature (according to the zebrafish book) is 28.5 degrees C.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "heat exposure"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000164",
"meta" : {
"definition" : {
"val" : "Temperature exposure condition in which fish are subjected for a short period of time to temperature that is lower or higher than the controlled temperature. The standard controlled temperature (according to the zebrafish book) is 28.5 degrees C.",
"xrefs" : [ ]
}
},
"type" : "CLASS",
"lbl" : "temperature shock"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000160",
"meta" : {
"definition" : {
"val" : "Experimental condition in which the zebrafish is exposed to an increased or decreased temperature.",
"xrefs" : [ ]
},
"subsets" : [ "http://purl.obolibrary.org/obo/ZECO_0000267" ]
},
"type" : "CLASS",
"lbl" : "temperature exposure"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000158",
"type" : "CLASS",
"lbl" : "circular flow"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000159",
"type" : "CLASS",
"lbl" : "through flow"
}, {
"id" : "http://purl.obolibrary.org/obo/ZECO_0000154",
"meta" : {
"definition" : {
"val" : "Experimental condition in which gravity forces are manipulated. For zebrafish, this can be in the form of centrifugal forces or trips to outerspace.",
"xrefs" : [ ]