-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathanatomical_map.json
More file actions
1662 lines (1662 loc) · 40.8 KB
/
anatomical_map.json
File metadata and controls
1662 lines (1662 loc) · 40.8 KB
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
{
"urinary_1": {
"term": "UBERON:0001008",
"name": "renal system"
},
"urinary_2": {
"term": "UBERON:0001255",
"name": "urinary bladder"
},
"urinary_3": {
"term": "UBERON:0006082",
"name": "fundus of urinary bladder"
},
"urinary_4": {
"term": "UBERON:0001258",
"name": "neck of urinary bladder"
},
"urinary_5": {
"term": "UBERON:0004919",
"name": "external urethral sphincter"
},
"urinary_6": {
"term": "UBERON:0000483",
"name": "epithelium"
},
"urinary_7": {
"term": "UBERON:0001135",
"name": "smooth muscle tissue"
},
"urinary_8": {
"term": "UBERON:0035965",
"name": "wall of blood vessel"
},
"urinary_9": {
"term": "UBERON:0000483",
"name": "epithelium"
},
"urinary_10": {
"term": "UBERON:0004230",
"name": "urinary bladder neck smooth muscle"
},
"urinary_11": {
"term": "UBERON:0035965",
"name": "wall of blood vessel"
},
"urinary_12": {
"term": "UBERON:0000056",
"name": "ureter"
},
"urinary_13": {
"term": "UBERON:0002113",
"name": "kidney"
},
"urinary_14": {
"term": "UBERON:0000057",
"name": "urethra"
},
"urinary_15": {
"term": "ILX:0793141",
"name": "Urethral Rhabdosphincter"
},
"urinary_16": {
"term": "UBERON:0002384",
"name": "connective tissue"
},
"urinary_17": {
"term": "UBERON:0004538",
"name": "left kidney"
},
"urinary_18": {
"term": "UBERON:0004539",
"name": "right kidney"
},
"urinary_19": {
"term": "UBERON:0001184",
"name": "renal artery"
},
"urinary_21": {
"term": "ILX:0795054",
"name": "upper ureter"
},
"urinary_22": {
"term": "ILX:0795055",
"name": "lower ureter"
},
"cardio_1": {
"term": "UBERON:0004535",
"name": "cardiovascular system"
},
"cardio_2": {
"term": "UBERON:0000948",
"name": "heart"
},
"cardio_3": {
"term": "UBERON:0001508",
"name": "arch of aorta"
},
"cardio_4": {
"term": "UBERON:0001629",
"name": "carotid body"
},
"cardio_5": {
"term": "UBERON:0003708",
"name": "carotid sinus"
},
"cardio_6": {
"term": "UBERON:0000947",
"name": "aorta"
},
"cardio_7": {
"term": "UBERON:0001585",
"name": "anterior vena cava"
},
"cardio_8": {
"term": "UBERON:0002012",
"name": "pulmonary artery"
},
"cardio_9": {
"term": "UBERON:0002079",
"name": "left cardiac atrium"
},
"cardio_10": {
"term": "UBERON:0002078",
"name": "right cardiac atrium"
},
"cardio_11": {
"term": "UBERON:0002084",
"name": "heart left ventricle"
},
"cardio_12": {
"term": "UBERON:0002080",
"name": "heart right ventricle"
},
"cardio_13": {
"term": "ILX:0738316",
"name": "Aortic arch baroreceptors"
},
"cardio_14": {
"term": "UBERON:0001530",
"name": "common carotid artery plus branches"
},
"cardio_15": {
"term": "UBERON:0001532",
"name": "internal carotid artery"
},
"cardio_16": {
"term": "UBERON:0004664",
"name": "aorta tunica adventitia"
},
"cardio_18": {
"term": "UBERON:0001986",
"name": "endothelium"
},
"cardio_19": {
"term": "UBERON:0003380",
"name": "cardiac muscle of left atrium"
},
"cardio_20": {
"term": "UBERON:0001986",
"name": "endothelium"
},
"cardio_21": {
"term": "UBERON:0003379",
"name": "cardiac muscle of right atrium"
},
"cardio_22": {
"term": "UBERON:0001986",
"name": "endothelium"
},
"cardio_23": {
"term": "UBERON:0003382",
"name": "cardiac muscle of left ventricle"
},
"cardio_24": {
"term": "UBERON:0015129",
"name": "Epicardial Fat"
},
"cardio_25": {
"term": "UBERON:0003381",
"name": "cardiac muscle of right ventricle"
},
"cardio_26": {
"term": "UBERON:0001072",
"name": "posterior vena cava"
},
"cardio_27": {
"term": "UBERON:0002348",
"name": "Epicardium"
},
"cardio_28": {
"term": "UBERON:0002165",
"name": "Endocardium"
},
"cardio_29": {
"term": "UBERON:0002349",
"name": "Myocardium"
},
"cardio_30": {
"term": "UBERON:0015129",
"name": "Epicardial Fat"
},
"cardio_31": {
"term": "UBERON:0001074",
"name": "Pericardial Cavity"
},
"cardio_32": {
"term": "UBERON:0002409",
"name": "Pericardial Fluid"
},
"cardio_33": {
"term": "UBERON:0002408",
"name": "Parietal Serous Pericardium"
},
"cardio_34": {
"term": "UBERON:0002359",
"name": "Fibrous Pericardium"
},
"cardio_35": {
"term": "UBERON:0007240",
"name": "Tunica Adventitia of Artery"
},
"cardio_36": {
"term": "UBERON:0037094",
"name": "Wall of Common Carotid Artery"
},
"cardio_37": {
"term": "ILX:0738305",
"name": "Wall of Internal Carotid Artery"
},
"cardio_38": {
"term": "ILX:0738304",
"name": "Wall of Arch of Aorta"
},
"respiratory_1": {
"term": "UBERON:0001004",
"name": "respiratory system"
},
"respiratory_2": {
"term": "UBERON:0002048",
"name": "lung"
},
"respiratory_3": {
"term": "UBERON:0003126",
"name": "trachea"
},
"respiratory_4": {
"term": "UBERON:0001103",
"name": "diaphragm"
},
"respiratory_5": {
"term": "ILX:0738326",
"name": "Wall of larynx"
},
"respiratory_6": {
"term": "UBERON:0003604",
"name": "trachea cartilage"
},
"respiratory_7": {
"term": "UBERON:0000211",
"name": "ligament"
},
"respiratory_8": {
"term": "ILX:0738317",
"name": "Laryngeal mechanoreceptors"
},
"respiratory_9": {
"term": "UBERON:0002375",
"name": "cricoid cartilage"
},
"respiratory_10": {
"term": "UBERON:0001738",
"name": "thyroid cartilage"
},
"respiratory_11": {
"term": "UBERON:0000388",
"name": "epiglottis"
},
"respiratory_12": {
"term": "UBERON:0004982",
"name": "Mucosa of Epiglottis"
},
"respiratory_13": {
"term": "UBERON:0001707",
"name": "nasal cavity"
},
"respiratory_14": {
"term": "UBERON:0001740",
"name": "arytenoid cartilage"
},
"respiratory_15": {
"term": "UBERON:0001005",
"name": "respiratory airway"
},
"respiratory_16": {
"term": "UBERON:0003387",
"name": "smooth muscle of trachea"
},
"respiratory_17": {
"term": "UBERON:0004242",
"name": "bronchus smooth muscle"
},
"respiratory_18": {
"term": "UBERON:0004515",
"name": "smooth muscle tissue of bronchiole"
},
"respiratory_19": {
"term": "UBERON:0004516",
"name": "smooth muscle tissue of terminal bronchiole"
},
"respiratory_20": {
"term": "UBERON:0007196",
"name": "tracheobronchial tree"
},
"respiratory_21": {
"term": "ILX:0793684",
"name": "Wall of Trachea"
},
"respiratory_22": {
"term": "UBERON:0002187",
"name": "Terminal Bronchiole"
},
"respiratory_23": {
"term": "ILX:0775392",
"name": "Wall of Terminal Bronchiole"
},
"respiratory_24": {
"term": "UBERON:0002186",
"name": "Bronchiole"
},
"respiratory_25": {
"term": "UBERON:0002185",
"name": "Bronchus"
},
"respiratory_26": {
"term": "ILX:0793764",
"name": "Wall of Bronchus"
},
"respiratory_27": {
"term": "ILX:0793765",
"name": "Wall of Bronchiole"
},
"respiratory_28": {
"term": "ILX:0738318",
"name": "Epiglottic mechanoreceptors"
},
"respiratory_29": {
"term": "UBERON:0000379",
"name": "Tracheal Mucosa"
},
"digestive_1": {
"term": "UBERON:0001007",
"name": "digestive system"
},
"digestive_2": {
"term": "UBERON:0000945",
"name": "stomach"
},
"digestive_3": {
"term": "UBERON:0000059",
"name": "large intestine"
},
"digestive_4": {
"term": "UBERON:0001155",
"name": "colon"
},
"digestive_5": {
"term": "UBERON:0002108",
"name": "small intestine"
},
"digestive_6": {
"term": "UBERON:0001831",
"name": "parotid gland"
},
"digestive_7": {
"term": "UBERON:0001113",
"name": "lobe of liver"
},
"digestive_8": {
"term": "UBERON:0002107",
"name": "liver"
},
"digestive_9": {
"term": "UBERON:0001264",
"name": "pancreas"
},
"digestive_10": {
"term": "UBERON:0002106",
"name": "spleen"
},
"digestive_11": {
"term": "UBERON:0005020",
"name": "mucosa of tongue"
},
"digestive_12": {
"term": "UBERON:0001043",
"name": "esophagus"
},
"digestive_13": {
"term": "UBERON:0001153",
"name": "caecum"
},
"digestive_14": {
"term": "UBERON:0001156",
"name": "ascending colon"
},
"digestive_15": {
"term": "UBERON:0001157",
"name": "transverse colon"
},
"digestive_16": {
"term": "UBERON:0001158",
"name": "descending colon"
},
"digestive_17": {
"term": "UBERON:0001052",
"name": "rectum"
},
"digestive_18": {
"term": "UBERON:0001161",
"name": "body of stomach"
},
"digestive_19": {
"term": "UBERON:0001160",
"name": "fundus of stomach"
},
"digestive_21": {
"term": "UBERON:0001166",
"name": "pylorus"
},
"digestive_24": {
"term": "UBERON:0002116",
"name": "ileum"
},
"digestive_25": {
"term": "UBERON:0002115",
"name": "jejunum"
},
"digestive_26": {
"term": "UBERON:0002114",
"name": "duodenum"
},
"digestive_27": {
"term": "UBERON:0000167",
"name": "oral cavity"
},
"digestive_28": {
"term": "UBERON:0008972",
"name": "right colon"
},
"digestive_29": {
"term": "UBERON:0001157",
"name": "transverse colon"
},
"digestive_30": {
"term": "UBERON:0008971",
"name": "left colon"
},
"digestive_31": {
"term": "UBERON:0002110",
"name": "gall bladder"
},
"digestive_32": {
"term": "UBERON:0001159",
"name": "sigmoid colon"
},
"digestive_33": {
"term": "UBERON:0001736",
"name": "submandibular gland"
},
"digestive_34": {
"term": "UBERON:0001206",
"name": "serosa of small intestine"
},
"digestive_35": {
"term": "UBERON:0012402",
"name": "small intestine smooth muscle longitudinal layer"
},
"digestive_37": {
"term": "UBERON:0012401",
"name": "small intestine smooth muscle circular layer"
},
"digestive_39": {
"term": "UBERON:0001238",
"name": "lamina propria of small intestine"
},
"digestive_40": {
"term": "UBERON:0001902",
"name": "epithelium of small intestine"
},
"digestive_41": {
"term": "UBERON:0018543",
"name": "lumen of intestine"
},
"digestive_42": {
"term": "UBERON:0003454",
"name": "small intestine Peyer's patch"
},
"digestive_43": {
"term": "UBERON:0001210",
"name": "muscularis mucosae of small intestine"
},
"digestive_44": {
"term": "UBERON:0002394",
"name": "bile duct"
},
"digestive_45": {
"term": "ILX:0773760",
"name": "Circular Muscle Layer of Descending Colon"
},
"digestive_46": {
"term": "ILX:0770759",
"name": "Lamina Propria Mucosae of Descending Colon"
},
"digestive_48": {
"term": "ILX:0771089",
"name": "Serosa of Descending Colon"
},
"digestive_49": {
"term": "ILX:0776070",
"name": "Longitudinal Muscle Layer of Descending Colon"
},
"digestive_51": {
"term": "UBERON:0001211",
"name": "Peyer's Patch"
},
"digestive_52": {
"term": "UBERON:0035965",
"name": "Wall of Blood Vessel"
},
"digestive_53": {
"term": "UBERON:0001199",
"name": "Mucosa of Stomach"
},
"digestive_54": {
"term": "UBERON:0001200",
"name": "Submucosa of Stomach"
},
"digestive_55": {
"term": "UBERON:0008863",
"name": "Longitudinal Muscle of Stomach"
},
"digestive_56": {
"term": "UBERON:0008857",
"name": "Stomach Smooth Muscle Circular Layer"
},
"digestive_57": {
"term": "UBERON:0008862",
"name": "Oblique Muscle Layer of Stomach"
},
"digestive_58": {
"term": "UBERON:0001203",
"name": "Muscularis Mucosae of Stomach"
},
"digestive_59": {
"term": "UBERON:0001201",
"name": "Serosa of Stomach"
},
"digestive_60": {
"term": "UBERON:0001959",
"name": "White Pulp of Spleen"
},
"digestive_61": {
"term": "UBERON:0001250",
"name": "Red Pulp of Spleen"
},
"digestive_62": {
"term": "ILX:0793681",
"name": "Marginal zone network"
},
"digestive_63": {
"term": "UBERON:0001960",
"name": "Periarterial Lymphatic Sheath"
},
"digestive_64": {
"term": "UBERON:0010398",
"name": "Spleen Marginal Sinus"
},
"digestive_65": {
"term": "ILX:0793645",
"name": "Arteriole in Serosa of Descending Colon"
},
"digestive_66": {
"term": "ILX:0793643",
"name": "Arteriole in Longitudinal Muscle Layer of Descending Colon"
},
"digestive_67": {
"term": "ILX:0793644",
"name": "Arteriole in Myenteric Nerve Plexus of Descending Colon"
},
"digestive_68": {
"term": "ILX:0793641",
"name": "Arteriole in Circular Muscle Layer of Descending Colon"
},
"digestive_69": {
"term": "ILX:0793646",
"name": "Arteriole in Submucous Nerve Plexus of Descending Colon"
},
"digestive_70": {
"term": "ILX:0793642",
"name": "Arteriole in Lamina Propria of Mucosa of Descending Colon"
},
"digestive_71": {
"term": "UBERON:0001975",
"name": "Serosa of Esophagus"
},
"digestive_72": {
"term": "UBERON:0009961",
"name": "Esophagus Smooth Muscle Longitudinal Layer"
},
"digestive_73": {
"term": "UBERON:0001243",
"name": "Serosa of Intestine"
},
"digestive_74": {
"term": "UBERON:0004641",
"name": "Spleen Capsule"
},
"digestive_75": {
"term": "ILX:0793680",
"name": "Perimarginal Cavernous Sinus"
},
"digestive_76": {
"term": "UBERON:0038727",
"name": "Juxta-Intestinal Mesenteric Lymph Node"
},
"digestive_77": {
"term": "ILX:0793558",
"name": "Distal Stomach"
},
"digestive_78": {
"term": "ILX:0793658",
"name": "Proximal Stomach"
},
"digestive_79": {
"term": "UBERON:0001245",
"name": "Anus"
},
"digestive_80": {
"term": "UBERON:0005171",
"name": "Hepatic Duct"
},
"digestive_81": {
"term": "UBERON:0001152",
"name": "Cystic Duct"
},
"digestive_82": {
"term": "UBERON:0001174",
"name": "Common Bile Duct"
},
"digestive_83": {
"term": "UBERON:0013473",
"name": "Lower Esophagus"
},
"digestive_84": {
"term": "UBERON:0001263",
"name": "Pancreatic acinus"
},
"digestive_85": {
"term": "UBERON:0001832",
"name": "Sublingual gland"
},
"digestive_86": {
"term": "UBERON:0002059",
"name": "Submandibular ganglion"
},
"digestive_87": {
"term": "UBERON:0000483",
"name": "epithelium"
},
"digestive_88": {
"term": "UBERON:0000006",
"name": "Islet of langerhans"
},
"digestive_89": {
"term": "UBERON:0001193",
"name": "Hepatic artery"
},
"digestive_90": {
"term": "UBERON:0001194",
"name": "Splenic artery"
},
"digestive_91": {
"term": "UBERON:0001195",
"name": "Inferior pancreaticoduodenal artery"
},
"digestive_92": {
"term": "UBERON:0002017",
"name": "portal vein"
},
"digestive_93": {
"term": "ILX:0795342",
"name": "upper part of the anal canal"
},
"digestive_94": {
"term": "UBERON:0001902",
"name": "epithelium of small intestine"
},
"digestive_95": {
"term": "ILX:0771006",
"name": "wall of duodenum"
},
"digestive_96": {
"term": "UBERON:0014390",
"name": "muscle layer of ileum"
},
"digestive_97": {
"term": "UBERON:0012377",
"name": "muscle layer of jejunum"
},
"digestive_98": {
"term": "ILX:0773238",
"name": "Muscle layer of transverse colon"
},
"digestive_99": {
"term": "ILX:0795341",
"name": "muscle layer of proximal colon"
},
"digestive_100": {
"term": "UBERON:0005436",
"name": "common hepatic artery"
},
"digestive_101": {
"term": "UBERON:0011198",
"name": "muscle layer of large intestine"
},
"digestive_102": {
"term": "UBERON:0001278",
"name": "epithelium of large intestine"
},
"digestive_103": {
"term": "UBERON:0004222",
"name": "stomach smooth muscle"
},
"digestive_104": {
"term": "UBERON:8410061",
"name": "Longitudinal Muscle Layer of Colon"
},
"digestive_105": {
"term": "UBERON:0012419",
"name": "Taenia coli"
},
"digestive_106": {
"term": "UBERON:0003832",
"name": "esophagus muscle"
},
"digestive_107": {
"term": "UBERON:0004239",
"name": "small intestine smooth muscle"
},
"digestive_108": {
"term": "UBERON:0018111",
"name": "muscle layer of rectum"
},
"digestive_109": {
"term": "UBERON:0003354",
"name": "anal canal epithelium"
},
"digestive_110": {
"term": "UBERON:0012490",
"name": "muscle layer of anal canal"
},
"digestive_111": {
"term": "UBERON:0015716",
"name": "epithelium of rectum"
},
"digestive_112": {
"term": "UBERON:0002108",
"name": "small intestine"
},
"reproductive_1": {
"term": "UBERON:0000995",
"name": "uterus"
},
"reproductive_2": {
"term": "UBERON:0000996",
"name": "vagina"
},
"reproductive_3": {
"term": "UBERON:0000473",
"name": "testis"
},
"reproductive_4": {
"term": "UBERON:0000992",
"name": "ovary"
},
"reproductive_5": {
"term": "UBERON:0002367",
"name": "prostate gland"
},
"reproductive_6": {
"term": "UBERON:0002247",
"name": "uterine horn"
},
"reproductive_7": {
"term": "UBERON:0003885",
"name": "mesometrium"
},
"reproductive_8": {
"term": "UBERON:0003889",
"name": "fallopian tube"
},
"reproductive_9": {
"term": "UBERON:0001301",
"name": "epididymis"
},
"reproductive_10": {
"term": "UBERON:0000998",
"name": "seminal vesicle"
},
"reproductive_11": {
"term": "UBERON:0000997",
"name": "Mammalian Vulva"
},
"reproductive_12": {
"term": "UBERON:0001303",
"name": "Left Uterine Tube"
},
"reproductive_13": {
"term": "UBERON:0001302",
"name": "Right Uterine Tube"
},
"reproductive_14": {
"term": "UBERON:0003984",
"name": "Uterine Tube Infundibulum"
},
"reproductive_15": {
"term": "UBERON:0000002",
"name": "Uterine Cervix"
},
"reproductive_16": {
"term": "UBERON:0001295",
"name": "Endometrium"
},
"reproductive_17": {
"term": "UBERON:0001296",
"name": "Myometrium"
},
"reproductive_18": {
"term": "UBERON:0001190",
"name": "Ovarian artery"
},
"reproductive_19": {
"term": "UBERON:0002411",
"name": "Clitoris"
},
"reproductive_20": {
"term": "UBERON:0004223",
"name": "Vagina smooth muscle"
},
"reproductive_21": {
"term": "UBERON:0008331",
"name": "Clitoral smooth muscle"
},
"reproductive_22": {
"term": "UBERON:0001344",
"name": "Epithelium of Vagina"
},
"reproductive_23": {
"term": "UBERON:0009853",
"name": "Body of Uterus"
},
"reproductive_24": {
"term": "UBERON:0001981",
"name": "Blood vessel"
},
"reproductive_25": {
"term": "UBERON:0002119",
"name": "Left ovary"
},
"reproductive_26": {
"term": "UBERON:0002118",
"name": "Right ovary"
},
"reproductive_27": {
"term": "UBERON:0012648",
"name": "Ampulla of uterine tube"
},
"reproductive_28": {
"term": "UBERON:8410010",
"name": "Fimbria of uterine tube"
},
"reproductive_29": {
"term": "ILX:0794736",
"name": "Blood vessel of the isthmus of the Fallopian tube"
},
"reproductive_30": {
"term": "ILX:0794735",
"name": "Smooth muscle of the isthmus of the Fallopian tube"
},
"reproductive_31": {
"term": "UBERON:0002493",
"name": "Uterine artery"
},
"reproductive_32": {
"term": "UBERON:0004713",
"name": "Corpus cavernosum penis"
},
"reproductive_33": {
"term": "UBERON:0011183",
"name": "corpus spongiosum of penis"
},
"muscle_1": {
"term": "ILX:0738319",
"name": "T1-T2 intercostal muscle"
},
"muscle_2": {
"term": "UBERON:0001134",
"name": "skeletal muscle tissue"
},
"endocrine_1": {
"term": "UBERON:0002046",
"name": "thyroid gland"
},
"endocrine_2": {
"term": "UBERON:0002370",
"name": "thymus"
},
"endocrine_3": {
"term": "UBERON:0002369",
"name": "adrenal gland"
},
"endocrine_4": {
"term": "UBERON:0001235",
"name": "Adrenal Cortex"
},
"endocrine_5": {
"term": "UBERON:0001236",
"name": "adrenal medulla"
},
"endocrine_6": {
"term": "ILX:0102147",
"name": "Chromaffin cell"
},
"body_1": {
"term": "UBERON:0000019",
"name": "camera-type eye"
},
"body_2": {
"term": "UBERON:0006378",
"name": "strand of vibrissa hair"
},
"body_3": {
"term": "UBERON:0000978",
"name": "leg"
},
"body_4": {
"term": "UBERON:0002415",
"name": "tail"
},
"body_5": {
"term": "UBERON:0001690",
"name": "ear"
},
"body_6": {
"term": "UBERON:0013702",
"name": "body proper"
},
"body_7": {
"term": "UBERON:0000165",
"name": "mouth"
},
"body_8": {
"term": "UBERON:0001723",
"name": "tongue"
},
"body_9": {
"term": "UBERON:0001707",
"name": "Nasal Cavity"
},
"body_10": {
"term": "ILX:0738444",
"name": "Interscapular brown adipose tissue"
},
"body_11": {
"term": "UBERON:0001826",
"name": "Nasal cavity mucosa"
},
"eye_1": {
"term": "UBERON:0001817",
"name": "Lacrimal gland"
},
"eye_2": {
"term": "UBERON:0001697",
"name": "Orbit of Skull"
},
"eye_3": {
"term": "UBERON:0001769",
"name": "Iris"
},
"eye_4": {
"term": "UBERON:0001607",
"name": "Sphincter pupillae"
},
"eye_5": {
"term": "UBERON:0001605",
"name": "Ciliary muscle"
},
"circulatory_1": {
"term": "UBERON:0001981",
"name": "blood vessel"