| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Ontologies; |
|
2
|
|
|
|
|
|
|
|
|
3
|
3
|
|
|
3
|
|
20
|
use strict; |
|
|
3
|
|
|
|
|
7
|
|
|
|
3
|
|
|
|
|
131
|
|
|
4
|
3
|
|
|
3
|
|
15
|
use warnings; |
|
|
3
|
|
|
|
|
6
|
|
|
|
3
|
|
|
|
|
162
|
|
|
5
|
3
|
|
|
3
|
|
16
|
use Exporter 'import'; |
|
|
3
|
|
|
|
|
4
|
|
|
|
3
|
|
|
|
|
10549
|
|
|
6
|
|
|
|
|
|
|
our @EXPORT_OK = |
|
7
|
|
|
|
|
|
|
qw( $hpo_array $omim_array $rxnorm_array $ncit_procedures_array $ncit_exposures_array $ethnicity_array); |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
# Hard-coded for the sake of speed |
|
10
|
|
|
|
|
|
|
# 100 random entries |
|
11
|
|
|
|
|
|
|
our $hpo_array = [ |
|
12
|
|
|
|
|
|
|
{ id => 'HP:0000020', label => 'Urinary incontinence' }, |
|
13
|
|
|
|
|
|
|
{ id => 'HP:0000055', label => 'Abnormality of female external genitalia' }, |
|
14
|
|
|
|
|
|
|
{ id => 'HP:0000141', label => 'Amenorrhea' }, |
|
15
|
|
|
|
|
|
|
{ id => 'HP:0000553', label => 'Abnormal uvea morphology' }, |
|
16
|
|
|
|
|
|
|
{ id => 'HP:0000630', label => 'Abnormal retinal artery morphology' }, |
|
17
|
|
|
|
|
|
|
{ id => 'HP:0000632', label => 'Lacrimation abnormality' }, |
|
18
|
|
|
|
|
|
|
{ id => 'HP:0000729', label => 'Autistic behavior' }, |
|
19
|
|
|
|
|
|
|
{ id => 'HP:0000953', label => 'Hyperpigmentation of the skin' }, |
|
20
|
|
|
|
|
|
|
{ id => 'HP:0001300', label => 'Parkinsonism' }, |
|
21
|
|
|
|
|
|
|
{ |
|
22
|
|
|
|
|
|
|
id => 'HP:0001471', |
|
23
|
|
|
|
|
|
|
label => 'Aplasia/Hypoplasia of the musculature of the pelvis' |
|
24
|
|
|
|
|
|
|
}, |
|
25
|
|
|
|
|
|
|
{ id => 'HP:0001473', label => 'Metatarsal osteolysis' }, |
|
26
|
|
|
|
|
|
|
{ id => 'HP:0001609', label => 'Hoarse voice' }, |
|
27
|
|
|
|
|
|
|
{ id => 'HP:0001629', label => 'Ventricular septal defect' }, |
|
28
|
|
|
|
|
|
|
{ id => 'HP:0001730', label => 'Progressive hearing impairment' }, |
|
29
|
|
|
|
|
|
|
{ id => 'HP:0001874', label => 'Abnormality of neutrophils' }, |
|
30
|
|
|
|
|
|
|
{ id => 'HP:0002123', label => 'Generalized myoclonic seizure' }, |
|
31
|
|
|
|
|
|
|
{ id => 'HP:0002418', label => 'Abnormal midbrain morphology' }, |
|
32
|
|
|
|
|
|
|
{ id => 'HP:0002597', label => 'Abnormality of the vasculature' }, |
|
33
|
|
|
|
|
|
|
{ id => 'HP:0002857', label => 'Genu valgum' }, |
|
34
|
|
|
|
|
|
|
{ id => 'HP:0002863', label => 'Myelodysplasia' }, |
|
35
|
|
|
|
|
|
|
{ |
|
36
|
|
|
|
|
|
|
id => 'HP:0002963', |
|
37
|
|
|
|
|
|
|
label => 'Abnormal delayed hypersensitivity skin test' |
|
38
|
|
|
|
|
|
|
}, |
|
39
|
|
|
|
|
|
|
{ id => 'HP:0003174', label => 'Abnormality of the ischium' }, |
|
40
|
|
|
|
|
|
|
{ id => 'HP:0003366', label => 'Abnormal femoral neck/head morphology' }, |
|
41
|
|
|
|
|
|
|
{ id => 'HP:0003963', label => 'Lytic defects of the forearm bones' }, |
|
42
|
|
|
|
|
|
|
{ id => 'HP:0004150', label => 'Abnormal 3rd finger morphology' }, |
|
43
|
|
|
|
|
|
|
{ |
|
44
|
|
|
|
|
|
|
id => 'HP:0004362', |
|
45
|
|
|
|
|
|
|
label => 'Abnormality of enteric ganglion morphology' |
|
46
|
|
|
|
|
|
|
}, |
|
47
|
|
|
|
|
|
|
{ id => 'HP:0004736', label => 'Crossed fused renal ectopia' }, |
|
48
|
|
|
|
|
|
|
{ id => 'HP:0005035', label => 'Shortening of all phalanges of the toes' }, |
|
49
|
|
|
|
|
|
|
{ id => 'HP:0005656', label => 'Positional foot deformity' }, |
|
50
|
|
|
|
|
|
|
{ id => 'HP:0005830', label => 'Flexion contracture of toe' }, |
|
51
|
|
|
|
|
|
|
{ |
|
52
|
|
|
|
|
|
|
id => 'HP:0006817', |
|
53
|
|
|
|
|
|
|
label => 'Aplasia/Hypoplasia of the cerebellar vermis' |
|
54
|
|
|
|
|
|
|
}, |
|
55
|
|
|
|
|
|
|
{ id => 'HP:0007400', label => 'Irregular hyperpigmentation' }, |
|
56
|
|
|
|
|
|
|
{ id => 'HP:0008066', label => 'Abnormal blistering of the skin' }, |
|
57
|
|
|
|
|
|
|
{ id => 'HP:0008264', label => 'Neutrophil inclusion bodies' }, |
|
58
|
|
|
|
|
|
|
{ |
|
59
|
|
|
|
|
|
|
id => 'HP:0009138', |
|
60
|
|
|
|
|
|
|
label => 'Synostosis involving bones of the lower limbs' |
|
61
|
|
|
|
|
|
|
}, |
|
62
|
|
|
|
|
|
|
{ id => 'HP:0009404', label => 'Broad phalanges of the 4th finger' }, |
|
63
|
|
|
|
|
|
|
{ id => 'HP:0009412', label => 'Cone-shaped epiphyses of the 3rd finger' }, |
|
64
|
|
|
|
|
|
|
{ |
|
65
|
|
|
|
|
|
|
id => 'HP:0009421', |
|
66
|
|
|
|
|
|
|
label => 'Aplasia/Hypoplasia of the distal phalanx of the 3rd finger' |
|
67
|
|
|
|
|
|
|
}, |
|
68
|
|
|
|
|
|
|
{ id => 'HP:0009489', label => 'Bracket epiphyses of the 2nd finger' }, |
|
69
|
|
|
|
|
|
|
{ |
|
70
|
|
|
|
|
|
|
id => 'HP:0009500', |
|
71
|
|
|
|
|
|
|
label => |
|
72
|
|
|
|
|
|
|
'Abnormality of the epiphysis of the middle phalanx of the 2nd finger' |
|
73
|
|
|
|
|
|
|
}, |
|
74
|
|
|
|
|
|
|
{ |
|
75
|
|
|
|
|
|
|
id => 'HP:0009618', |
|
76
|
|
|
|
|
|
|
label => 'Abnormality of the proximal phalanx of the thumb' |
|
77
|
|
|
|
|
|
|
}, |
|
78
|
|
|
|
|
|
|
{ id => 'HP:0009810', label => 'Abnormality of upper limb joint' }, |
|
79
|
|
|
|
|
|
|
{ id => 'HP:0010160', label => 'Abnormal toe epiphysis morphology' }, |
|
80
|
|
|
|
|
|
|
{ id => 'HP:0010178', label => 'Patchy sclerosis of toe phalanx' }, |
|
81
|
|
|
|
|
|
|
{ |
|
82
|
|
|
|
|
|
|
id => 'HP:0010250', |
|
83
|
|
|
|
|
|
|
label => |
|
84
|
|
|
|
|
|
|
'Fragmentation of the epiphyses of the distal phalanges of the hand' |
|
85
|
|
|
|
|
|
|
}, |
|
86
|
|
|
|
|
|
|
{ id => 'HP:0010501', label => 'Limitation of knee mobility' }, |
|
87
|
|
|
|
|
|
|
{ id => 'HP:0010514', label => 'Hyperpituitarism' }, |
|
88
|
|
|
|
|
|
|
{ id => 'HP:0010784', label => 'Uterine neoplasm' }, |
|
89
|
|
|
|
|
|
|
{ id => 'HP:0010841', label => 'Multifocal epileptiform discharges' }, |
|
90
|
|
|
|
|
|
|
{ |
|
91
|
|
|
|
|
|
|
id => 'HP:0010930', |
|
92
|
|
|
|
|
|
|
label => 'Abnormal blood monovalent inorganic cation concentration' |
|
93
|
|
|
|
|
|
|
}, |
|
94
|
|
|
|
|
|
|
{ id => 'HP:0010969', label => 'Abnormality of glycolipid metabolism' }, |
|
95
|
|
|
|
|
|
|
{ id => 'HP:0011037', label => 'Decreased urine output' }, |
|
96
|
|
|
|
|
|
|
{ id => 'HP:0011123', label => 'Inflammatory abnormality of the skin' }, |
|
97
|
|
|
|
|
|
|
{ id => 'HP:0011176', label => 'EEG with constitutional variants' }, |
|
98
|
|
|
|
|
|
|
{ id => 'HP:0011315', label => 'Unicoronal synostosis' }, |
|
99
|
|
|
|
|
|
|
{ id => 'HP:0011488', label => 'Abnormal corneal endothelium morphology' }, |
|
100
|
|
|
|
|
|
|
{ id => 'HP:0011636', label => 'Abnormal coronary artery origin' }, |
|
101
|
|
|
|
|
|
|
{ id => 'HP:0012034', label => 'Liposarcoma' }, |
|
102
|
|
|
|
|
|
|
{ |
|
103
|
|
|
|
|
|
|
id => 'HP:0012092', |
|
104
|
|
|
|
|
|
|
label => 'Abnormality of exocrine pancreas physiology' |
|
105
|
|
|
|
|
|
|
}, |
|
106
|
|
|
|
|
|
|
{ id => 'HP:0012210', label => 'Abnormal renal morphology' }, |
|
107
|
|
|
|
|
|
|
{ id => 'HP:0012310', label => 'Abnormal monocyte count' }, |
|
108
|
|
|
|
|
|
|
{ id => 'HP:0012780', label => 'Neoplasm of the ear' }, |
|
109
|
|
|
|
|
|
|
{ id => 'HP:0012836', label => 'Spatial pattern' }, |
|
110
|
|
|
|
|
|
|
{ id => 'HP:0025429', label => 'Abnormal cry' }, |
|
111
|
|
|
|
|
|
|
{ id => 'HP:0025487', label => 'Abnormality of bladder morphology' }, |
|
112
|
|
|
|
|
|
|
{ id => 'HP:0025592', label => 'Superior oblique muscle weakness' }, |
|
113
|
|
|
|
|
|
|
{ id => 'HP:0025646', label => 'Bilateral polymicrogyria' }, |
|
114
|
|
|
|
|
|
|
{ id => 'HP:0030047', label => 'Abnormal lateral ventricle morphology' }, |
|
115
|
|
|
|
|
|
|
{ id => 'HP:0030113', label => 'Abnormal muscle fiber dysferlin' }, |
|
116
|
|
|
|
|
|
|
{ id => 'HP:0030119', label => 'Abnormal muscle fiber calpain-3' }, |
|
117
|
|
|
|
|
|
|
{ id => 'HP:0030493', label => 'Abnormality of foveal pigmentation' }, |
|
118
|
|
|
|
|
|
|
{ id => 'HP:0030604', label => 'Abnormal fundus fluorescein angiography' }, |
|
119
|
|
|
|
|
|
|
{ id => 'HP:0030746', label => 'Intraventricular hemorrhage' }, |
|
120
|
|
|
|
|
|
|
{ id => 'HP:0030828', label => 'Wheezing' }, |
|
121
|
|
|
|
|
|
|
{ id => 'HP:0031607', label => 'Pelvic organ prolapse' }, |
|
122
|
|
|
|
|
|
|
{ id => 'HP:0031704', label => 'Abnormal ear physiology' }, |
|
123
|
|
|
|
|
|
|
{ id => 'HP:0031753', label => 'Medial rectus muscle weakness' }, |
|
124
|
|
|
|
|
|
|
{ id => 'HP:0032011', label => 'Heterophoria' }, |
|
125
|
|
|
|
|
|
|
{ id => 'HP:0032184', label => 'Increased proportion of memory T cells' }, |
|
126
|
|
|
|
|
|
|
{ id => 'HP:0032422', label => 'Abnormal HDL2b concentration' }, |
|
127
|
|
|
|
|
|
|
{ id => 'HP:0032900', label => 'Focal manual automatism seizure' }, |
|
128
|
|
|
|
|
|
|
{ |
|
129
|
|
|
|
|
|
|
id => 'HP:0033095', |
|
130
|
|
|
|
|
|
|
label => 'Increased sulfur amino acid level in urine' |
|
131
|
|
|
|
|
|
|
}, |
|
132
|
|
|
|
|
|
|
{ id => 'HP:0033823', label => 'Mediastinal mass' }, |
|
133
|
|
|
|
|
|
|
{ id => 'HP:0034022', label => 'Anti-HLA-B antibody positivity' }, |
|
134
|
|
|
|
|
|
|
{ id => 'HP:0040195', label => 'Decreased head circumference' }, |
|
135
|
|
|
|
|
|
|
{ id => 'HP:0100569', label => 'Abnormally ossified vertebrae' }, |
|
136
|
|
|
|
|
|
|
{ id => 'HP:0100612', label => 'Odontogenic neoplasm' }, |
|
137
|
|
|
|
|
|
|
{ id => 'HP:0200040', label => 'Epidermoid cyst' }, |
|
138
|
|
|
|
|
|
|
{ id => 'HP:0200042', label => 'Skin ulcer' }, |
|
139
|
|
|
|
|
|
|
{ id => 'HP:0200065', label => 'Chorioretinal degeneration' }, |
|
140
|
|
|
|
|
|
|
{ id => 'HP:0200114', label => 'Metabolic alkalosis' }, |
|
141
|
|
|
|
|
|
|
{ id => 'HP:0200160', label => 'Agenesis of maxillary incisor' }, |
|
142
|
|
|
|
|
|
|
{ id => 'HP:0410033', label => 'Unilateral alveolar cleft of maxilla' }, |
|
143
|
|
|
|
|
|
|
{ id => 'HP:0500020', label => 'Abnormal cardiac biomarker test' }, |
|
144
|
|
|
|
|
|
|
{ id => 'HP:0500073', label => 'Abnormal ocular alignment' }, |
|
145
|
|
|
|
|
|
|
{ id => 'HP:0500093', label => 'Food allergy' }, |
|
146
|
|
|
|
|
|
|
{ |
|
147
|
|
|
|
|
|
|
id => 'HP:0500155', |
|
148
|
|
|
|
|
|
|
label => 'Abnormal circulating asparagine concentration' |
|
149
|
|
|
|
|
|
|
}, |
|
150
|
|
|
|
|
|
|
{ |
|
151
|
|
|
|
|
|
|
id => 'HP:0500158', |
|
152
|
|
|
|
|
|
|
label => 'Abnormal circulating aspartic acid concentration' |
|
153
|
|
|
|
|
|
|
}, |
|
154
|
|
|
|
|
|
|
{ |
|
155
|
|
|
|
|
|
|
id => 'HP:5200018', |
|
156
|
|
|
|
|
|
|
label => 'Abnormal movements of the upper extremities' |
|
157
|
|
|
|
|
|
|
}, |
|
158
|
|
|
|
|
|
|
{ id => 'HP:5200027', label => 'Abnormal social initiation' } |
|
159
|
|
|
|
|
|
|
]; |
|
160
|
|
|
|
|
|
|
|
|
161
|
|
|
|
|
|
|
# 100 random entries |
|
162
|
|
|
|
|
|
|
our $omim_array = [ |
|
163
|
|
|
|
|
|
|
{ id => 'OMIM:101000', label => 'Neurofibromatosis, type 2' }, |
|
164
|
|
|
|
|
|
|
{ id => 'OMIM:102578', label => 'Leukemia, acute promyelocytic, somatic' }, |
|
165
|
|
|
|
|
|
|
{ id => 'OMIM:103050', label => 'Adenylosuccinase deficiency' }, |
|
166
|
|
|
|
|
|
|
{ |
|
167
|
|
|
|
|
|
|
id => 'OMIM:103900', |
|
168
|
|
|
|
|
|
|
label => 'Aldosteronism, glucocorticoid-remediable' |
|
169
|
|
|
|
|
|
|
}, |
|
170
|
|
|
|
|
|
|
{ id => 'OMIM:104200', label => 'Alport syndrome, autosomal dominant' }, |
|
171
|
|
|
|
|
|
|
{ id => 'OMIM:104300', label => 'Alzheimer disease, susceptibility to' }, |
|
172
|
|
|
|
|
|
|
{ id => 'OMIM:105120', label => 'Amyloidosis, Finnish type' }, |
|
173
|
|
|
|
|
|
|
{ id => 'OMIM:105400', label => 'Amyotrophic lateral sclerosis 1' }, |
|
174
|
|
|
|
|
|
|
{ id => 'OMIM:105800', label => 'Aneurysm, intracranial berry, 1' }, |
|
175
|
|
|
|
|
|
|
{ id => 'OMIM:105830', label => 'Angelman syndrome' }, |
|
176
|
|
|
|
|
|
|
{ id => 'OMIM:108725', label => 'Atherosclerosis, susceptibility to' }, |
|
177
|
|
|
|
|
|
|
{ id => 'OMIM:108800', label => 'Atrial septal defect 1' }, |
|
178
|
|
|
|
|
|
|
{ id => 'OMIM:109800', label => 'Bladder cancer, somatic' }, |
|
179
|
|
|
|
|
|
|
{ id => 'OMIM:111200', label => 'Blood group, Auberger system' }, |
|
180
|
|
|
|
|
|
|
{ id => 'OMIM:111200', label => 'Blood group, Lutheran system' }, |
|
181
|
|
|
|
|
|
|
{ id => 'OMIM:111250', label => 'Blood group, Landsteiner-Wiener' }, |
|
182
|
|
|
|
|
|
|
{ id => 'OMIM:111800', label => 'Blood group, Stoltzfus system' }, |
|
183
|
|
|
|
|
|
|
{ id => 'OMIM:112100', label => 'Blood group, Yt system' }, |
|
184
|
|
|
|
|
|
|
{ id => 'OMIM:113970', label => 'Burkitt lymphoma' }, |
|
185
|
|
|
|
|
|
|
{ |
|
186
|
|
|
|
|
|
|
id => 'OMIM:114500', |
|
187
|
|
|
|
|
|
|
label => 'Colonic adenoma recurrence, reduced risk of' |
|
188
|
|
|
|
|
|
|
}, |
|
189
|
|
|
|
|
|
|
{ id => 'OMIM:114500', label => 'Colorectal cancer, susceptibility to' }, |
|
190
|
|
|
|
|
|
|
{ id => 'OMIM:114550', label => 'Hepatocellular carcinoma, somatic' }, |
|
191
|
|
|
|
|
|
|
{ id => 'OMIM:115665', label => 'Cataract 8, multiple types' }, |
|
192
|
|
|
|
|
|
|
{ id => 'OMIM:118450', label => 'Alagille syndrome 1' }, |
|
193
|
|
|
|
|
|
|
{ id => 'OMIM:121400', label => 'Cornea plana 1, autosomal dominant' }, |
|
194
|
|
|
|
|
|
|
{ id => 'OMIM:123320', label => 'Creatine phosphokinase, elevated serum' }, |
|
195
|
|
|
|
|
|
|
{ id => 'OMIM:125264', label => 'Leukemia, acute nonlymphocytic' }, |
|
196
|
|
|
|
|
|
|
{ id => 'OMIM:125853', label => 'Diabetes, type 2, susceptibility to' }, |
|
197
|
|
|
|
|
|
|
{ id => 'OMIM:125853', label => 'Insulin resistance, susceptibility to' }, |
|
198
|
|
|
|
|
|
|
{ id => 'OMIM:127300', label => 'Leri-Weill dyschondrosteosis' }, |
|
199
|
|
|
|
|
|
|
{ id => 'OMIM:127750', label => 'Lewy body dementia, susceptibility to' }, |
|
200
|
|
|
|
|
|
|
{ id => 'OMIM:130050', label => 'Ehlers-Danlos syndrome, type IV' }, |
|
201
|
|
|
|
|
|
|
{ id => 'OMIM:130060', label => 'Ehlers-Danlos syndrome, type VIIB' }, |
|
202
|
|
|
|
|
|
|
{ id => 'OMIM:130650', label => 'Beckwith-Wiedemann syndrome' }, |
|
203
|
|
|
|
|
|
|
{ id => 'OMIM:131100', label => 'Multiple endocrine neoplasia 1' }, |
|
204
|
|
|
|
|
|
|
{ id => 'OMIM:132100', label => 'Photoparoxysmal response 1' }, |
|
205
|
|
|
|
|
|
|
{ id => 'OMIM:133700', label => 'Exostoses, multiple, type 1' }, |
|
206
|
|
|
|
|
|
|
{ id => 'OMIM:134610', label => 'Familial Mediterranean fever, AD' }, |
|
207
|
|
|
|
|
|
|
{ id => 'OMIM:136120', label => 'Fish-eye disease' }, |
|
208
|
|
|
|
|
|
|
{ |
|
209
|
|
|
|
|
|
|
id => 'OMIM:137215', |
|
210
|
|
|
|
|
|
|
label => 'Gastric cancer risk after H. pylori infection' |
|
211
|
|
|
|
|
|
|
}, |
|
212
|
|
|
|
|
|
|
{ id => 'OMIM:137550', label => 'Spitz nevus or nevus spilus, somatic' }, |
|
213
|
|
|
|
|
|
|
{ id => 'OMIM:137580', label => 'Tourette syndrome' }, |
|
214
|
|
|
|
|
|
|
{ id => 'OMIM:139300', label => 'Aromatase excess syndrome' }, |
|
215
|
|
|
|
|
|
|
{ id => 'OMIM:140700', label => 'Heinz body anemias, beta-' }, |
|
216
|
|
|
|
|
|
|
{ id => 'OMIM:141200', label => 'Hematuria, benign familial' }, |
|
217
|
|
|
|
|
|
|
{ id => 'OMIM:141749', label => 'Delta-beta thalassemia' }, |
|
218
|
|
|
|
|
|
|
{ |
|
219
|
|
|
|
|
|
|
id => 'OMIM:141749', |
|
220
|
|
|
|
|
|
|
label => 'Hereditary persistence of fetal hemoglobin' |
|
221
|
|
|
|
|
|
|
}, |
|
222
|
|
|
|
|
|
|
{ id => 'OMIM:142335', label => 'Fetal hemoglobin QTL5' }, |
|
223
|
|
|
|
|
|
|
{ id => 'OMIM:142945', label => 'Holoprosencephaly 3' }, |
|
224
|
|
|
|
|
|
|
{ id => 'OMIM:143100', label => 'Huntington disease' }, |
|
225
|
|
|
|
|
|
|
{ |
|
226
|
|
|
|
|
|
|
id => 'OMIM:143465', |
|
227
|
|
|
|
|
|
|
label => 'Attention deficit-hyperactivity disorder' |
|
228
|
|
|
|
|
|
|
}, |
|
229
|
|
|
|
|
|
|
{ |
|
230
|
|
|
|
|
|
|
id => 'OMIM:143465', |
|
231
|
|
|
|
|
|
|
label => 'Attention deficit-hyperactivity disorder, susceptibility to' |
|
232
|
|
|
|
|
|
|
}, |
|
233
|
|
|
|
|
|
|
{ id => 'OMIM:143890', label => 'Hypercholesterolemia, familial' }, |
|
234
|
|
|
|
|
|
|
{ id => 'OMIM:143890', label => 'LDL cholesterol level QTL2' }, |
|
235
|
|
|
|
|
|
|
{ id => 'OMIM:144650', label => 'Hyperchylomicronemia, late-onset' }, |
|
236
|
|
|
|
|
|
|
{ id => 'OMIM:144700', label => 'Renal cell carcinoma' }, |
|
237
|
|
|
|
|
|
|
{ id => 'OMIM:145750', label => 'Hypertriglyceridemia, susceptibility to' }, |
|
238
|
|
|
|
|
|
|
{ id => 'OMIM:146200', label => 'Hypoparathyroidism, autosomal dominant' }, |
|
239
|
|
|
|
|
|
|
{ id => 'OMIM:146200', label => 'Hypoparathyroidism, autosomal recessive' }, |
|
240
|
|
|
|
|
|
|
{ id => 'OMIM:146510', label => 'Pallister-Hall syndrome' }, |
|
241
|
|
|
|
|
|
|
{ id => 'OMIM:147050', label => 'Atopy, susceptibility to' }, |
|
242
|
|
|
|
|
|
|
{ id => 'OMIM:147050', label => 'IgE, elevated level of' }, |
|
243
|
|
|
|
|
|
|
{ id => 'OMIM:147250', label => 'Single median maxillary central incisor' }, |
|
244
|
|
|
|
|
|
|
{ id => 'OMIM:147791', label => 'Jacobsen syndrome' }, |
|
245
|
|
|
|
|
|
|
{ id => 'OMIM:150699', label => 'Leiomyoma, uterine, somatic' }, |
|
246
|
|
|
|
|
|
|
{ id => 'OMIM:152700', label => 'Lupus nephritis, susceptibility to' }, |
|
247
|
|
|
|
|
|
|
{ id => 'OMIM:154800', label => 'Mast cell disease' }, |
|
248
|
|
|
|
|
|
|
{ id => 'OMIM:155240', label => 'Medullary thyroid carcinoma, familial' }, |
|
249
|
|
|
|
|
|
|
{ id => 'OMIM:155600', label => 'Melanoma, cutaneous malignant, 1' }, |
|
250
|
|
|
|
|
|
|
{ |
|
251
|
|
|
|
|
|
|
id => 'OMIM:157300', |
|
252
|
|
|
|
|
|
|
label => 'Migraine without aura, susceptibility to' |
|
253
|
|
|
|
|
|
|
}, |
|
254
|
|
|
|
|
|
|
{ id => 'OMIM:159900', label => 'Dystonia-11, myoclonic' }, |
|
255
|
|
|
|
|
|
|
{ id => 'OMIM:160900', label => 'Myotonic dystrophy 1' }, |
|
256
|
|
|
|
|
|
|
{ id => 'OMIM:162091', label => 'Schwannomatosis' }, |
|
257
|
|
|
|
|
|
|
{ |
|
258
|
|
|
|
|
|
|
id => 'OMIM:162900', |
|
259
|
|
|
|
|
|
|
label => 'Nevus sebaceous or woolly hair nevus, somatic' |
|
260
|
|
|
|
|
|
|
}, |
|
261
|
|
|
|
|
|
|
{ |
|
262
|
|
|
|
|
|
|
id => 'OMIM:163200', |
|
263
|
|
|
|
|
|
|
label => 'Schimmelpenning-Feuerstein-Mims syndrome, somatic mosaic' |
|
264
|
|
|
|
|
|
|
}, |
|
265
|
|
|
|
|
|
|
{ id => 'OMIM:166210', label => 'Osteogenesis imperfecta, type II' }, |
|
266
|
|
|
|
|
|
|
{ id => 'OMIM:166220', label => 'Osteogenesis imperfecta, type IV' }, |
|
267
|
|
|
|
|
|
|
{ id => 'OMIM:166710', label => 'Osteoporosis, postmenopausal' }, |
|
268
|
|
|
|
|
|
|
{ |
|
269
|
|
|
|
|
|
|
id => 'OMIM:166710', |
|
270
|
|
|
|
|
|
|
label => 'Osteoporosis, postmenopausal, susceptibility' |
|
271
|
|
|
|
|
|
|
}, |
|
272
|
|
|
|
|
|
|
{ id => 'OMIM:167210', label => 'Pachyonychia congenita 2' }, |
|
273
|
|
|
|
|
|
|
{ id => 'OMIM:167800', label => 'Pancreatitis, hereditary' }, |
|
274
|
|
|
|
|
|
|
{ id => 'OMIM:167800', label => 'Pancreatitis, idiopathic' }, |
|
275
|
|
|
|
|
|
|
{ |
|
276
|
|
|
|
|
|
|
id => 'OMIM:168600', |
|
277
|
|
|
|
|
|
|
label => 'Parkinson disease, late-onset, susceptibility to' |
|
278
|
|
|
|
|
|
|
}, |
|
279
|
|
|
|
|
|
|
{ id => 'OMIM:168600', label => 'Parkinson disease, susceptibility to' }, |
|
280
|
|
|
|
|
|
|
{ id => 'OMIM:170100', label => 'Prolidase deficiency' }, |
|
281
|
|
|
|
|
|
|
{ id => 'OMIM:171300', label => 'Pheochromocytoma, susceptibility to' }, |
|
282
|
|
|
|
|
|
|
{ id => 'OMIM:172700', label => 'Pick disease' }, |
|
283
|
|
|
|
|
|
|
{ id => 'OMIM:172800', label => 'Piebaldism' }, |
|
284
|
|
|
|
|
|
|
{ id => 'OMIM:174000', label => 'Medullary cystic kidney disease 1' }, |
|
285
|
|
|
|
|
|
|
{ id => 'OMIM:174200', label => 'Polydactyly, postaxial, types A1 and B' }, |
|
286
|
|
|
|
|
|
|
{ id => 'OMIM:174700', label => 'Polydactyly, preaxial, type IV' }, |
|
287
|
|
|
|
|
|
|
{ id => 'OMIM:175700', label => 'Greig cephalopolysyndactyly syndrome' }, |
|
288
|
|
|
|
|
|
|
{ id => 'OMIM:176310', label => 'Leukemia, acute pre-B-cell' }, |
|
289
|
|
|
|
|
|
|
{ id => 'OMIM:176807', label => 'Prostate cancer, hereditary' }, |
|
290
|
|
|
|
|
|
|
{ id => 'OMIM:177700', label => 'Glaucoma 1, open angle, P' }, |
|
291
|
|
|
|
|
|
|
{ |
|
292
|
|
|
|
|
|
|
id => 'OMIM:178500', |
|
293
|
|
|
|
|
|
|
label => 'Pulmonary fibrosis, idiopathic, susceptibility to' |
|
294
|
|
|
|
|
|
|
}, |
|
295
|
|
|
|
|
|
|
{ id => 'OMIM:180105', label => 'Retinitis pigmentosa 10' }, |
|
296
|
|
|
|
|
|
|
{ id => 'OMIM:180385', label => 'Leukemia, acute T-cell' }, |
|
297
|
|
|
|
|
|
|
{ id => 'OMIM:180849', label => 'Rubinstein-Taybi syndrome' }, |
|
298
|
|
|
|
|
|
|
{ id => 'OMIM:180860', label => 'Silver-Russell syndrome' } |
|
299
|
|
|
|
|
|
|
]; |
|
300
|
|
|
|
|
|
|
|
|
301
|
|
|
|
|
|
|
# 100 random entries |
|
302
|
|
|
|
|
|
|
our $rxnorm_array = [ |
|
303
|
|
|
|
|
|
|
{ |
|
304
|
|
|
|
|
|
|
id => 'RxNorm:1000000', |
|
305
|
|
|
|
|
|
|
label => |
|
306
|
|
|
|
|
|
|
'amlodipine 5 MG / hydrochlorothiazide 12.5 MG / olmesartan medoxomil 40 MG Oral Tablet [Tribenzor]' |
|
307
|
|
|
|
|
|
|
}, |
|
308
|
|
|
|
|
|
|
{ |
|
309
|
|
|
|
|
|
|
id => 'RxNorm:1000001', |
|
310
|
|
|
|
|
|
|
label => |
|
311
|
|
|
|
|
|
|
'amlodipine 5 MG / hydrochlorothiazide 25 MG / olmesartan medoxomil 40 MG Oral Tablet' |
|
312
|
|
|
|
|
|
|
}, |
|
313
|
|
|
|
|
|
|
{ |
|
314
|
|
|
|
|
|
|
id => 'RxNorm:1000005', |
|
315
|
|
|
|
|
|
|
label => |
|
316
|
|
|
|
|
|
|
'amlodipine 5 MG / hydrochlorothiazide 25 MG / olmesartan medoxomil 40 MG Oral Tablet [Tribenzor]' |
|
317
|
|
|
|
|
|
|
}, |
|
318
|
|
|
|
|
|
|
{ |
|
319
|
|
|
|
|
|
|
id => 'RxNorm:1000009', |
|
320
|
|
|
|
|
|
|
label => |
|
321
|
|
|
|
|
|
|
'dimethicone 100 MG/ML / miconazole nitrate 20 MG/ML / zinc oxide 100 MG/ML Topical Spray' |
|
322
|
|
|
|
|
|
|
}, |
|
323
|
|
|
|
|
|
|
{ id => 'RxNorm:1000048', label => 'doxepin 10 MG Oral Capsule' }, |
|
324
|
|
|
|
|
|
|
{ id => 'RxNorm:1000054', label => 'doxepin 10 MG/ML Oral Solution' }, |
|
325
|
|
|
|
|
|
|
{ id => 'RxNorm:1000058', label => 'doxepin 100 MG Oral Capsule' }, |
|
326
|
|
|
|
|
|
|
{ id => 'RxNorm:1000064', label => 'doxepin 150 MG Oral Capsule' }, |
|
327
|
|
|
|
|
|
|
{ id => 'RxNorm:1000070', label => 'doxepin 25 MG Oral Capsule' }, |
|
328
|
|
|
|
|
|
|
{ id => 'RxNorm:1000076', label => 'doxepin 50 MG Oral Capsule' }, |
|
329
|
|
|
|
|
|
|
{ |
|
330
|
|
|
|
|
|
|
id => 'RxNorm:1000085', |
|
331
|
|
|
|
|
|
|
label => 'alcaftadine 2.5 MG/ML Ophthalmic Solution' |
|
332
|
|
|
|
|
|
|
}, |
|
333
|
|
|
|
|
|
|
{ |
|
334
|
|
|
|
|
|
|
id => 'RxNorm:1000089', |
|
335
|
|
|
|
|
|
|
label => 'alcaftadine 2.5 MG/ML Ophthalmic Solution [Lastacaft]' |
|
336
|
|
|
|
|
|
|
}, |
|
337
|
|
|
|
|
|
|
{ |
|
338
|
|
|
|
|
|
|
id => 'RxNorm:1000091', |
|
339
|
|
|
|
|
|
|
label => 'doxepin hydrochloride 50 MG/ML Topical Cream' |
|
340
|
|
|
|
|
|
|
}, |
|
341
|
|
|
|
|
|
|
{ |
|
342
|
|
|
|
|
|
|
id => 'RxNorm:1000093', |
|
343
|
|
|
|
|
|
|
label => 'doxepin hydrochloride 50 MG/ML Topical Cream [Prudoxin]' |
|
344
|
|
|
|
|
|
|
}, |
|
345
|
|
|
|
|
|
|
{ |
|
346
|
|
|
|
|
|
|
id => 'RxNorm:1000095', |
|
347
|
|
|
|
|
|
|
label => 'doxepin hydrochloride 50 MG/ML Topical Cream [Zonalon]' |
|
348
|
|
|
|
|
|
|
}, |
|
349
|
|
|
|
|
|
|
{ id => 'RxNorm:1000097', label => 'doxepin 75 MG Oral Capsule' }, |
|
350
|
|
|
|
|
|
|
{ |
|
351
|
|
|
|
|
|
|
id => 'RxNorm:1000107', |
|
352
|
|
|
|
|
|
|
label => 'incobotulinumtoxinA 200 UNT Injection' |
|
353
|
|
|
|
|
|
|
}, |
|
354
|
|
|
|
|
|
|
{ |
|
355
|
|
|
|
|
|
|
id => 'RxNorm:1000114', |
|
356
|
|
|
|
|
|
|
label => 'medroxyprogesterone acetate 10 MG Oral Tablet' |
|
357
|
|
|
|
|
|
|
}, |
|
358
|
|
|
|
|
|
|
{ |
|
359
|
|
|
|
|
|
|
id => 'RxNorm:1000124', |
|
360
|
|
|
|
|
|
|
label => 'medroxyprogesterone acetate 10 MG Oral Tablet [Provera]' |
|
361
|
|
|
|
|
|
|
}, |
|
362
|
|
|
|
|
|
|
{ |
|
363
|
|
|
|
|
|
|
id => 'RxNorm:1000126', |
|
364
|
|
|
|
|
|
|
label => '1 ML medroxyprogesterone acetate 150 MG/ML Injection' |
|
365
|
|
|
|
|
|
|
}, |
|
366
|
|
|
|
|
|
|
{ |
|
367
|
|
|
|
|
|
|
id => 'RxNorm:1000128', |
|
368
|
|
|
|
|
|
|
label => |
|
369
|
|
|
|
|
|
|
'1 ML medroxyprogesterone acetate 150 MG/ML Injection [Depo-Provera]' |
|
370
|
|
|
|
|
|
|
}, |
|
371
|
|
|
|
|
|
|
{ |
|
372
|
|
|
|
|
|
|
id => 'RxNorm:1000131', |
|
373
|
|
|
|
|
|
|
label => 'medroxyprogesterone acetate 400 MG/ML Injectable Suspension' |
|
374
|
|
|
|
|
|
|
}, |
|
375
|
|
|
|
|
|
|
{ |
|
376
|
|
|
|
|
|
|
id => 'RxNorm:1000133', |
|
377
|
|
|
|
|
|
|
label => |
|
378
|
|
|
|
|
|
|
'medroxyprogesterone acetate 400 MG/ML Injectable Suspension [Depo-Provera]' |
|
379
|
|
|
|
|
|
|
}, |
|
380
|
|
|
|
|
|
|
{ |
|
381
|
|
|
|
|
|
|
id => 'RxNorm:1000135', |
|
382
|
|
|
|
|
|
|
label => 'medroxyprogesterone acetate 2.5 MG Oral Tablet' |
|
383
|
|
|
|
|
|
|
}, |
|
384
|
|
|
|
|
|
|
{ |
|
385
|
|
|
|
|
|
|
id => 'RxNorm:1000139', |
|
386
|
|
|
|
|
|
|
label => 'medroxyprogesterone acetate 2.5 MG Oral Tablet [Provera]' |
|
387
|
|
|
|
|
|
|
}, |
|
388
|
|
|
|
|
|
|
{ |
|
389
|
|
|
|
|
|
|
id => 'RxNorm:1000141', |
|
390
|
|
|
|
|
|
|
label => 'medroxyprogesterone acetate 5 MG Oral Tablet' |
|
391
|
|
|
|
|
|
|
}, |
|
392
|
|
|
|
|
|
|
{ |
|
393
|
|
|
|
|
|
|
id => 'RxNorm:1000145', |
|
394
|
|
|
|
|
|
|
label => 'medroxyprogesterone acetate 5 MG Oral Tablet [Provera]' |
|
395
|
|
|
|
|
|
|
}, |
|
396
|
|
|
|
|
|
|
{ |
|
397
|
|
|
|
|
|
|
id => 'RxNorm:1000153', |
|
398
|
|
|
|
|
|
|
label => '1 ML medroxyprogesterone acetate 150 MG/ML Prefilled Syringe' |
|
399
|
|
|
|
|
|
|
}, |
|
400
|
|
|
|
|
|
|
{ |
|
401
|
|
|
|
|
|
|
id => 'RxNorm:1000154', |
|
402
|
|
|
|
|
|
|
label => |
|
403
|
|
|
|
|
|
|
'1 ML medroxyprogesterone acetate 150 MG/ML Prefilled Syringe [Depo-Provera]' |
|
404
|
|
|
|
|
|
|
}, |
|
405
|
|
|
|
|
|
|
{ |
|
406
|
|
|
|
|
|
|
id => 'RxNorm:1000156', |
|
407
|
|
|
|
|
|
|
label => |
|
408
|
|
|
|
|
|
|
'0.65 ML medroxyprogesterone acetate 160 MG/ML Prefilled Syringe' |
|
409
|
|
|
|
|
|
|
}, |
|
410
|
|
|
|
|
|
|
{ |
|
411
|
|
|
|
|
|
|
id => 'RxNorm:1000158', |
|
412
|
|
|
|
|
|
|
label => |
|
413
|
|
|
|
|
|
|
'0.65 ML medroxyprogesterone acetate 160 MG/ML Prefilled Syringe [depo-subQ provera]' |
|
414
|
|
|
|
|
|
|
}, |
|
415
|
|
|
|
|
|
|
{ |
|
416
|
|
|
|
|
|
|
id => 'RxNorm:1000351', |
|
417
|
|
|
|
|
|
|
label => |
|
418
|
|
|
|
|
|
|
'estrogens, conjugated (USP) 0.3 MG / medroxyprogesterone acetate 1.5 MG Oral Tablet' |
|
419
|
|
|
|
|
|
|
}, |
|
420
|
|
|
|
|
|
|
{ |
|
421
|
|
|
|
|
|
|
id => 'RxNorm:1000352', |
|
422
|
|
|
|
|
|
|
label => |
|
423
|
|
|
|
|
|
|
'estrogens, conjugated (USP) 0.45 MG / medroxyprogesterone acetate 1.5 MG Oral Tablet' |
|
424
|
|
|
|
|
|
|
}, |
|
425
|
|
|
|
|
|
|
{ |
|
426
|
|
|
|
|
|
|
id => 'RxNorm:1000355', |
|
427
|
|
|
|
|
|
|
label => |
|
428
|
|
|
|
|
|
|
'estrogens, conjugated (USP) 0.625 MG / medroxyprogesterone acetate 2.5 MG Oral Tablet' |
|
429
|
|
|
|
|
|
|
}, |
|
430
|
|
|
|
|
|
|
{ |
|
431
|
|
|
|
|
|
|
id => 'RxNorm:1000356', |
|
432
|
|
|
|
|
|
|
label => |
|
433
|
|
|
|
|
|
|
'estrogens, conjugated (USP) 0.625 MG / medroxyprogesterone acetate 5 MG Oral Tablet' |
|
434
|
|
|
|
|
|
|
}, |
|
435
|
|
|
|
|
|
|
{ |
|
436
|
|
|
|
|
|
|
id => 'RxNorm:1000395', |
|
437
|
|
|
|
|
|
|
label => |
|
438
|
|
|
|
|
|
|
'{28 (estrogens, conjugated (USP) 0.625 MG / medroxyprogesterone acetate 2.5 MG Oral Tablet) } Pack' |
|
439
|
|
|
|
|
|
|
}, |
|
440
|
|
|
|
|
|
|
{ |
|
441
|
|
|
|
|
|
|
id => 'RxNorm:1000398', |
|
442
|
|
|
|
|
|
|
label => |
|
443
|
|
|
|
|
|
|
'{28 (estrogens, conjugated (USP) 0.625 MG / medroxyprogesterone acetate 5 MG Oral Tablet) } Pack' |
|
444
|
|
|
|
|
|
|
}, |
|
445
|
|
|
|
|
|
|
{ |
|
446
|
|
|
|
|
|
|
id => 'RxNorm:1000405', |
|
447
|
|
|
|
|
|
|
label => 'norethindrone acetate 5 MG Oral Tablet' |
|
448
|
|
|
|
|
|
|
}, |
|
449
|
|
|
|
|
|
|
{ |
|
450
|
|
|
|
|
|
|
id => 'RxNorm:1000407', |
|
451
|
|
|
|
|
|
|
label => 'norethindrone acetate 5 MG Oral Tablet [Aygestin]' |
|
452
|
|
|
|
|
|
|
}, |
|
453
|
|
|
|
|
|
|
{ |
|
454
|
|
|
|
|
|
|
id => 'RxNorm:1000479', |
|
455
|
|
|
|
|
|
|
label => |
|
456
|
|
|
|
|
|
|
'{1 (bisacodyl 5 MG Delayed Release Oral Tablet) / 1 (2000 ML) (polyethylene glycol 3350 210000 MG / potassium chloride 740 MG / sodium bicarbonate 2860 MG / sodium chloride 5600 MG Powder for Oral Solution) } Pack' |
|
457
|
|
|
|
|
|
|
}, |
|
458
|
|
|
|
|
|
|
{ |
|
459
|
|
|
|
|
|
|
id => 'RxNorm:1000486', |
|
460
|
|
|
|
|
|
|
label => |
|
461
|
|
|
|
|
|
|
'{14 (estrogens, conjugated (USP) 0.625 MG / medroxyprogesterone acetate 5 MG Oral Tablet) / 14 (estrogens, conjugated (USP) 0.625 MG Oral Tablet) } Pack' |
|
462
|
|
|
|
|
|
|
}, |
|
463
|
|
|
|
|
|
|
{ |
|
464
|
|
|
|
|
|
|
id => 'RxNorm:1000487', |
|
465
|
|
|
|
|
|
|
label => |
|
466
|
|
|
|
|
|
|
'{14 (estrogens, conjugated (USP) 0.625 MG / medroxyprogesterone acetate 5 MG Oral Tablet) / 14 (estrogens, conjugated (USP) 0.625 MG Oral Tablet) } Pack [Premphase 28 Day]' |
|
467
|
|
|
|
|
|
|
}, |
|
468
|
|
|
|
|
|
|
{ |
|
469
|
|
|
|
|
|
|
id => 'RxNorm:1000490', |
|
470
|
|
|
|
|
|
|
label => |
|
471
|
|
|
|
|
|
|
'{28 (estrogens, conjugated (USP) 0.3 MG / medroxyprogesterone acetate 1.5 MG Oral Tablet) } Pack' |
|
472
|
|
|
|
|
|
|
}, |
|
473
|
|
|
|
|
|
|
{ |
|
474
|
|
|
|
|
|
|
id => 'RxNorm:1000491', |
|
475
|
|
|
|
|
|
|
label => |
|
476
|
|
|
|
|
|
|
'{28 (estrogens, conjugated (USP) 0.3 MG / medroxyprogesterone acetate 1.5 MG Oral Tablet) } Pack [Prempro 0.3/1.5 28 Day]' |
|
477
|
|
|
|
|
|
|
}, |
|
478
|
|
|
|
|
|
|
{ id => 'RxNorm:1000495', label => 'resveratrol 250 MG Oral Capsule' }, |
|
479
|
|
|
|
|
|
|
{ |
|
480
|
|
|
|
|
|
|
id => 'RxNorm:1000496', |
|
481
|
|
|
|
|
|
|
label => |
|
482
|
|
|
|
|
|
|
'{28 (estrogens, conjugated (USP) 0.45 MG / medroxyprogesterone acetate 1.5 MG Oral Tablet) } Pack' |
|
483
|
|
|
|
|
|
|
}, |
|
484
|
|
|
|
|
|
|
{ |
|
485
|
|
|
|
|
|
|
id => 'RxNorm:1000497', |
|
486
|
|
|
|
|
|
|
label => |
|
487
|
|
|
|
|
|
|
'{28 (estrogens, conjugated (USP) 0.45 MG / medroxyprogesterone acetate 1.5 MG Oral Tablet) } Pack [Prempro 0.45/1.5 28 Day]' |
|
488
|
|
|
|
|
|
|
}, |
|
489
|
|
|
|
|
|
|
{ |
|
490
|
|
|
|
|
|
|
id => 'RxNorm:1000499', |
|
491
|
|
|
|
|
|
|
label => |
|
492
|
|
|
|
|
|
|
'{28 (estrogens, conjugated (USP) 0.625 MG / medroxyprogesterone acetate 2.5 MG Oral Tablet) } Pack [Prempro 0.625/2.5 28 Day]' |
|
493
|
|
|
|
|
|
|
}, |
|
494
|
|
|
|
|
|
|
{ |
|
495
|
|
|
|
|
|
|
id => 'RxNorm:1000500', |
|
496
|
|
|
|
|
|
|
label => |
|
497
|
|
|
|
|
|
|
'{28 (estrogens, conjugated (USP) 0.625 MG / medroxyprogesterone acetate 5 MG Oral Tablet) } Pack [Prempro 0.625/5 28 Day]' |
|
498
|
|
|
|
|
|
|
}, |
|
499
|
|
|
|
|
|
|
{ |
|
500
|
|
|
|
|
|
|
id => 'RxNorm:1000502', |
|
501
|
|
|
|
|
|
|
label => |
|
502
|
|
|
|
|
|
|
'dextromethorphan hydrobromide 6 MG/ML / guaifenesin 40 MG/ML / phenylephrine hydrochloride 1.5 MG/ML Oral Solution' |
|
503
|
|
|
|
|
|
|
}, |
|
504
|
|
|
|
|
|
|
{ |
|
505
|
|
|
|
|
|
|
id => 'RxNorm:1000556', |
|
506
|
|
|
|
|
|
|
label => |
|
507
|
|
|
|
|
|
|
'fluorometholone 1 MG/ML / sulfacetamide sodium 100 MG/ML Ophthalmic Suspension' |
|
508
|
|
|
|
|
|
|
}, |
|
509
|
|
|
|
|
|
|
{ |
|
510
|
|
|
|
|
|
|
id => 'RxNorm:1000558', |
|
511
|
|
|
|
|
|
|
label => |
|
512
|
|
|
|
|
|
|
'fluorometholone 1 MG/ML / sulfacetamide sodium 100 MG/ML Ophthalmic Suspension [FML-S]' |
|
513
|
|
|
|
|
|
|
}, |
|
514
|
|
|
|
|
|
|
{ |
|
515
|
|
|
|
|
|
|
id => 'RxNorm:1000636', |
|
516
|
|
|
|
|
|
|
label => 'dimethicone 12.5 MG/ML Topical Lotion' |
|
517
|
|
|
|
|
|
|
}, |
|
518
|
|
|
|
|
|
|
{ |
|
519
|
|
|
|
|
|
|
id => 'RxNorm:1000647', |
|
520
|
|
|
|
|
|
|
label => 'pilocarpine hydrochloride 10 MG/ML Ophthalmic Solution' |
|
521
|
|
|
|
|
|
|
}, |
|
522
|
|
|
|
|
|
|
{ |
|
523
|
|
|
|
|
|
|
id => 'RxNorm:1000656', |
|
524
|
|
|
|
|
|
|
label => |
|
525
|
|
|
|
|
|
|
'pilocarpine hydrochloride 10 MG/ML Ophthalmic Solution [Isoptocarpine]' |
|
526
|
|
|
|
|
|
|
}, |
|
527
|
|
|
|
|
|
|
{ |
|
528
|
|
|
|
|
|
|
id => 'RxNorm:1000660', |
|
529
|
|
|
|
|
|
|
label => |
|
530
|
|
|
|
|
|
|
'pilocarpine hydrochloride 10 MG/ML Ophthalmic Solution [Pilocar]' |
|
531
|
|
|
|
|
|
|
}, |
|
532
|
|
|
|
|
|
|
{ |
|
533
|
|
|
|
|
|
|
id => 'RxNorm:1000673', |
|
534
|
|
|
|
|
|
|
label => 'sulfacetamide sodium 0.1 MG/MG Ophthalmic Ointment' |
|
535
|
|
|
|
|
|
|
}, |
|
536
|
|
|
|
|
|
|
{ |
|
537
|
|
|
|
|
|
|
id => 'RxNorm:1000713', |
|
538
|
|
|
|
|
|
|
label => 'sulfacetamide sodium 0.1 MG/MG Topical Gel' |
|
539
|
|
|
|
|
|
|
}, |
|
540
|
|
|
|
|
|
|
{ |
|
541
|
|
|
|
|
|
|
id => 'RxNorm:1000720', |
|
542
|
|
|
|
|
|
|
label => |
|
543
|
|
|
|
|
|
|
'sulfacetamide sodium 100 MG/ML / sulfur 10 MG/ML Medicated Liquid Soap [BP 10-Wash]' |
|
544
|
|
|
|
|
|
|
}, |
|
545
|
|
|
|
|
|
|
{ |
|
546
|
|
|
|
|
|
|
id => 'RxNorm:1000731', |
|
547
|
|
|
|
|
|
|
label => |
|
548
|
|
|
|
|
|
|
'sulfacetamide sodium 100 MG/ML / sulfur 20 MG/ML Topical Cream' |
|
549
|
|
|
|
|
|
|
}, |
|
550
|
|
|
|
|
|
|
{ |
|
551
|
|
|
|
|
|
|
id => 'RxNorm:1000736', |
|
552
|
|
|
|
|
|
|
label => |
|
553
|
|
|
|
|
|
|
'sulfacetamide sodium 100 MG/ML / sulfur 20 MG/ML Topical Cream [Avar]' |
|
554
|
|
|
|
|
|
|
}, |
|
555
|
|
|
|
|
|
|
{ |
|
556
|
|
|
|
|
|
|
id => 'RxNorm:1000859', |
|
557
|
|
|
|
|
|
|
label => |
|
558
|
|
|
|
|
|
|
'sulfacetamide sodium 100 MG/ML / sulfur 40 MG/ML Medicated Liquid Soap' |
|
559
|
|
|
|
|
|
|
}, |
|
560
|
|
|
|
|
|
|
{ |
|
561
|
|
|
|
|
|
|
id => 'RxNorm:1000861', |
|
562
|
|
|
|
|
|
|
label => |
|
563
|
|
|
|
|
|
|
'sulfacetamide sodium 100 MG/ML / sulfur 40 MG/ML Medicated Liquid Soap [BP Cleansing Wash]' |
|
564
|
|
|
|
|
|
|
}, |
|
565
|
|
|
|
|
|
|
{ |
|
566
|
|
|
|
|
|
|
id => 'RxNorm:1000862', |
|
567
|
|
|
|
|
|
|
label => 'pilocarpine hydrochloride 20 MG/ML Ophthalmic Solution' |
|
568
|
|
|
|
|
|
|
}, |
|
569
|
|
|
|
|
|
|
{ |
|
570
|
|
|
|
|
|
|
id => 'RxNorm:1000870', |
|
571
|
|
|
|
|
|
|
label => |
|
572
|
|
|
|
|
|
|
'pilocarpine hydrochloride 20 MG/ML Ophthalmic Solution [Isoptocarpine]' |
|
573
|
|
|
|
|
|
|
}, |
|
574
|
|
|
|
|
|
|
{ |
|
575
|
|
|
|
|
|
|
id => 'RxNorm:1000876', |
|
576
|
|
|
|
|
|
|
label => |
|
577
|
|
|
|
|
|
|
'pilocarpine hydrochloride 20 MG/ML Ophthalmic Solution [Pilocar]' |
|
578
|
|
|
|
|
|
|
}, |
|
579
|
|
|
|
|
|
|
{ |
|
580
|
|
|
|
|
|
|
id => 'RxNorm:1000895', |
|
581
|
|
|
|
|
|
|
label => |
|
582
|
|
|
|
|
|
|
'sulfacetamide sodium 100 MG/ML / sulfur 20 MG/ML Medicated Liquid Soap' |
|
583
|
|
|
|
|
|
|
}, |
|
584
|
|
|
|
|
|
|
{ |
|
585
|
|
|
|
|
|
|
id => 'RxNorm:1000897', |
|
586
|
|
|
|
|
|
|
label => 'pilocarpine hydrochloride 40 MG/ML Ophthalmic Solution' |
|
587
|
|
|
|
|
|
|
}, |
|
588
|
|
|
|
|
|
|
{ |
|
589
|
|
|
|
|
|
|
id => 'RxNorm:1000903', |
|
590
|
|
|
|
|
|
|
label => |
|
591
|
|
|
|
|
|
|
'pilocarpine hydrochloride 40 MG/ML Ophthalmic Solution [Isoptocarpine]' |
|
592
|
|
|
|
|
|
|
}, |
|
593
|
|
|
|
|
|
|
{ |
|
594
|
|
|
|
|
|
|
id => 'RxNorm:1000907', |
|
595
|
|
|
|
|
|
|
label => |
|
596
|
|
|
|
|
|
|
'pilocarpine hydrochloride 40 MG/ML Ophthalmic Solution [Pilocar]' |
|
597
|
|
|
|
|
|
|
}, |
|
598
|
|
|
|
|
|
|
{ |
|
599
|
|
|
|
|
|
|
id => 'RxNorm:1000913', |
|
600
|
|
|
|
|
|
|
label => 'pilocarpine hydrochloride 5 MG Oral Tablet' |
|
601
|
|
|
|
|
|
|
}, |
|
602
|
|
|
|
|
|
|
{ |
|
603
|
|
|
|
|
|
|
id => 'RxNorm:1000915', |
|
604
|
|
|
|
|
|
|
label => 'pilocarpine hydrochloride 5 MG Oral Tablet [Salagen]' |
|
605
|
|
|
|
|
|
|
}, |
|
606
|
|
|
|
|
|
|
{ |
|
607
|
|
|
|
|
|
|
id => 'RxNorm:1000946', |
|
608
|
|
|
|
|
|
|
label => |
|
609
|
|
|
|
|
|
|
'sulfacetamide sodium 100 MG/ML / sulfur 40 MG/ML Medicated Pad' |
|
610
|
|
|
|
|
|
|
}, |
|
611
|
|
|
|
|
|
|
{ |
|
612
|
|
|
|
|
|
|
id => 'RxNorm:1000976', |
|
613
|
|
|
|
|
|
|
label => |
|
614
|
|
|
|
|
|
|
'sulfacetamide sodium 100 MG/ML / sulfur 40 MG/ML Medicated Pad [Sumaxin]' |
|
615
|
|
|
|
|
|
|
}, |
|
616
|
|
|
|
|
|
|
{ |
|
617
|
|
|
|
|
|
|
id => 'RxNorm:1000981', |
|
618
|
|
|
|
|
|
|
label => 'oxymetazoline hydrochloride 0.25 MG/ML Ophthalmic Solution' |
|
619
|
|
|
|
|
|
|
}, |
|
620
|
|
|
|
|
|
|
{ |
|
621
|
|
|
|
|
|
|
id => 'RxNorm:1000990', |
|
622
|
|
|
|
|
|
|
label => 'oxymetazoline hydrochloride 0.5 MG/ML Nasal Spray' |
|
623
|
|
|
|
|
|
|
}, |
|
624
|
|
|
|
|
|
|
{ |
|
625
|
|
|
|
|
|
|
id => 'RxNorm:1000992', |
|
626
|
|
|
|
|
|
|
label => 'oxymetazoline hydrochloride 0.5 MG/ML Nasal Spray [Afrin]' |
|
627
|
|
|
|
|
|
|
}, |
|
628
|
|
|
|
|
|
|
{ |
|
629
|
|
|
|
|
|
|
id => 'RxNorm:1000994', |
|
630
|
|
|
|
|
|
|
label => |
|
631
|
|
|
|
|
|
|
'oxymetazoline hydrochloride 0.5 MG/ML Nasal Spray [Allerest 12 Hour Nasal Spray]' |
|
632
|
|
|
|
|
|
|
}, |
|
633
|
|
|
|
|
|
|
{ |
|
634
|
|
|
|
|
|
|
id => 'RxNorm:1000996', |
|
635
|
|
|
|
|
|
|
label => |
|
636
|
|
|
|
|
|
|
'oxymetazoline hydrochloride 0.5 MG/ML Nasal Spray [Dristan 12-Hour Nasal Spray]' |
|
637
|
|
|
|
|
|
|
}, |
|
638
|
|
|
|
|
|
|
{ |
|
639
|
|
|
|
|
|
|
id => 'RxNorm:1001002', |
|
640
|
|
|
|
|
|
|
label => |
|
641
|
|
|
|
|
|
|
'oxymetazoline hydrochloride 0.5 MG/ML Nasal Spray [Duramist Plus]' |
|
642
|
|
|
|
|
|
|
}, |
|
643
|
|
|
|
|
|
|
{ |
|
644
|
|
|
|
|
|
|
id => 'RxNorm:1001004', |
|
645
|
|
|
|
|
|
|
label => 'pilocarpine hydrochloride 7.5 MG Oral Tablet' |
|
646
|
|
|
|
|
|
|
}, |
|
647
|
|
|
|
|
|
|
{ |
|
648
|
|
|
|
|
|
|
id => 'RxNorm:1001006', |
|
649
|
|
|
|
|
|
|
label => 'pilocarpine hydrochloride 7.5 MG Oral Tablet [Salagen]' |
|
650
|
|
|
|
|
|
|
}, |
|
651
|
|
|
|
|
|
|
{ |
|
652
|
|
|
|
|
|
|
id => 'RxNorm:1001054', |
|
653
|
|
|
|
|
|
|
label => |
|
654
|
|
|
|
|
|
|
'oxymetazoline hydrochloride 0.5 MG/ML Nasal Spray [Neo-Synephrine 12 Hour]' |
|
655
|
|
|
|
|
|
|
}, |
|
656
|
|
|
|
|
|
|
{ |
|
657
|
|
|
|
|
|
|
id => 'RxNorm:1001058', |
|
658
|
|
|
|
|
|
|
label => 'oxymetazoline hydrochloride 0.5 MG/ML Nasal Spray [Nostrilla]' |
|
659
|
|
|
|
|
|
|
}, |
|
660
|
|
|
|
|
|
|
{ |
|
661
|
|
|
|
|
|
|
id => 'RxNorm:1001066', |
|
662
|
|
|
|
|
|
|
label => |
|
663
|
|
|
|
|
|
|
'oxymetazoline hydrochloride 0.5 MG/ML Nasal Spray [Sinex Long-Acting]' |
|
664
|
|
|
|
|
|
|
}, |
|
665
|
|
|
|
|
|
|
{ |
|
666
|
|
|
|
|
|
|
id => 'RxNorm:1001084', |
|
667
|
|
|
|
|
|
|
label => |
|
668
|
|
|
|
|
|
|
'oxymetazoline hydrochloride 0.5 MG/ML Nasal Spray [Zicam Sinus Relief]' |
|
669
|
|
|
|
|
|
|
}, |
|
670
|
|
|
|
|
|
|
{ |
|
671
|
|
|
|
|
|
|
id => 'RxNorm:1001405', |
|
672
|
|
|
|
|
|
|
label => 'docetaxel 20 MG/ML Injectable Solution' |
|
673
|
|
|
|
|
|
|
}, |
|
674
|
|
|
|
|
|
|
{ |
|
675
|
|
|
|
|
|
|
id => 'RxNorm:1001409', |
|
676
|
|
|
|
|
|
|
label => 'calcium carbonate 625 MG / ergocalciferol 125 UNT Oral Tablet' |
|
677
|
|
|
|
|
|
|
}, |
|
678
|
|
|
|
|
|
|
{ |
|
679
|
|
|
|
|
|
|
id => 'RxNorm:1001433', |
|
680
|
|
|
|
|
|
|
label => '1.5 ML cabazitaxel 40 MG/ML Injection' |
|
681
|
|
|
|
|
|
|
}, |
|
682
|
|
|
|
|
|
|
{ |
|
683
|
|
|
|
|
|
|
id => 'RxNorm:1001437', |
|
684
|
|
|
|
|
|
|
label => 'caffeine 50 MG / magnesium salicylate 162.5 MG Oral Tablet' |
|
685
|
|
|
|
|
|
|
}, |
|
686
|
|
|
|
|
|
|
{ |
|
687
|
|
|
|
|
|
|
id => 'RxNorm:1001476', |
|
688
|
|
|
|
|
|
|
label => 'aspirin 325 MG Delayed Release Oral Tablet [Ecpirin]' |
|
689
|
|
|
|
|
|
|
}, |
|
690
|
|
|
|
|
|
|
{ |
|
691
|
|
|
|
|
|
|
id => 'RxNorm:1001591', |
|
692
|
|
|
|
|
|
|
label => |
|
693
|
|
|
|
|
|
|
'fibrinogen, human 337 MG / thrombin, human 123 UNT Medicated Patch' |
|
694
|
|
|
|
|
|
|
}, |
|
695
|
|
|
|
|
|
|
{ |
|
696
|
|
|
|
|
|
|
id => 'RxNorm:1001593', |
|
697
|
|
|
|
|
|
|
label => |
|
698
|
|
|
|
|
|
|
'fibrinogen, human 337 MG / thrombin, human 123 UNT Medicated Patch [TachoSil]' |
|
699
|
|
|
|
|
|
|
}, |
|
700
|
|
|
|
|
|
|
{ |
|
701
|
|
|
|
|
|
|
id => 'RxNorm:1001679', |
|
702
|
|
|
|
|
|
|
label => |
|
703
|
|
|
|
|
|
|
'calcium carbonate 400 MG / cholecalciferol 133 UNT / magnesium oxide 167 MG Oral Tablet' |
|
704
|
|
|
|
|
|
|
}, |
|
705
|
|
|
|
|
|
|
{ |
|
706
|
|
|
|
|
|
|
id => 'RxNorm:1001689', |
|
707
|
|
|
|
|
|
|
label => |
|
708
|
|
|
|
|
|
|
'{2 (480 ML) (magnesium sulfate 0.0277 MEQ/ML / potassium sulfate 0.0374 MEQ/ML / sodium sulfate 0.257 MEQ/ML Oral Solution) } Pack' |
|
709
|
|
|
|
|
|
|
}, |
|
710
|
|
|
|
|
|
|
{ |
|
711
|
|
|
|
|
|
|
id => 'RxNorm:1001690', |
|
712
|
|
|
|
|
|
|
label => |
|
713
|
|
|
|
|
|
|
'{2 (480 ML) (magnesium sulfate 0.0277 MEQ/ML / potassium sulfate 0.0374 MEQ/ML / sodium sulfate 0.257 MEQ/ML Oral Solution) } Pack [Suprep Bowel Prep Kit]' |
|
714
|
|
|
|
|
|
|
}, |
|
715
|
|
|
|
|
|
|
{ |
|
716
|
|
|
|
|
|
|
id => 'RxNorm:1001691', |
|
717
|
|
|
|
|
|
|
label => |
|
718
|
|
|
|
|
|
|
'calcium carbonate 1250 MG / cholecalciferol 100 UNT / vitamin K1 0.04 MG Chewable Tablet' |
|
719
|
|
|
|
|
|
|
}, |
|
720
|
|
|
|
|
|
|
{ |
|
721
|
|
|
|
|
|
|
id => 'RxNorm:1001714', |
|
722
|
|
|
|
|
|
|
label => |
|
723
|
|
|
|
|
|
|
'sulfacetamide sodium 90 MG/ML / sulfur 40 MG/ML Medicated Liquid Soap' |
|
724
|
|
|
|
|
|
|
}, |
|
725
|
|
|
|
|
|
|
{ |
|
726
|
|
|
|
|
|
|
id => 'RxNorm:1001718', |
|
727
|
|
|
|
|
|
|
label => |
|
728
|
|
|
|
|
|
|
'sulfacetamide sodium 90 MG/ML / sulfur 40 MG/ML Medicated Liquid Soap [Zencia Wash]' |
|
729
|
|
|
|
|
|
|
}, |
|
730
|
|
|
|
|
|
|
{ |
|
731
|
|
|
|
|
|
|
id => 'RxNorm:1001751', |
|
732
|
|
|
|
|
|
|
label => 'calcium citrate 250 MG / cholecalciferol 100 UNT Oral Tablet' |
|
733
|
|
|
|
|
|
|
} |
|
734
|
|
|
|
|
|
|
]; |
|
735
|
|
|
|
|
|
|
|
|
736
|
|
|
|
|
|
|
# 100 random entries |
|
737
|
|
|
|
|
|
|
our $ncit_procedures_array = [ |
|
738
|
|
|
|
|
|
|
{ |
|
739
|
|
|
|
|
|
|
id => 'NCIT:C1447', |
|
740
|
|
|
|
|
|
|
label => 'Barium Enema Injection' |
|
741
|
|
|
|
|
|
|
}, |
|
742
|
|
|
|
|
|
|
{ |
|
743
|
|
|
|
|
|
|
id => 'NCIT:C15189', |
|
744
|
|
|
|
|
|
|
label => 'Biopsy' |
|
745
|
|
|
|
|
|
|
}, |
|
746
|
|
|
|
|
|
|
{ |
|
747
|
|
|
|
|
|
|
id => 'NCIT:C15190', |
|
748
|
|
|
|
|
|
|
label => 'Needle Biopsy' |
|
749
|
|
|
|
|
|
|
}, |
|
750
|
|
|
|
|
|
|
{ |
|
751
|
|
|
|
|
|
|
id => 'NCIT:C15193', |
|
752
|
|
|
|
|
|
|
label => 'Bone Marrow Biopsy' |
|
753
|
|
|
|
|
|
|
}, |
|
754
|
|
|
|
|
|
|
{ |
|
755
|
|
|
|
|
|
|
label => 'Diagnosis', |
|
756
|
|
|
|
|
|
|
id => 'NCIT:C15220' |
|
757
|
|
|
|
|
|
|
}, |
|
758
|
|
|
|
|
|
|
{ |
|
759
|
|
|
|
|
|
|
label => 'Second-Look Surgery', |
|
760
|
|
|
|
|
|
|
id => 'NCIT:C15317' |
|
761
|
|
|
|
|
|
|
}, |
|
762
|
|
|
|
|
|
|
{ |
|
763
|
|
|
|
|
|
|
label => 'Lumbar Puncture', |
|
764
|
|
|
|
|
|
|
id => 'NCIT:C15327' |
|
765
|
|
|
|
|
|
|
}, |
|
766
|
|
|
|
|
|
|
{ |
|
767
|
|
|
|
|
|
|
label => 'Fine-Needle Aspiration', |
|
768
|
|
|
|
|
|
|
id => 'NCIT:C15361' |
|
769
|
|
|
|
|
|
|
}, |
|
770
|
|
|
|
|
|
|
{ |
|
771
|
|
|
|
|
|
|
id => 'NCIT:C15385', |
|
772
|
|
|
|
|
|
|
label => 'Excisional Biopsy' |
|
773
|
|
|
|
|
|
|
}, |
|
774
|
|
|
|
|
|
|
{ |
|
775
|
|
|
|
|
|
|
label => 'Incisional Biopsy', |
|
776
|
|
|
|
|
|
|
id => 'NCIT:C15386' |
|
777
|
|
|
|
|
|
|
}, |
|
778
|
|
|
|
|
|
|
{ |
|
779
|
|
|
|
|
|
|
label => 'Shave Biopsy', |
|
780
|
|
|
|
|
|
|
id => 'NCIT:C15387' |
|
781
|
|
|
|
|
|
|
}, |
|
782
|
|
|
|
|
|
|
{ |
|
783
|
|
|
|
|
|
|
label => 'Endoscopic Biopsy', |
|
784
|
|
|
|
|
|
|
id => 'NCIT:C15389' |
|
785
|
|
|
|
|
|
|
}, |
|
786
|
|
|
|
|
|
|
{ |
|
787
|
|
|
|
|
|
|
label => 'Endocervical Curettage', |
|
788
|
|
|
|
|
|
|
id => 'NCIT:C15403' |
|
789
|
|
|
|
|
|
|
}, |
|
790
|
|
|
|
|
|
|
{ |
|
791
|
|
|
|
|
|
|
label => 'Cancer Screening', |
|
792
|
|
|
|
|
|
|
id => 'NCIT:C15406' |
|
793
|
|
|
|
|
|
|
}, |
|
794
|
|
|
|
|
|
|
{ |
|
795
|
|
|
|
|
|
|
label => 'Disease Screening', |
|
796
|
|
|
|
|
|
|
id => 'NCIT:C15419' |
|
797
|
|
|
|
|
|
|
}, |
|
798
|
|
|
|
|
|
|
{ |
|
799
|
|
|
|
|
|
|
label => 'Lymph Node Dissection', |
|
800
|
|
|
|
|
|
|
id => 'NCIT:C15427' |
|
801
|
|
|
|
|
|
|
}, |
|
802
|
|
|
|
|
|
|
{ |
|
803
|
|
|
|
|
|
|
id => 'NCIT:C15546', |
|
804
|
|
|
|
|
|
|
label => 'Breast Cancer Screening' |
|
805
|
|
|
|
|
|
|
}, |
|
806
|
|
|
|
|
|
|
{ |
|
807
|
|
|
|
|
|
|
id => 'NCIT:C15547', |
|
808
|
|
|
|
|
|
|
label => 'Screening for Skin Cancer' |
|
809
|
|
|
|
|
|
|
}, |
|
810
|
|
|
|
|
|
|
{ |
|
811
|
|
|
|
|
|
|
label => 'Screening for Oral Cancer', |
|
812
|
|
|
|
|
|
|
id => 'NCIT:C15548' |
|
813
|
|
|
|
|
|
|
}, |
|
814
|
|
|
|
|
|
|
{ |
|
815
|
|
|
|
|
|
|
id => 'NCIT:C15549', |
|
816
|
|
|
|
|
|
|
label => 'Screening for Colorectal Cancer' |
|
817
|
|
|
|
|
|
|
}, |
|
818
|
|
|
|
|
|
|
{ |
|
819
|
|
|
|
|
|
|
id => 'NCIT:C15550', |
|
820
|
|
|
|
|
|
|
label => 'Screening for Prostate Cancer' |
|
821
|
|
|
|
|
|
|
}, |
|
822
|
|
|
|
|
|
|
{ |
|
823
|
|
|
|
|
|
|
id => 'NCIT:C15552', |
|
824
|
|
|
|
|
|
|
label => 'Screening for Testicular Cancer' |
|
825
|
|
|
|
|
|
|
}, |
|
826
|
|
|
|
|
|
|
{ |
|
827
|
|
|
|
|
|
|
id => 'NCIT:C15567', |
|
828
|
|
|
|
|
|
|
label => 'Screening for Gastric Cancer' |
|
829
|
|
|
|
|
|
|
}, |
|
830
|
|
|
|
|
|
|
{ |
|
831
|
|
|
|
|
|
|
label => 'Screening for Lung Cancer', |
|
832
|
|
|
|
|
|
|
id => 'NCIT:C15575' |
|
833
|
|
|
|
|
|
|
}, |
|
834
|
|
|
|
|
|
|
{ |
|
835
|
|
|
|
|
|
|
id => 'NCIT:C15576', |
|
836
|
|
|
|
|
|
|
label => 'Screening for Ovarian Cancer' |
|
837
|
|
|
|
|
|
|
}, |
|
838
|
|
|
|
|
|
|
{ |
|
839
|
|
|
|
|
|
|
label => 'Clinical Diagnosis', |
|
840
|
|
|
|
|
|
|
id => 'NCIT:C15607' |
|
841
|
|
|
|
|
|
|
}, |
|
842
|
|
|
|
|
|
|
{ |
|
843
|
|
|
|
|
|
|
label => 'Staging', |
|
844
|
|
|
|
|
|
|
id => 'NCIT:C15608' |
|
845
|
|
|
|
|
|
|
}, |
|
846
|
|
|
|
|
|
|
{ |
|
847
|
|
|
|
|
|
|
id => 'NCIT:C15638', |
|
848
|
|
|
|
|
|
|
label => 'Genetic Testing for Cancer Risk' |
|
849
|
|
|
|
|
|
|
}, |
|
850
|
|
|
|
|
|
|
{ |
|
851
|
|
|
|
|
|
|
id => 'NCIT:C15641', |
|
852
|
|
|
|
|
|
|
label => 'Screening for Neuroblastoma' |
|
853
|
|
|
|
|
|
|
}, |
|
854
|
|
|
|
|
|
|
{ |
|
855
|
|
|
|
|
|
|
id => 'NCIT:C15644', |
|
856
|
|
|
|
|
|
|
label => 'Bone Marrow Aspiration' |
|
857
|
|
|
|
|
|
|
}, |
|
858
|
|
|
|
|
|
|
{ |
|
859
|
|
|
|
|
|
|
label => 'Image Guided Biopsy', |
|
860
|
|
|
|
|
|
|
id => 'NCIT:C15652' |
|
861
|
|
|
|
|
|
|
}, |
|
862
|
|
|
|
|
|
|
{ |
|
863
|
|
|
|
|
|
|
label => 'Sentinel Lymph Node Biopsy', |
|
864
|
|
|
|
|
|
|
id => 'NCIT:C15667' |
|
865
|
|
|
|
|
|
|
}, |
|
866
|
|
|
|
|
|
|
{ |
|
867
|
|
|
|
|
|
|
label => 'Screening for Endometrial Cancer', |
|
868
|
|
|
|
|
|
|
id => 'NCIT:C15671' |
|
869
|
|
|
|
|
|
|
}, |
|
870
|
|
|
|
|
|
|
{ |
|
871
|
|
|
|
|
|
|
label => 'Core Biopsy', |
|
872
|
|
|
|
|
|
|
id => 'NCIT:C15680' |
|
873
|
|
|
|
|
|
|
}, |
|
874
|
|
|
|
|
|
|
{ |
|
875
|
|
|
|
|
|
|
label => 'Colposcopic Biopsy', |
|
876
|
|
|
|
|
|
|
id => 'NCIT:C15703' |
|
877
|
|
|
|
|
|
|
}, |
|
878
|
|
|
|
|
|
|
{ |
|
879
|
|
|
|
|
|
|
label => 'Screening for Hepatocellular Cancer', |
|
880
|
|
|
|
|
|
|
id => 'NCIT:C15741' |
|
881
|
|
|
|
|
|
|
}, |
|
882
|
|
|
|
|
|
|
{ |
|
883
|
|
|
|
|
|
|
id => 'NCIT:C15775', |
|
884
|
|
|
|
|
|
|
label => 'Breast Cancer Detection Research' |
|
885
|
|
|
|
|
|
|
}, |
|
886
|
|
|
|
|
|
|
{ |
|
887
|
|
|
|
|
|
|
id => 'NCIT:C15776', |
|
888
|
|
|
|
|
|
|
label => 'Cancer Detection' |
|
889
|
|
|
|
|
|
|
}, |
|
890
|
|
|
|
|
|
|
{ |
|
891
|
|
|
|
|
|
|
label => 'Detection of Measurable Residual Disease', |
|
892
|
|
|
|
|
|
|
id => 'NCIT:C15795' |
|
893
|
|
|
|
|
|
|
}, |
|
894
|
|
|
|
|
|
|
{ |
|
895
|
|
|
|
|
|
|
id => 'NCIT:C15842', |
|
896
|
|
|
|
|
|
|
label => 'Prevention, Early Detection of Premalignant Lesions' |
|
897
|
|
|
|
|
|
|
}, |
|
898
|
|
|
|
|
|
|
{ |
|
899
|
|
|
|
|
|
|
id => 'NCIT:C15960', |
|
900
|
|
|
|
|
|
|
label => 'Blood Screening' |
|
901
|
|
|
|
|
|
|
}, |
|
902
|
|
|
|
|
|
|
{ |
|
903
|
|
|
|
|
|
|
id => 'NCIT:C16094', |
|
904
|
|
|
|
|
|
|
label => 'Cardiac Function Study' |
|
905
|
|
|
|
|
|
|
}, |
|
906
|
|
|
|
|
|
|
{ |
|
907
|
|
|
|
|
|
|
label => 'Non-Invasive Cancer Detection', |
|
908
|
|
|
|
|
|
|
id => 'NCIT:C16107' |
|
909
|
|
|
|
|
|
|
}, |
|
910
|
|
|
|
|
|
|
{ |
|
911
|
|
|
|
|
|
|
id => 'NCIT:C16209', |
|
912
|
|
|
|
|
|
|
label => 'Early Detection' |
|
913
|
|
|
|
|
|
|
}, |
|
914
|
|
|
|
|
|
|
{ |
|
915
|
|
|
|
|
|
|
label => 'Detection', |
|
916
|
|
|
|
|
|
|
id => 'NCIT:C16210' |
|
917
|
|
|
|
|
|
|
}, |
|
918
|
|
|
|
|
|
|
{ |
|
919
|
|
|
|
|
|
|
label => 'Cancer Diagnosis', |
|
920
|
|
|
|
|
|
|
id => 'NCIT:C16213' |
|
921
|
|
|
|
|
|
|
}, |
|
922
|
|
|
|
|
|
|
{ |
|
923
|
|
|
|
|
|
|
label => 'Digital Subtraction Angiography', |
|
924
|
|
|
|
|
|
|
id => 'NCIT:C16291' |
|
925
|
|
|
|
|
|
|
}, |
|
926
|
|
|
|
|
|
|
{ |
|
927
|
|
|
|
|
|
|
id => 'NCIT:C16308', |
|
928
|
|
|
|
|
|
|
label => 'Arteriography' |
|
929
|
|
|
|
|
|
|
}, |
|
930
|
|
|
|
|
|
|
{ |
|
931
|
|
|
|
|
|
|
label => 'Endoscopic Retrograde Cholangiopancreatography', |
|
932
|
|
|
|
|
|
|
id => 'NCIT:C16430' |
|
933
|
|
|
|
|
|
|
}, |
|
934
|
|
|
|
|
|
|
{ |
|
935
|
|
|
|
|
|
|
id => 'NCIT:C16451', |
|
936
|
|
|
|
|
|
|
label => 'Colposcopy' |
|
937
|
|
|
|
|
|
|
}, |
|
938
|
|
|
|
|
|
|
{ |
|
939
|
|
|
|
|
|
|
label => 'Diagnostic Imaging', |
|
940
|
|
|
|
|
|
|
id => 'NCIT:C16502' |
|
941
|
|
|
|
|
|
|
}, |
|
942
|
|
|
|
|
|
|
{ |
|
943
|
|
|
|
|
|
|
id => 'NCIT:C16525', |
|
944
|
|
|
|
|
|
|
label => 'Echocardiography' |
|
945
|
|
|
|
|
|
|
}, |
|
946
|
|
|
|
|
|
|
{ |
|
947
|
|
|
|
|
|
|
id => 'NCIT:C16546', |
|
948
|
|
|
|
|
|
|
label => 'Endoscopic Procedure' |
|
949
|
|
|
|
|
|
|
}, |
|
950
|
|
|
|
|
|
|
{ |
|
951
|
|
|
|
|
|
|
id => 'NCIT:C16560', |
|
952
|
|
|
|
|
|
|
label => 'Esophagoscopy' |
|
953
|
|
|
|
|
|
|
}, |
|
954
|
|
|
|
|
|
|
{ |
|
955
|
|
|
|
|
|
|
id => 'NCIT:C16587', |
|
956
|
|
|
|
|
|
|
label => 'Fluorophotometry' |
|
957
|
|
|
|
|
|
|
}, |
|
958
|
|
|
|
|
|
|
{ |
|
959
|
|
|
|
|
|
|
id => 'NCIT:C16588', |
|
960
|
|
|
|
|
|
|
label => 'Fluoroscopy' |
|
961
|
|
|
|
|
|
|
}, |
|
962
|
|
|
|
|
|
|
{ |
|
963
|
|
|
|
|
|
|
id => 'NCIT:C16781', |
|
964
|
|
|
|
|
|
|
label => 'Laryngoscopy' |
|
965
|
|
|
|
|
|
|
}, |
|
966
|
|
|
|
|
|
|
{ |
|
967
|
|
|
|
|
|
|
id => 'NCIT:C16806', |
|
968
|
|
|
|
|
|
|
label => 'Lymphography' |
|
969
|
|
|
|
|
|
|
}, |
|
970
|
|
|
|
|
|
|
{ |
|
971
|
|
|
|
|
|
|
label => 'Magnetic Resonance Imaging', |
|
972
|
|
|
|
|
|
|
id => 'NCIT:C16809' |
|
973
|
|
|
|
|
|
|
}, |
|
974
|
|
|
|
|
|
|
{ |
|
975
|
|
|
|
|
|
|
label => 'Magnetic Resonance Spectroscopy', |
|
976
|
|
|
|
|
|
|
id => 'NCIT:C16810' |
|
977
|
|
|
|
|
|
|
}, |
|
978
|
|
|
|
|
|
|
{ |
|
979
|
|
|
|
|
|
|
id => 'NCIT:C16811', |
|
980
|
|
|
|
|
|
|
label => 'Magnetoencephalography' |
|
981
|
|
|
|
|
|
|
}, |
|
982
|
|
|
|
|
|
|
{ |
|
983
|
|
|
|
|
|
|
label => 'Mammography', |
|
984
|
|
|
|
|
|
|
id => 'NCIT:C16818' |
|
985
|
|
|
|
|
|
|
}, |
|
986
|
|
|
|
|
|
|
{ |
|
987
|
|
|
|
|
|
|
id => 'NCIT:C16829', |
|
988
|
|
|
|
|
|
|
label => 'Mediastinoscopy' |
|
989
|
|
|
|
|
|
|
}, |
|
990
|
|
|
|
|
|
|
{ |
|
991
|
|
|
|
|
|
|
id => 'NCIT:C16950', |
|
992
|
|
|
|
|
|
|
label => 'Palpation' |
|
993
|
|
|
|
|
|
|
}, |
|
994
|
|
|
|
|
|
|
{ |
|
995
|
|
|
|
|
|
|
id => 'NCIT:C16969', |
|
996
|
|
|
|
|
|
|
label => 'Laparoscopy' |
|
997
|
|
|
|
|
|
|
}, |
|
998
|
|
|
|
|
|
|
{ |
|
999
|
|
|
|
|
|
|
label => 'Positron Emission Tomography', |
|
1000
|
|
|
|
|
|
|
id => 'NCIT:C17007' |
|
1001
|
|
|
|
|
|
|
}, |
|
1002
|
|
|
|
|
|
|
{ |
|
1003
|
|
|
|
|
|
|
id => 'NCIT:C17012', |
|
1004
|
|
|
|
|
|
|
label => 'Proctoscopy' |
|
1005
|
|
|
|
|
|
|
}, |
|
1006
|
|
|
|
|
|
|
{ |
|
1007
|
|
|
|
|
|
|
id => 'NCIT:C17131', |
|
1008
|
|
|
|
|
|
|
label => 'Sigmoidoscopy' |
|
1009
|
|
|
|
|
|
|
}, |
|
1010
|
|
|
|
|
|
|
{ |
|
1011
|
|
|
|
|
|
|
label => 'Skin Test', |
|
1012
|
|
|
|
|
|
|
id => 'NCIT:C17137' |
|
1013
|
|
|
|
|
|
|
}, |
|
1014
|
|
|
|
|
|
|
{ |
|
1015
|
|
|
|
|
|
|
label => 'Thermography', |
|
1016
|
|
|
|
|
|
|
id => 'NCIT:C17194' |
|
1017
|
|
|
|
|
|
|
}, |
|
1018
|
|
|
|
|
|
|
{ |
|
1019
|
|
|
|
|
|
|
label => 'Thoracoscopy', |
|
1020
|
|
|
|
|
|
|
id => 'NCIT:C17196' |
|
1021
|
|
|
|
|
|
|
}, |
|
1022
|
|
|
|
|
|
|
{ |
|
1023
|
|
|
|
|
|
|
label => 'Single Photon Emission Computed Tomography', |
|
1024
|
|
|
|
|
|
|
id => 'NCIT:C17203' |
|
1025
|
|
|
|
|
|
|
}, |
|
1026
|
|
|
|
|
|
|
{ |
|
1027
|
|
|
|
|
|
|
id => 'NCIT:C17204', |
|
1028
|
|
|
|
|
|
|
label => 'Computed Tomography' |
|
1029
|
|
|
|
|
|
|
}, |
|
1030
|
|
|
|
|
|
|
{ |
|
1031
|
|
|
|
|
|
|
id => 'NCIT:C17261', |
|
1032
|
|
|
|
|
|
|
label => 'Diagnostic Radiology' |
|
1033
|
|
|
|
|
|
|
}, |
|
1034
|
|
|
|
|
|
|
{ |
|
1035
|
|
|
|
|
|
|
label => 'Xeroradiography', |
|
1036
|
|
|
|
|
|
|
id => 'NCIT:C17263' |
|
1037
|
|
|
|
|
|
|
}, |
|
1038
|
|
|
|
|
|
|
{ |
|
1039
|
|
|
|
|
|
|
id => 'NCIT:C17348', |
|
1040
|
|
|
|
|
|
|
label => 'Pap Smear' |
|
1041
|
|
|
|
|
|
|
}, |
|
1042
|
|
|
|
|
|
|
{ |
|
1043
|
|
|
|
|
|
|
label => 'Imaging Technique', |
|
1044
|
|
|
|
|
|
|
id => 'NCIT:C17369' |
|
1045
|
|
|
|
|
|
|
}, |
|
1046
|
|
|
|
|
|
|
{ |
|
1047
|
|
|
|
|
|
|
id => 'NCIT:C17436', |
|
1048
|
|
|
|
|
|
|
label => 'Immunoscintigraphy' |
|
1049
|
|
|
|
|
|
|
}, |
|
1050
|
|
|
|
|
|
|
{ |
|
1051
|
|
|
|
|
|
|
label => 'Diagnostic Test', |
|
1052
|
|
|
|
|
|
|
id => 'NCIT:C17454' |
|
1053
|
|
|
|
|
|
|
}, |
|
1054
|
|
|
|
|
|
|
{ |
|
1055
|
|
|
|
|
|
|
label => 'Echo-Planar Imaging', |
|
1056
|
|
|
|
|
|
|
id => 'NCIT:C17558' |
|
1057
|
|
|
|
|
|
|
}, |
|
1058
|
|
|
|
|
|
|
{ |
|
1059
|
|
|
|
|
|
|
id => 'NCIT:C17631', |
|
1060
|
|
|
|
|
|
|
label => 'Digital Rectal Examination' |
|
1061
|
|
|
|
|
|
|
}, |
|
1062
|
|
|
|
|
|
|
{ |
|
1063
|
|
|
|
|
|
|
label => 'Upper Gastrointestinal Series', |
|
1064
|
|
|
|
|
|
|
id => 'NCIT:C17639' |
|
1065
|
|
|
|
|
|
|
}, |
|
1066
|
|
|
|
|
|
|
{ |
|
1067
|
|
|
|
|
|
|
id => 'NCIT:C17641', |
|
1068
|
|
|
|
|
|
|
label => 'Percutaneous Transhepatic Cholangiography' |
|
1069
|
|
|
|
|
|
|
}, |
|
1070
|
|
|
|
|
|
|
{ |
|
1071
|
|
|
|
|
|
|
id => 'NCIT:C17644', |
|
1072
|
|
|
|
|
|
|
label => 'Transvaginal Ultrasound' |
|
1073
|
|
|
|
|
|
|
}, |
|
1074
|
|
|
|
|
|
|
{ |
|
1075
|
|
|
|
|
|
|
id => 'NCIT:C17645', |
|
1076
|
|
|
|
|
|
|
label => 'Radionuclide Scanning' |
|
1077
|
|
|
|
|
|
|
}, |
|
1078
|
|
|
|
|
|
|
{ |
|
1079
|
|
|
|
|
|
|
id => 'NCIT:C17646', |
|
1080
|
|
|
|
|
|
|
label => 'Bone Scan' |
|
1081
|
|
|
|
|
|
|
}, |
|
1082
|
|
|
|
|
|
|
{ |
|
1083
|
|
|
|
|
|
|
label => 'Assessment of Gonadal Function', |
|
1084
|
|
|
|
|
|
|
id => 'NCIT:C17869' |
|
1085
|
|
|
|
|
|
|
}, |
|
1086
|
|
|
|
|
|
|
{ |
|
1087
|
|
|
|
|
|
|
id => 'NCIT:C17958', |
|
1088
|
|
|
|
|
|
|
label => 'Functional Magnetic Resonance Imaging' |
|
1089
|
|
|
|
|
|
|
}, |
|
1090
|
|
|
|
|
|
|
{ |
|
1091
|
|
|
|
|
|
|
id => 'NCIT:C18001', |
|
1092
|
|
|
|
|
|
|
label => 'Digital X-Ray' |
|
1093
|
|
|
|
|
|
|
}, |
|
1094
|
|
|
|
|
|
|
{ |
|
1095
|
|
|
|
|
|
|
id => 'NCIT:C18020', |
|
1096
|
|
|
|
|
|
|
label => 'Diagnostic Procedure' |
|
1097
|
|
|
|
|
|
|
}, |
|
1098
|
|
|
|
|
|
|
{ |
|
1099
|
|
|
|
|
|
|
id => 'NCIT:C18151', |
|
1100
|
|
|
|
|
|
|
label => 'Diaphanography' |
|
1101
|
|
|
|
|
|
|
}, |
|
1102
|
|
|
|
|
|
|
{ |
|
1103
|
|
|
|
|
|
|
label => 'Histopathologic Examination', |
|
1104
|
|
|
|
|
|
|
id => 'NCIT:C18190' |
|
1105
|
|
|
|
|
|
|
}, |
|
1106
|
|
|
|
|
|
|
{ |
|
1107
|
|
|
|
|
|
|
label => 'Lymph Node Mapping', |
|
1108
|
|
|
|
|
|
|
id => 'NCIT:C18210' |
|
1109
|
|
|
|
|
|
|
}, |
|
1110
|
|
|
|
|
|
|
{ |
|
1111
|
|
|
|
|
|
|
label => 'Transrectal Ultrasound', |
|
1112
|
|
|
|
|
|
|
id => 'NCIT:C18315' |
|
1113
|
|
|
|
|
|
|
}, |
|
1114
|
|
|
|
|
|
|
{ |
|
1115
|
|
|
|
|
|
|
label => 'Digital Mammography', |
|
1116
|
|
|
|
|
|
|
id => 'NCIT:C18467' |
|
1117
|
|
|
|
|
|
|
}, |
|
1118
|
|
|
|
|
|
|
{ |
|
1119
|
|
|
|
|
|
|
label => 'Three-Dimensional Imaging', |
|
1120
|
|
|
|
|
|
|
id => 'NCIT:C18485' |
|
1121
|
|
|
|
|
|
|
}, |
|
1122
|
|
|
|
|
|
|
{ |
|
1123
|
|
|
|
|
|
|
id => 'NCIT:C18869', |
|
1124
|
|
|
|
|
|
|
label => 'Medical Imaging, Virtual Reality' |
|
1125
|
|
|
|
|
|
|
}, |
|
1126
|
|
|
|
|
|
|
{ |
|
1127
|
|
|
|
|
|
|
id => 'NCIT:C18980', |
|
1128
|
|
|
|
|
|
|
label => 'Radiation Ionizing, Diagnostic Imaging' |
|
1129
|
|
|
|
|
|
|
}, |
|
1130
|
|
|
|
|
|
|
{ |
|
1131
|
|
|
|
|
|
|
label => 'Radiation Non-Ionizing, Diagnostic Imaging', |
|
1132
|
|
|
|
|
|
|
id => 'NCIT:C18981' |
|
1133
|
|
|
|
|
|
|
}, |
|
1134
|
|
|
|
|
|
|
{ |
|
1135
|
|
|
|
|
|
|
label => 'Lower GI Series', |
|
1136
|
|
|
|
|
|
|
id => 'NCIT:C19174' |
|
1137
|
|
|
|
|
|
|
} |
|
1138
|
|
|
|
|
|
|
]; |
|
1139
|
|
|
|
|
|
|
|
|
1140
|
|
|
|
|
|
|
# 100 random entries |
|
1141
|
|
|
|
|
|
|
our $ncit_exposures_array = [ |
|
1142
|
|
|
|
|
|
|
{ |
|
1143
|
|
|
|
|
|
|
'id' => 'NCIT:C194', |
|
1144
|
|
|
|
|
|
|
'label' => '4-Nitroquinoline-1-Oxide' |
|
1145
|
|
|
|
|
|
|
}, |
|
1146
|
|
|
|
|
|
|
{ |
|
1147
|
|
|
|
|
|
|
'id' => 'NCIT:C196', |
|
1148
|
|
|
|
|
|
|
'label' => 'Benzo(a)pyrene-7,8-diol 9,10-Epoxide' |
|
1149
|
|
|
|
|
|
|
}, |
|
1150
|
|
|
|
|
|
|
{ |
|
1151
|
|
|
|
|
|
|
'label' => 'Dimethylbenzanthracene', |
|
1152
|
|
|
|
|
|
|
'id' => 'NCIT:C197' |
|
1153
|
|
|
|
|
|
|
}, |
|
1154
|
|
|
|
|
|
|
{ |
|
1155
|
|
|
|
|
|
|
'label' => 'Aflatoxin', |
|
1156
|
|
|
|
|
|
|
'id' => 'NCIT:C213' |
|
1157
|
|
|
|
|
|
|
}, |
|
1158
|
|
|
|
|
|
|
{ |
|
1159
|
|
|
|
|
|
|
'id' => 'NCIT:C251', |
|
1160
|
|
|
|
|
|
|
'label' => 'Anthracene' |
|
1161
|
|
|
|
|
|
|
}, |
|
1162
|
|
|
|
|
|
|
{ |
|
1163
|
|
|
|
|
|
|
'id' => 'NCIT:C284', |
|
1164
|
|
|
|
|
|
|
'label' => 'Asbestos' |
|
1165
|
|
|
|
|
|
|
}, |
|
1166
|
|
|
|
|
|
|
{ |
|
1167
|
|
|
|
|
|
|
'label' => 'Azoxymethane', |
|
1168
|
|
|
|
|
|
|
'id' => 'NCIT:C294' |
|
1169
|
|
|
|
|
|
|
}, |
|
1170
|
|
|
|
|
|
|
{ |
|
1171
|
|
|
|
|
|
|
'label' => 'Bacterial Toxin', |
|
1172
|
|
|
|
|
|
|
'id' => 'NCIT:C296' |
|
1173
|
|
|
|
|
|
|
}, |
|
1174
|
|
|
|
|
|
|
{ |
|
1175
|
|
|
|
|
|
|
'label' => 'Batrachotoxin', |
|
1176
|
|
|
|
|
|
|
'id' => 'NCIT:C297' |
|
1177
|
|
|
|
|
|
|
}, |
|
1178
|
|
|
|
|
|
|
{ |
|
1179
|
|
|
|
|
|
|
'id' => 'NCIT:C302', |
|
1180
|
|
|
|
|
|
|
'label' => 'Benzene' |
|
1181
|
|
|
|
|
|
|
}, |
|
1182
|
|
|
|
|
|
|
{ |
|
1183
|
|
|
|
|
|
|
'id' => 'NCIT:C349', |
|
1184
|
|
|
|
|
|
|
'label' => 'Carmustine' |
|
1185
|
|
|
|
|
|
|
}, |
|
1186
|
|
|
|
|
|
|
{ |
|
1187
|
|
|
|
|
|
|
'label' => 'Chewing Tobacco', |
|
1188
|
|
|
|
|
|
|
'id' => 'NCIT:C361' |
|
1189
|
|
|
|
|
|
|
}, |
|
1190
|
|
|
|
|
|
|
{ |
|
1191
|
|
|
|
|
|
|
'label' => 'Cholera Toxin', |
|
1192
|
|
|
|
|
|
|
'id' => 'NCIT:C368' |
|
1193
|
|
|
|
|
|
|
}, |
|
1194
|
|
|
|
|
|
|
{ |
|
1195
|
|
|
|
|
|
|
'id' => 'NCIT:C442', |
|
1196
|
|
|
|
|
|
|
'label' => 'Dioxin Compound' |
|
1197
|
|
|
|
|
|
|
}, |
|
1198
|
|
|
|
|
|
|
{ |
|
1199
|
|
|
|
|
|
|
'id' => 'NCIT:C470', |
|
1200
|
|
|
|
|
|
|
'label' => 'Enterotoxin' |
|
1201
|
|
|
|
|
|
|
}, |
|
1202
|
|
|
|
|
|
|
{ |
|
1203
|
|
|
|
|
|
|
'id' => 'NCIT:C490', |
|
1204
|
|
|
|
|
|
|
'label' => 'Ethylene Dibromide' |
|
1205
|
|
|
|
|
|
|
}, |
|
1206
|
|
|
|
|
|
|
{ |
|
1207
|
|
|
|
|
|
|
'label' => 'Herbicide', |
|
1208
|
|
|
|
|
|
|
'id' => 'NCIT:C541' |
|
1209
|
|
|
|
|
|
|
}, |
|
1210
|
|
|
|
|
|
|
{ |
|
1211
|
|
|
|
|
|
|
'label' => 'Methylnitrosourea', |
|
1212
|
|
|
|
|
|
|
'id' => 'NCIT:C645' |
|
1213
|
|
|
|
|
|
|
}, |
|
1214
|
|
|
|
|
|
|
{ |
|
1215
|
|
|
|
|
|
|
'id' => 'NCIT:C671', |
|
1216
|
|
|
|
|
|
|
'label' => 'Bischloroethylsulfide' |
|
1217
|
|
|
|
|
|
|
}, |
|
1218
|
|
|
|
|
|
|
{ |
|
1219
|
|
|
|
|
|
|
'label' => 'Mycotoxin', |
|
1220
|
|
|
|
|
|
|
'id' => 'NCIT:C674' |
|
1221
|
|
|
|
|
|
|
}, |
|
1222
|
|
|
|
|
|
|
{ |
|
1223
|
|
|
|
|
|
|
'id' => 'NCIT:C688', |
|
1224
|
|
|
|
|
|
|
'label' => 'Neurotoxin' |
|
1225
|
|
|
|
|
|
|
}, |
|
1226
|
|
|
|
|
|
|
{ |
|
1227
|
|
|
|
|
|
|
'id' => 'NCIT:C690', |
|
1228
|
|
|
|
|
|
|
'label' => 'Nickel' |
|
1229
|
|
|
|
|
|
|
}, |
|
1230
|
|
|
|
|
|
|
{ |
|
1231
|
|
|
|
|
|
|
'id' => 'NCIT:C736', |
|
1232
|
|
|
|
|
|
|
'label' => 'Pertussis Toxin' |
|
1233
|
|
|
|
|
|
|
}, |
|
1234
|
|
|
|
|
|
|
{ |
|
1235
|
|
|
|
|
|
|
'id' => 'NCIT:C737', |
|
1236
|
|
|
|
|
|
|
'label' => 'Pesticide' |
|
1237
|
|
|
|
|
|
|
}, |
|
1238
|
|
|
|
|
|
|
{ |
|
1239
|
|
|
|
|
|
|
'label' => 'Phorbol Ester', |
|
1240
|
|
|
|
|
|
|
'id' => 'NCIT:C742' |
|
1241
|
|
|
|
|
|
|
}, |
|
1242
|
|
|
|
|
|
|
{ |
|
1243
|
|
|
|
|
|
|
'id' => 'NCIT:C760', |
|
1244
|
|
|
|
|
|
|
'label' => 'Polychlorinated Biphenyl' |
|
1245
|
|
|
|
|
|
|
}, |
|
1246
|
|
|
|
|
|
|
{ |
|
1247
|
|
|
|
|
|
|
'label' => 'Ricin', |
|
1248
|
|
|
|
|
|
|
'id' => 'NCIT:C809' |
|
1249
|
|
|
|
|
|
|
}, |
|
1250
|
|
|
|
|
|
|
{ |
|
1251
|
|
|
|
|
|
|
'label' => 'Ricin A Chain', |
|
1252
|
|
|
|
|
|
|
'id' => 'NCIT:C810' |
|
1253
|
|
|
|
|
|
|
}, |
|
1254
|
|
|
|
|
|
|
{ |
|
1255
|
|
|
|
|
|
|
'id' => 'NCIT:C829', |
|
1256
|
|
|
|
|
|
|
'label' => 'Tobacco Smoke' |
|
1257
|
|
|
|
|
|
|
}, |
|
1258
|
|
|
|
|
|
|
{ |
|
1259
|
|
|
|
|
|
|
'label' => 'Teratogen', |
|
1260
|
|
|
|
|
|
|
'id' => 'NCIT:C859' |
|
1261
|
|
|
|
|
|
|
}, |
|
1262
|
|
|
|
|
|
|
{ |
|
1263
|
|
|
|
|
|
|
'id' => 'NCIT:C864', |
|
1264
|
|
|
|
|
|
|
'label' => '2,3,7,8-Tetrachlorodibenzo-P-dioxin' |
|
1265
|
|
|
|
|
|
|
}, |
|
1266
|
|
|
|
|
|
|
{ |
|
1267
|
|
|
|
|
|
|
'id' => 'NCIT:C892', |
|
1268
|
|
|
|
|
|
|
'label' => 'Smokeless Tobacco' |
|
1269
|
|
|
|
|
|
|
}, |
|
1270
|
|
|
|
|
|
|
{ |
|
1271
|
|
|
|
|
|
|
'label' => 'Toxin', |
|
1272
|
|
|
|
|
|
|
'id' => 'NCIT:C894' |
|
1273
|
|
|
|
|
|
|
}, |
|
1274
|
|
|
|
|
|
|
{ |
|
1275
|
|
|
|
|
|
|
'label' => 'Urethane', |
|
1276
|
|
|
|
|
|
|
'id' => 'NCIT:C920' |
|
1277
|
|
|
|
|
|
|
}, |
|
1278
|
|
|
|
|
|
|
{ |
|
1279
|
|
|
|
|
|
|
'id' => 'NCIT:C936', |
|
1280
|
|
|
|
|
|
|
'label' => 'Vinyl Chloride' |
|
1281
|
|
|
|
|
|
|
}, |
|
1282
|
|
|
|
|
|
|
{ |
|
1283
|
|
|
|
|
|
|
'id' => 'NCIT:C951', |
|
1284
|
|
|
|
|
|
|
'label' => 'Dibenzo[a,h]anthracene' |
|
1285
|
|
|
|
|
|
|
}, |
|
1286
|
|
|
|
|
|
|
{ |
|
1287
|
|
|
|
|
|
|
'label' => 'Anguidine', |
|
1288
|
|
|
|
|
|
|
'id' => 'NCIT:C1068' |
|
1289
|
|
|
|
|
|
|
}, |
|
1290
|
|
|
|
|
|
|
{ |
|
1291
|
|
|
|
|
|
|
'label' => 'Dibenzo (a,l) pyrene', |
|
1292
|
|
|
|
|
|
|
'id' => 'NCIT:C1069' |
|
1293
|
|
|
|
|
|
|
}, |
|
1294
|
|
|
|
|
|
|
{ |
|
1295
|
|
|
|
|
|
|
'label' => '1,1-Dimethylhydrazine', |
|
1296
|
|
|
|
|
|
|
'id' => 'NCIT:C1072' |
|
1297
|
|
|
|
|
|
|
}, |
|
1298
|
|
|
|
|
|
|
{ |
|
1299
|
|
|
|
|
|
|
'label' => 'Fumonisin B1', |
|
1300
|
|
|
|
|
|
|
'id' => 'NCIT:C1107' |
|
1301
|
|
|
|
|
|
|
}, |
|
1302
|
|
|
|
|
|
|
{ |
|
1303
|
|
|
|
|
|
|
'label' => 'Phenol', |
|
1304
|
|
|
|
|
|
|
'id' => 'NCIT:C1191' |
|
1305
|
|
|
|
|
|
|
}, |
|
1306
|
|
|
|
|
|
|
{ |
|
1307
|
|
|
|
|
|
|
'label' => 'Shiga Toxin', |
|
1308
|
|
|
|
|
|
|
'id' => 'NCIT:C1225' |
|
1309
|
|
|
|
|
|
|
}, |
|
1310
|
|
|
|
|
|
|
{ |
|
1311
|
|
|
|
|
|
|
'label' => 'Biohazardous Substance', |
|
1312
|
|
|
|
|
|
|
'id' => 'NCIT:C1281' |
|
1313
|
|
|
|
|
|
|
}, |
|
1314
|
|
|
|
|
|
|
{ |
|
1315
|
|
|
|
|
|
|
'label' => 'Aflatoxin B1', |
|
1316
|
|
|
|
|
|
|
'id' => 'NCIT:C1315' |
|
1317
|
|
|
|
|
|
|
}, |
|
1318
|
|
|
|
|
|
|
{ |
|
1319
|
|
|
|
|
|
|
'id' => 'NCIT:C1449', |
|
1320
|
|
|
|
|
|
|
'label' => 'Thorium Dioxide' |
|
1321
|
|
|
|
|
|
|
}, |
|
1322
|
|
|
|
|
|
|
{ |
|
1323
|
|
|
|
|
|
|
'label' => 'DNA Adduct', |
|
1324
|
|
|
|
|
|
|
'id' => 'NCIT:C1510' |
|
1325
|
|
|
|
|
|
|
}, |
|
1326
|
|
|
|
|
|
|
{ |
|
1327
|
|
|
|
|
|
|
'label' => 'Dimethyl Ether', |
|
1328
|
|
|
|
|
|
|
'id' => 'NCIT:C1645' |
|
1329
|
|
|
|
|
|
|
}, |
|
1330
|
|
|
|
|
|
|
{ |
|
1331
|
|
|
|
|
|
|
'label' => 'Fungicide', |
|
1332
|
|
|
|
|
|
|
'id' => 'NCIT:C1697' |
|
1333
|
|
|
|
|
|
|
}, |
|
1334
|
|
|
|
|
|
|
{ |
|
1335
|
|
|
|
|
|
|
'label' => 'Pollutant', |
|
1336
|
|
|
|
|
|
|
'id' => 'NCIT:C1751' |
|
1337
|
|
|
|
|
|
|
}, |
|
1338
|
|
|
|
|
|
|
{ |
|
1339
|
|
|
|
|
|
|
'id' => 'NCIT:C2128', |
|
1340
|
|
|
|
|
|
|
'label' => 'Sulfur Mustard Compound' |
|
1341
|
|
|
|
|
|
|
}, |
|
1342
|
|
|
|
|
|
|
{ |
|
1343
|
|
|
|
|
|
|
'id' => 'NCIT:C2434', |
|
1344
|
|
|
|
|
|
|
'label' => 'Environmental Tobacco Smoke' |
|
1345
|
|
|
|
|
|
|
}, |
|
1346
|
|
|
|
|
|
|
{ |
|
1347
|
|
|
|
|
|
|
'id' => 'NCIT:C26451', |
|
1348
|
|
|
|
|
|
|
'label' => 'Anthraquinone' |
|
1349
|
|
|
|
|
|
|
}, |
|
1350
|
|
|
|
|
|
|
{ |
|
1351
|
|
|
|
|
|
|
'label' => 'Ethylnitrosourea', |
|
1352
|
|
|
|
|
|
|
'id' => 'NCIT:C26563' |
|
1353
|
|
|
|
|
|
|
}, |
|
1354
|
|
|
|
|
|
|
{ |
|
1355
|
|
|
|
|
|
|
'id' => 'NCIT:C28130', |
|
1356
|
|
|
|
|
|
|
'label' => 'Acrylonitrile' |
|
1357
|
|
|
|
|
|
|
}, |
|
1358
|
|
|
|
|
|
|
{ |
|
1359
|
|
|
|
|
|
|
'id' => 'NCIT:C28131', |
|
1360
|
|
|
|
|
|
|
'label' => 'Arsenic' |
|
1361
|
|
|
|
|
|
|
}, |
|
1362
|
|
|
|
|
|
|
{ |
|
1363
|
|
|
|
|
|
|
'label' => 'Chlorine', |
|
1364
|
|
|
|
|
|
|
'id' => 'NCIT:C28140' |
|
1365
|
|
|
|
|
|
|
}, |
|
1366
|
|
|
|
|
|
|
{ |
|
1367
|
|
|
|
|
|
|
'label' => 'narcotic', |
|
1368
|
|
|
|
|
|
|
'id' => 'NCIT:C28171' |
|
1369
|
|
|
|
|
|
|
}, |
|
1370
|
|
|
|
|
|
|
{ |
|
1371
|
|
|
|
|
|
|
'label' => 'Radioactive Fallout', |
|
1372
|
|
|
|
|
|
|
'id' => 'NCIT:C28183' |
|
1373
|
|
|
|
|
|
|
}, |
|
1374
|
|
|
|
|
|
|
{ |
|
1375
|
|
|
|
|
|
|
'label' => 'Nitric Acid', |
|
1376
|
|
|
|
|
|
|
'id' => 'NCIT:C28202' |
|
1377
|
|
|
|
|
|
|
}, |
|
1378
|
|
|
|
|
|
|
{ |
|
1379
|
|
|
|
|
|
|
'id' => 'NCIT:C29354', |
|
1380
|
|
|
|
|
|
|
'label' => 'Permethrin' |
|
1381
|
|
|
|
|
|
|
}, |
|
1382
|
|
|
|
|
|
|
{ |
|
1383
|
|
|
|
|
|
|
'label' => 'Pediculicide', |
|
1384
|
|
|
|
|
|
|
'id' => 'NCIT:C29727' |
|
1385
|
|
|
|
|
|
|
}, |
|
1386
|
|
|
|
|
|
|
{ |
|
1387
|
|
|
|
|
|
|
'id' => 'NCIT:C29744', |
|
1388
|
|
|
|
|
|
|
'label' => 'Formaldehyde' |
|
1389
|
|
|
|
|
|
|
}, |
|
1390
|
|
|
|
|
|
|
{ |
|
1391
|
|
|
|
|
|
|
'id' => 'NCIT:C29768', |
|
1392
|
|
|
|
|
|
|
'label' => '1-Aminobenzo[a]pyrene' |
|
1393
|
|
|
|
|
|
|
}, |
|
1394
|
|
|
|
|
|
|
{ |
|
1395
|
|
|
|
|
|
|
'label' => '1-Nitrobenzo[a]pyrene', |
|
1396
|
|
|
|
|
|
|
'id' => 'NCIT:C29779' |
|
1397
|
|
|
|
|
|
|
}, |
|
1398
|
|
|
|
|
|
|
{ |
|
1399
|
|
|
|
|
|
|
'label' => '1-Nitrobenzo[a]pyrene trans-7,8-Dihydrodiol', |
|
1400
|
|
|
|
|
|
|
'id' => 'NCIT:C29780' |
|
1401
|
|
|
|
|
|
|
}, |
|
1402
|
|
|
|
|
|
|
{ |
|
1403
|
|
|
|
|
|
|
'id' => 'NCIT:C29781', |
|
1404
|
|
|
|
|
|
|
'label' => '1-Nitropyrene' |
|
1405
|
|
|
|
|
|
|
}, |
|
1406
|
|
|
|
|
|
|
{ |
|
1407
|
|
|
|
|
|
|
'label' => '1,2-Dimethylhydrazine', |
|
1408
|
|
|
|
|
|
|
'id' => 'NCIT:C29787' |
|
1409
|
|
|
|
|
|
|
}, |
|
1410
|
|
|
|
|
|
|
{ |
|
1411
|
|
|
|
|
|
|
'label' => '1,2-Dimethylhydrazine Dihydrochloride', |
|
1412
|
|
|
|
|
|
|
'id' => 'NCIT:C29788' |
|
1413
|
|
|
|
|
|
|
}, |
|
1414
|
|
|
|
|
|
|
{ |
|
1415
|
|
|
|
|
|
|
'label' => '1,2,5,6-Dibenzanthracene', |
|
1416
|
|
|
|
|
|
|
'id' => 'NCIT:C29789' |
|
1417
|
|
|
|
|
|
|
}, |
|
1418
|
|
|
|
|
|
|
{ |
|
1419
|
|
|
|
|
|
|
'id' => 'NCIT:C29790', |
|
1420
|
|
|
|
|
|
|
'label' => '1,3-Butadiene' |
|
1421
|
|
|
|
|
|
|
}, |
|
1422
|
|
|
|
|
|
|
{ |
|
1423
|
|
|
|
|
|
|
'label' => '2-Acetylaminofluorene', |
|
1424
|
|
|
|
|
|
|
'id' => 'NCIT:C29791' |
|
1425
|
|
|
|
|
|
|
}, |
|
1426
|
|
|
|
|
|
|
{ |
|
1427
|
|
|
|
|
|
|
'label' => '2-Amino-1-Methyl-6-Phenylimidazo[4,5-b]Pyridine', |
|
1428
|
|
|
|
|
|
|
'id' => 'NCIT:C29792' |
|
1429
|
|
|
|
|
|
|
}, |
|
1430
|
|
|
|
|
|
|
{ |
|
1431
|
|
|
|
|
|
|
'label' => '2-Amino-3,4-Dimethylimidazole[4,5-f]quinoline', |
|
1432
|
|
|
|
|
|
|
'id' => 'NCIT:C29793' |
|
1433
|
|
|
|
|
|
|
}, |
|
1434
|
|
|
|
|
|
|
{ |
|
1435
|
|
|
|
|
|
|
'id' => 'NCIT:C29794', |
|
1436
|
|
|
|
|
|
|
'label' => '2-Fluoroadenine' |
|
1437
|
|
|
|
|
|
|
}, |
|
1438
|
|
|
|
|
|
|
{ |
|
1439
|
|
|
|
|
|
|
'id' => 'NCIT:C29795', |
|
1440
|
|
|
|
|
|
|
'label' => '20-Methylcholanthrene' |
|
1441
|
|
|
|
|
|
|
}, |
|
1442
|
|
|
|
|
|
|
{ |
|
1443
|
|
|
|
|
|
|
'label' => '3-Aminobenzo[a]pyrene', |
|
1444
|
|
|
|
|
|
|
'id' => 'NCIT:C29797' |
|
1445
|
|
|
|
|
|
|
}, |
|
1446
|
|
|
|
|
|
|
{ |
|
1447
|
|
|
|
|
|
|
'label' => '3-Nitrobenzo[a]pyrene', |
|
1448
|
|
|
|
|
|
|
'id' => 'NCIT:C29798' |
|
1449
|
|
|
|
|
|
|
}, |
|
1450
|
|
|
|
|
|
|
{ |
|
1451
|
|
|
|
|
|
|
'label' => '3-Nitrobenzo[a]pyrene trans-7,8-Dihydrodiol', |
|
1452
|
|
|
|
|
|
|
'id' => 'NCIT:C29799' |
|
1453
|
|
|
|
|
|
|
}, |
|
1454
|
|
|
|
|
|
|
{ |
|
1455
|
|
|
|
|
|
|
'label' => '3,4-Benzpyrene', |
|
1456
|
|
|
|
|
|
|
'id' => 'NCIT:C29800' |
|
1457
|
|
|
|
|
|
|
}, |
|
1458
|
|
|
|
|
|
|
{ |
|
1459
|
|
|
|
|
|
|
'id' => 'NCIT:C29801', |
|
1460
|
|
|
|
|
|
|
'label' => '4-Methylnitrosamino-1,3-pyridyl-1-butanone' |
|
1461
|
|
|
|
|
|
|
}, |
|
1462
|
|
|
|
|
|
|
{ |
|
1463
|
|
|
|
|
|
|
'label' => '4-Nitroquinoline N-oxide', |
|
1464
|
|
|
|
|
|
|
'id' => 'NCIT:C29802' |
|
1465
|
|
|
|
|
|
|
}, |
|
1466
|
|
|
|
|
|
|
{ |
|
1467
|
|
|
|
|
|
|
'id' => 'NCIT:C29803', |
|
1468
|
|
|
|
|
|
|
'label' => '4-o-Tolylazo-o-Toluidine' |
|
1469
|
|
|
|
|
|
|
}, |
|
1470
|
|
|
|
|
|
|
{ |
|
1471
|
|
|
|
|
|
|
'label' => '5-Methylchrysene', |
|
1472
|
|
|
|
|
|
|
'id' => 'NCIT:C29804' |
|
1473
|
|
|
|
|
|
|
}, |
|
1474
|
|
|
|
|
|
|
{ |
|
1475
|
|
|
|
|
|
|
'label' => '6-Nitrochrysene', |
|
1476
|
|
|
|
|
|
|
'id' => 'NCIT:C29805' |
|
1477
|
|
|
|
|
|
|
}, |
|
1478
|
|
|
|
|
|
|
{ |
|
1479
|
|
|
|
|
|
|
'id' => 'NCIT:C29806', |
|
1480
|
|
|
|
|
|
|
'label' => '9,10-Dimethyl-1,2-Benzanthracene' |
|
1481
|
|
|
|
|
|
|
}, |
|
1482
|
|
|
|
|
|
|
{ |
|
1483
|
|
|
|
|
|
|
'label' => 'Acetone', |
|
1484
|
|
|
|
|
|
|
'id' => 'NCIT:C29807' |
|
1485
|
|
|
|
|
|
|
}, |
|
1486
|
|
|
|
|
|
|
{ |
|
1487
|
|
|
|
|
|
|
'label' => 'Benzo[a]pyrene', |
|
1488
|
|
|
|
|
|
|
'id' => 'NCIT:C29808' |
|
1489
|
|
|
|
|
|
|
}, |
|
1490
|
|
|
|
|
|
|
{ |
|
1491
|
|
|
|
|
|
|
'label' => 'Benzo[a]pyrene trans-7,8-Dihydrodiol', |
|
1492
|
|
|
|
|
|
|
'id' => 'NCIT:C29809' |
|
1493
|
|
|
|
|
|
|
}, |
|
1494
|
|
|
|
|
|
|
{ |
|
1495
|
|
|
|
|
|
|
'id' => 'NCIT:C29810', |
|
1496
|
|
|
|
|
|
|
'label' => 'Benzo[b]fluoranthene' |
|
1497
|
|
|
|
|
|
|
}, |
|
1498
|
|
|
|
|
|
|
{ |
|
1499
|
|
|
|
|
|
|
'label' => 'Benzotrichloride', |
|
1500
|
|
|
|
|
|
|
'id' => 'NCIT:C29811' |
|
1501
|
|
|
|
|
|
|
}, |
|
1502
|
|
|
|
|
|
|
{ |
|
1503
|
|
|
|
|
|
|
'label' => 'Carbon Disulfide', |
|
1504
|
|
|
|
|
|
|
'id' => 'NCIT:C29813' |
|
1505
|
|
|
|
|
|
|
}, |
|
1506
|
|
|
|
|
|
|
{ |
|
1507
|
|
|
|
|
|
|
'id' => 'NCIT:C29814', |
|
1508
|
|
|
|
|
|
|
'label' => 'Chlordane' |
|
1509
|
|
|
|
|
|
|
}, |
|
1510
|
|
|
|
|
|
|
{ |
|
1511
|
|
|
|
|
|
|
'id' => 'NCIT:C29815', |
|
1512
|
|
|
|
|
|
|
'label' => 'Chloroform' |
|
1513
|
|
|
|
|
|
|
}, |
|
1514
|
|
|
|
|
|
|
{ |
|
1515
|
|
|
|
|
|
|
'label' => 'Crocidolite Asbestos', |
|
1516
|
|
|
|
|
|
|
'id' => 'NCIT:C29816' |
|
1517
|
|
|
|
|
|
|
}, |
|
1518
|
|
|
|
|
|
|
{ |
|
1519
|
|
|
|
|
|
|
'id' => 'NCIT:C29817', |
|
1520
|
|
|
|
|
|
|
'label' => 'Croton Oil' |
|
1521
|
|
|
|
|
|
|
}, |
|
1522
|
|
|
|
|
|
|
{ |
|
1523
|
|
|
|
|
|
|
'id' => 'NCIT:C29818', |
|
1524
|
|
|
|
|
|
|
'label' => 'Cyclopenta[cd]pyrene' |
|
1525
|
|
|
|
|
|
|
}, |
|
1526
|
|
|
|
|
|
|
{ |
|
1527
|
|
|
|
|
|
|
'label' => 'Ethyl Methanesulfonate', |
|
1528
|
|
|
|
|
|
|
'id' => 'NCIT:C29820' |
|
1529
|
|
|
|
|
|
|
}, |
|
1530
|
|
|
|
|
|
|
{ |
|
1531
|
|
|
|
|
|
|
'id' => 'NCIT:C29821', |
|
1532
|
|
|
|
|
|
|
'label' => 'Ethylene Oxide' |
|
1533
|
|
|
|
|
|
|
}, |
|
1534
|
|
|
|
|
|
|
{ |
|
1535
|
|
|
|
|
|
|
'label' => 'Ferric-Nitrilotriacetate', |
|
1536
|
|
|
|
|
|
|
'id' => 'NCIT:C29822' |
|
1537
|
|
|
|
|
|
|
}, |
|
1538
|
|
|
|
|
|
|
{ |
|
1539
|
|
|
|
|
|
|
'label' => 'Hydroquinone', |
|
1540
|
|
|
|
|
|
|
'id' => 'NCIT:C29823' |
|
1541
|
|
|
|
|
|
|
} |
|
1542
|
|
|
|
|
|
|
]; |
|
1543
|
|
|
|
|
|
|
|
|
1544
|
|
|
|
|
|
|
# mrueda |
|
1545
|
|
|
|
|
|
|
our $ethnicity_array = [ |
|
1546
|
|
|
|
|
|
|
{ id => 'NCIT:C42331', label => 'African' }, |
|
1547
|
|
|
|
|
|
|
{ id => 'NCIT:C67109', label => 'Multiracial' }, |
|
1548
|
|
|
|
|
|
|
{ id => 'NCIT:C16352', label => 'Black or African American' }, |
|
1549
|
|
|
|
|
|
|
{ id => 'NCIT:C41261', label => 'White' }, |
|
1550
|
|
|
|
|
|
|
{ id => 'NCIT:C41260', label => 'Asian' }, |
|
1551
|
|
|
|
|
|
|
{ id => 'NCIT:C17459', label => 'Hispanic or Latino' } |
|
1552
|
|
|
|
|
|
|
]; |
|
1553
|
|
|
|
|
|
|
1; |