-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathADR_lexicon.tsv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 9239.
13720 lines (13713 loc) · 462 KB
/
ADR_lexicon.tsv
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
###############################################################
Adverse drug reation (ADR) lexicon version 1.1
Format
Each line contains the UMLS (Unified Medical Language System) concept ID, concept name and the source that the concept and the ID are taken from (tab separated).
Resources
SIDER:http://sideeffects.embl.de/
CHV (Consumer Health Vocabulary): http://consumerhealthvocab.org/
COSTART (Coding Symbols for a Thesaurus of Adverse Reaction Terms): http://bioportal.bioontology.org/ontologies/COSTART
DIEGO_Lab: These entries are the frequently observed phrases in user posts in social media which were annotated as ADRs and mapped to UMLS IDs by DIEGO lab annotators.
Citing ADR lexicon
Please cite this paper: Nikfarjam A, et al. Journal of the American Medical Informatics Association 2015;0:1–11. doi:10.1093/jamia/ocu041
Contact
If you have any questions please contact Azadeh Nikfarjam: anikfarj@asu.edu
###############################################################
c1328274 infection vascular SIDER
c0015732 faecal incontinence SIDER
c0015732 fecal incontinence SIDER
c0920163 idiopathic thrombocytopenia SIDER
c0003175 anthrax SIDER
c0010481 cushing's syndrome SIDER
c0010481 cushing syndrome SIDER
c0010481 cushings syndrome SIDER
c0010481 hypercortisolism SIDER
c0004623 infection bacterial SIDER
c0037023 sialadenitis SIDER
c0236078 scrotal pain SIDER
c0004626 bacterial pneumonia SIDER
c0151618 embolus lower extremity SIDER
c0520474 aseptic necrosis bone SIDER
c0520474 osteonecrosis SIDER
c0520474 aseptic necrosis of bone SIDER
c0151613 electrolyte abnormality SIDER
c0151614 electrolyte depletion SIDER
c0236071 tightness in throat SIDER
c0236071 throat tightness SIDER
c0151611 eeg abnormal SIDER
c0015734 faecal impaction SIDER
c0015734 fecal impaction SIDER
c0151610 tongue edema SIDER
c0267158 reflux gastritis SIDER
c0341012 oral herpes SIDER
c0031873 pica SIDER
c0730285 diabetic macular edema SIDER
c0920157 mesenteric ischemia SIDER
c0151606 labial edema SIDER
c0037011 shoulder pain SIDER
c0151609 scrotal edema SIDER
c0151602 swelling face SIDER
c0700251 brachial plexopathy SIDER
c0151603 generalized edema SIDER
c0520463 chronic active hepatitis SIDER
c0151604 genital edema SIDER
c0151605 edema at the injection site SIDER
c0267166 gastroduodenitis SIDER
c0424605 delayed development SIDER
c0162871 abdominal aortic aneurysm SIDER
c0151601 conjunctival edema SIDER
c0920186 hepatic artery stenosis SIDER
c1320474 nuchal rigidity SIDER
c0231785 carpopedal spasm SIDER
c0034359 pyuria SIDER
c0920184 fundic gland polyps SIDER
c0004606 nonproliferative diabetic retinopathy SIDER
c0151636 premature ventricular contraction SIDER
c0001957 dts SIDER
c0151639 fertility decreased female SIDER
c0522224 paralysis SIDER
c0522224 paralyses SIDER
c0522224 palsies SIDER
c0522224 palsy SIDER
c0004604 back pain SIDER
c0236053 mucosal ulceration SIDER
c0428982 tachycardia nodal SIDER
c0428982 nodal tachycardia SIDER
c0004030 aspergillosis SIDER
c0151632 elevated erythrocyte sedimentation rate SIDER
c0920171 foreign body sensation in eyes SIDER
c0004610 bacteremia SIDER
c0151624 ulcerative enterocolitis SIDER
c0151625 enzymatic abnormality SIDER
c0151626 epidermal necrolysis SIDER
c0428977 decreased heart rate SIDER
c0428977 heart rate decreased SIDER
c0428977 bradycardia nos SIDER
c0428977 bradycardia SIDER
c0151628 premature epiphyseal closure SIDER
c0151629 fixed eruption SIDER
c0004044 asphyxiation SIDER
c0004044 asphyxia SIDER
c0231772 feet burning SIDER
c0001969 drunk SIDER
c1701941 withdrawal of treatment SIDER
c0151620 hypertensive encephalopathy SIDER
c0151622 endometrial disorder SIDER
c0151623 enterocolitis hemorrhagic SIDER
c0034372 quadriplegia SIDER
c0042384 angiitis SIDER
c0040028 essential thrombocythemia SIDER
c0001973 chronic alcohol abuse SIDER
c1510472 drug addiction SIDER
c1510472 drug dependence SIDER
c1510471 hypovitaminosis SIDER
c0860564 retinoic acid syndrome SIDER
c1510475 diverticulosis SIDER
c0581912 sensation of heaviness SIDER
c0042376 vascular headache SIDER
c0042376 vascular headaches SIDER
c0600041 bladder infection SIDER
c0231710 buttock pain SIDER
c0311394 difficulty in walking SIDER
c0162830 photosensitivity reaction SIDER
c0162830 photosensitivity toxic reaction SIDER
c0162830 rash photosensitivity SIDER
c0311395 limp SIDER
c0042373 vascular disease SIDER
c0042373 vascular diseases SIDER
c0042373 disorder vascular SIDER
c0042373 vascular disorder SIDER
c0042373 angiopathy SIDER
c0042373 vascular disorders SIDER
c0700292 hypoxemia SIDER
c0162834 skin hyperpigmentation SIDER
c0162835 skin hypopigmentation SIDER
c0162835 leukoderma SIDER
c0162835 depigmentation SIDER
c0162835 hypopigmentation SIDER
c0270327 nocturnal enuresis SIDER
c0149696 food intolerance SIDER
c0877690 renal graft loss SIDER
c0860594 metastatic malignant melanoma SIDER
c0231749 knee pain SIDER
c0699744 ear infection SIDER
c0699744 ear infections SIDER
c0699744 ear infection nos SIDER
c0275524 coinfection SIDER
c0041582 ulceration SIDER
c0001733 afibrinogenemia SIDER
c0011269 vascular dementia SIDER
c0162848 dermatitis lichenoid SIDER
c0162848 lichenoid dermatitis SIDER
c0040046 thrombophlebitis SIDER
c1510497 lens opacity SIDER
c0011251 delusional disorder SIDER
c0748536 scleral hemorrhage SIDER
c0011253 delusions SIDER
c0010418 cryptosporidiosis SIDER
c0010417 cryptorchidism SIDER
c0010417 cryptorchism SIDER
c0010417 undescended testis SIDER
c0013604 edema nos SIDER
c0013604 edema SIDER
c0013604 oedema SIDER
c0013604 oedema nos SIDER
c0013604 oedematous SIDER
c0013604 hydrops SIDER
c0040038 thromboembolism SIDER
c0040034 thrombopenia SIDER
c0040034 thrombocytopenia SIDER
c0010414 cryptococcosis SIDER
c0232097 increased plasma volume SIDER
c0151841 pbi increased SIDER
c0004093 weakness generalized SIDER
c0004093 lassitude SIDER
c0004093 feelings of weakness SIDER
c0004093 debility SIDER
c0004093 asthenia SIDER
c0004093 general weakness SIDER
c0151846 periosteal disorder SIDER
c0151846 disorder periosteal SIDER
c1704628 hyperthermia SIDER
c0004096 asthma bronchial SIDER
c0004096 asthma nos SIDER
c0004096 asthmatic SIDER
c0004096 asthma SIDER
c0004096 bronchial asthma SIDER
c0004096 asthma aggravated SIDER
c0042341 varicocele SIDER
c0151849 alkaline phosphatase increased SIDER
c0151849 phosphatase alkaline increased SIDER
c0151849 alk phos increased SIDER
c0151849 alp increased SIDER
c0151849 elevated alkaline phosphatase SIDER
c0151849 alkaline phosphatase nos increased SIDER
c0022081 iritis SIDER
c0004095 eye fatigue SIDER
c0004095 asthenopia SIDER
c0012546 diphtheria SIDER
c0151848 acid phosphatase increased SIDER
c0042345 varicose vein SIDER
c0042345 vein varicose SIDER
c0042345 varicose veins SIDER
c0042345 varix SIDER
c0947912 myasthenia SIDER
c1299624 postural orthostatic tachycardia syndrome SIDER
c0346993 metastases of breast cancer SIDER
c0855304 glycosylated haemoglobin decreased SIDER
c0236000 pain jaw SIDER
c0236000 jaw pain SIDER
c0151830 urethral pain SIDER
c1306068 after cataract SIDER
c0151834 papanicolau smear suspicious SIDER
c0151836 paranoid reaction SIDER
c0151838 paresthesia circumoral SIDER
c0151838 circumoral paresthesia SIDER
c0687133 drug interaction SIDER
c0749647 empiric therapy SIDER
c0022116 ischaemia SIDER
c0022116 ischemia nos SIDER
c0022116 ischemia SIDER
c0878773 overactive bladder SIDER
c0205875 papillomatosis SIDER
c0041582 ulcers SIDER
c0041582 ulcerative SIDER
c0041582 ulcer SIDER
c0040053 thrombosis SIDER
c0151828 injection site pressure sensation SIDER
c0151828 injection site pain SIDER
c0151828 pain injection site SIDER
c0151827 ocular pain SIDER
c0151827 pain in eyes SIDER
c0151827 pain eye SIDER
c0151826 chest pain substernal SIDER
c0151826 substernal pain SIDER
c0151826 pain substernal SIDER
c0151826 retrosternal pain SIDER
c0151826 substernal chest pain SIDER
c0700200 near syncope SIDER
c0151825 skeletal pain SIDER
c0151825 bone pain SIDER
c0151825 pain bone SIDER
c0015799 feminization SIDER
c0151824 pain biliary SIDER
c0151824 biliary colic SIDER
c0151824 biliary pain SIDER
c0700201 dyssomnia SIDER
c0878787 growth failure SIDER
c0429468 anovulatory SIDER
c0920102 phosphorus decreased SIDER
c0920103 hematotoxicity SIDER
c0151810 lack of drug effect SIDER
c0855329 changes in ecg SIDER
c0022073 iridocyclitis SIDER
c0151815 mesenteric occlusion SIDER
c0151815 mesenteric arterial occlusion SIDER
c0151818 opisthotonos SIDER
c0151818 opisthotonus SIDER
c0151817 mesenteric venous occlusion SIDER
c0158986 neonatal hypoglycemia SIDER
c0158986 hypoglycaemia neonatal SIDER
c0151811 subcutaneous nodule SIDER
c0026272 mixed connective tissue disease SIDER
c0151814 coronary occlusion SIDER
c0151814 coronary artery occlusion SIDER
c0264545 pleural fibrosis SIDER
c0264545 pleural thickening SIDER
c0004691 balanoposthitis SIDER
c0004690 balanitis SIDER
c0520594 breast microcalcification SIDER
c1168225 inner ear infection SIDER
c0855331 electrocardiogram qt corrected interval SIDER
c0520589 vulvovaginal dryness SIDER
c0151888 hyporeflexia SIDER
c0151888 reflexes decreased SIDER
c0700225 increased serum creatinine SIDER
c0549386 sensation of warmth SIDER
c0549386 feeling of warmth SIDER
c0151889 reflexes abnormal SIDER
c0151889 reflexes increased SIDER
c0151889 hyperreflexia SIDER
c0856069 vasculitis digestive SIDER
c0856067 myalgia aggravated SIDER
c0341047 parotid gland enlargement SIDER
c0151882 purpuric rash SIDER
c0011579 depressive reaction SIDER
c0011579 reactive depression SIDER
c0151883 rash vesiculobullous SIDER
c0151883 vesiculobullous rash SIDER
c0855338 gallop rhythm present SIDER
c0346957 cancer metastatic SIDER
c0151886 reaction unevaluable SIDER
c0151886 unevaluable reaction SIDER
c0855335 electrocardiogram st segment abnormal SIDER
c0151885 reaction aggravation SIDER
c0151885 aggravation reaction SIDER
c0855333 electrocardiogram qt corrected interval prolonged SIDER
c0038990 sweating SIDER
c0038990 sweats SIDER
c0038990 perspiration SIDER
c0345904 hepatic neoplasm malignant SIDER
c0011570 depression nos SIDER
c0011570 mental depression SIDER
c0011570 depressions SIDER
c0011570 depressive state SIDER
c0038999 swelling nos SIDER
c0038999 swelling SIDER
c0038999 bulging SIDER
c0033247 proctocolitis SIDER
c0033246 proctitis SIDER
c0014057 japanese encephalitis SIDER
c0520587 vulvovaginal discomfort SIDER
c0014059 acute disseminated encephalomyelitis SIDER
c0151878 prolonged qt interval SIDER
c0151878 qt interval prolonged SIDER
c0151879 qt interval shortened SIDER
c0019917 hordeolum SIDER
c0151872 prothrombin increased SIDER
c0151872 prothrombin time prolonged SIDER
c0151872 pt prolonged SIDER
c0236048 gastric polyps SIDER
c0236048 polyposis gastric SIDER
c1253936 joint effusion SIDER
c0438397 skin graft failure SIDER
c0520573 buffalo hump SIDER
c0520571 biliary sclerosis SIDER
c0030781 peliosis hepatis SIDER
c0030781 peliosis hepatitis SIDER
c0856081 restlessness aggravated SIDER
c0520575 acute pyelonephritis SIDER
c0012797 diuresis SIDER
c0856088 constipation aggravated SIDER
c0457798 eyelid dermatitis SIDER
c0268790 renal vessel disorder SIDER
c0268790 renovascular SIDER
c0030790 pelvic infection SIDER
c0030790 pelvic infections SIDER
c0151864 pregnancy disorder SIDER
c0151865 pregnancy test false positive SIDER
c0151862 post vaccination syndrome SIDER
c0236018 aura SIDER
c0857305 thrombocytopenic purpura SIDER
c0857305 thrombocytopenia purpura SIDER
c0206160 reticulocytosis SIDER
c1136085 monoclonal gammopathy SIDER
c0014070 encephalomyelitis SIDER
c0011551 depersonalization SIDER
c0017979 glycosuria SIDER
c0017979 glucosuria SIDER
c0030794 pelvic pain nos SIDER
c0030794 pain pelvic SIDER
c0030794 pelvic pain SIDER
c0520564 ulcer ileum SIDER
c0312854 extravascular hemolysis SIDER
c0520561 small intestinal hemorrhage SIDER
c0520562 intestinal dilatation SIDER
c0151859 polyserositis SIDER
c0426636 rectal urgency SIDER
c0426636 defaecation urgency SIDER
c0426636 defecation urgency SIDER
c0159125 culture positive SIDER
c0001925 albuminuria SIDER
c0856095 vomiting aggravated SIDER
c0520559 numbness of the tongue SIDER
c0549398 meibomianitis SIDER
c0856096 myopia aggravated SIDER
c1963964 periungual erythema SIDER
c0549399 low density lipoprotein increased SIDER
c0151852 pituitary activity increased SIDER
c0577730 family stress SIDER
c0151854 platelet abnormalities SIDER
c0151854 platelets abnormal SIDER
c0151854 platelet abnormality SIDER
c0151854 abnormal platelet SIDER
c0151854 abnormal platelets SIDER
c0004659 bacteriuria SIDER
c0038986 sweat gland disorder SIDER
c1331543 postpartum fever SIDER
c0014065 encephalocele SIDER
c0242973 ventricular dysfunction SIDER
c0520532 subcutaneous hematoma SIDER
c0242979 muscle tiredness SIDER
c0271036 retinal scar SIDER
c0027960 mole SIDER
c0520539 hypertensive episodes SIDER
c0494165 liver metastases SIDER
c0008449 chondrodystrophy SIDER
c0027947 neutropenia SIDER
c0014009 empyema SIDER
c0027962 nevus SIDER
c0027962 melanocytic naevus SIDER
c0027962 naevus SIDER
c0027962 pigmented nevi SIDER
c0027962 nevi SIDER
c0027962 pigmented nevus SIDER
c0243026 systemic infection SIDER
c0243026 sepsis nos SIDER
c0520540 rebound hypertension SIDER
c0580413 decreased prothrombin time SIDER
c0040953 trichotillomania SIDER
c0241832 cerebrovascular insufficiency SIDER
c0242966 systemic inflammatory response syndrome SIDER
c2747793 acute phosphate nephropathy SIDER
c0338113 uterine sarcoma SIDER
c0006277 bronchitis SIDER
c0006277 bronchitis nos SIDER
c0020877 ileitis SIDER
c0006271 bronchiolitis SIDER
c0027932 neurosis SIDER
c0520547 poor peripheral circulation SIDER
c0014724 eructation SIDER
c0014724 eructations SIDER
c0014724 belching SIDER
c0040921 trichomoniasis SIDER
c0040923 trichomonal vaginitis SIDER
c1963921 chemical phlebitis SIDER
c0271053 cotton wool spots SIDER
c0497471 moniliasis genital female SIDER
c0271051 macular edema SIDER
c0151892 retinal pigmentation SIDER
c0151891 retinal depigmentation SIDER
c0151898 schizophreniform illness SIDER
c0151898 schizophrenic reaction SIDER
c0029221 organic brain syndrome SIDER
c0271055 rhegmatogenous retinal detachment SIDER
c0856054 mental status changes SIDER
c0856053 secondary leukemia SIDER
c0151899 syndrome screaming SIDER
c0151899 screaming syndrome SIDER
c0262365 mammogram abnormal SIDER
c0014034 enanthema SIDER
c0020683 hypovolemic shock SIDER
c0014038 encephalitis SIDER
c0265935 congenital arterial malformation SIDER
c0856050 diet refusal SIDER
c0030756 lice infestation SIDER
c0026205 miosis SIDER
c0856049 peripheral embolism SIDER
c0016977 gallbladder disease SIDER
c0859871 nasal stinging SIDER
c0029261 orgasm abnormal SIDER
c0438434 ring scotoma SIDER
c0262385 autonomic instability SIDER
c0262385 autonomic nervous system imbalance SIDER
c1138421 spider veins SIDER
c1282609 granulocytosis SIDER
c0027932 neurotic disorders SIDER
c1963916 diabetic peripheral neuropathic pain SIDER
c0342579 electrolyte imbalance SIDER
c0009088 cluster headache SIDER
c0009088 cluster headaches SIDER
c0026265 mitral valve disease nos SIDER
c0026265 mitral valve disorder SIDER
c0026266 mitral insufficiency SIDER
c0026266 mitral regurgitation SIDER
c0857516 floppy SIDER
c0026267 mitral valve incompetence SIDER
c0026267 mitral valve prolapse SIDER
c0240419 muscle tenderness SIDER
c0009081 congenital clubfoot SIDER
c0240417 muscle mass SIDER
c0027947 neutrophils decreased SIDER
c0027947 neutropenias SIDER
c1735976 inguinal lymphadenitis SIDER
c0870082 keratosis SIDER
c0870082 hyperkeratosis SIDER
c0016927 gagging SIDER
c1328308 increased upper airway secretion SIDER
c0428772 left ventricular ejection fraction SIDER
c0394006 des SIDER
c1737329 dysmorphism SIDER
c0428776 cardiac index SIDER
c0012833 dizziness SIDER
c0085932 bullous dermatitis SIDER
c0262397 breast tenderness SIDER
c0262397 tender breasts SIDER
c1306503 exomphalos SIDER
c0149651 clubbing SIDER
c0038941 postoperative wound infection SIDER
c0151684 skin granuloma SIDER
c0701821 onychia SIDER
c0151685 accelerated growth SIDER
c0701824 staggering gait SIDER
c0151683 neutrophilia SIDER
c1522058 coagulation necrosis SIDER
c0151689 hair discoloration SIDER
c0151686 growth suppression SIDER
c0020635 pituitary hypofunction SIDER
c1510431 superficial thrombophlebitis SIDER
c1510431 thrombophlebitis superficial SIDER
c0029221 organic brain syndromes SIDER
c0020639 hypoproteinemia SIDER
c1269955 invasion SIDER
c0012817 diverticulum SIDER
c0149642 cervical adenitis SIDER
c0151693 adrenal hemorrhage SIDER
c0587054 numbness of the fingers SIDER
c0151694 hemorrhage of colon SIDER
c0424448 masked facies SIDER
c0151698 injection site hemorrhage SIDER
c0851302 hypoglycemic shock SIDER
c0580493 serum albumin decreased SIDER
c0151699 intracranial bleeding SIDER
c0012813 diverticulitis SIDER
c0020624 decreased menstruation SIDER
c0015544 failure to thrive SIDER
c0020621 hypokalemia SIDER
c0020620 oligohidrosis SIDER
c0151692 delayed healing SIDER
c0151691 decreased hdl SIDER
c0020626 hypoparathyroidism SIDER
c0728899 intoxication SIDER
c0020625 hyponatremia SIDER
c0149678 ebv infection SIDER
c0858357 esophageal stenosis acquired SIDER
c0149670 abnormalities of carbohydrate metabolism SIDER
c0013528 echolalia SIDER
c2225524 breast enlargement SIDER
c0699790 carcinoma of the colon SIDER
c0699790 carcinoma colon SIDER
c0699790 colon carcinoma SIDER
c0699791 gastric carcinoma SIDER
c0699791 carcinoma stomach SIDER
c0015556 fallopian tube SIDER
c0020615 hypoglycemia SIDER
c0266589 ear malformation SIDER
c0020617 hypoglycemic coma SIDER
c0023787 lipodystrophy SIDER
c0023787 lipodystrophies SIDER
c0020619 hypogonadism SIDER
c0263888 back disorder SIDER
c0037089 gastrointestinal signs and symptoms SIDER
c0302314 xanthomas SIDER
c0302314 xanthoma SIDER
c0008497 choriocarcinoma SIDER
c0023794 lipidosis SIDER
c0018418 gynecomastia SIDER
c0002994 angioneurotic oedema SIDER
c0002994 angioneurotic edema SIDER
c0002994 urticaria angioedema SIDER
c0002994 giant hives SIDER
c0002994 quincke edema SIDER
c0002994 giant urticaria SIDER
c0002994 angioedema and urticaria SIDER
c0002994 angioedema SIDER
c0858346 gastrointestinal ulcer perforation SIDER
c0013537 eclampsia SIDER
c0270629 epidural abscess SIDER
c0857576 abnormal thyroid function SIDER
c1328332 procedural hypertension SIDER
c0240447 nasal mucosal erythema SIDER
c0427209 hand cramps SIDER
c0023798 lipoma SIDER
c0020604 hypochondriasis SIDER
c0240449 nasal sinus drainage SIDER
c0013589 ectromelia SIDER
c0151640 decreased male fertility SIDER
c0008489 chorea SIDER
c0037052 sick sinus syndrome SIDER
c1735914 recurrent pulmonary embolism SIDER
c0151649 injection site fibrosis SIDER
c0151648 fibrinolysis increased SIDER
c0020676 hypothyroidism SIDER
c0231528 muscle soreness SIDER
c0231528 myalgia SIDER
c0231528 myalgias SIDER
c0231528 pain muscle SIDER
c0231528 muscle discomfort SIDER
c0231528 muscle ache SIDER
c0231528 muscle pains SIDER
c0231528 muscle aches SIDER
c0231528 muscular pain SIDER
c0020678 hypotrichosis SIDER
c0020672 hypothermia SIDER
c0920195 aphakic cystoid macular edema SIDER
c0920192 descemetitis SIDER
c0175167 acneiform eruptions SIDER
c0151650 kidney fibrosis SIDER
c0566943 vaginal lesion SIDER
c1258215 ileus SIDER
c0877717 mouth burning SIDER
c0158026 monarthritis SIDER
c0151654 myocardial fibrosis SIDER
c0566948 vaginal swelling SIDER
c0231530 muscle twitch SIDER
c0231530 twitching SIDER
c1328355 locs SIDER
c0003130 anoxia SIDER
c0497481 penile pain SIDER
c0920289 sluggishness SIDER
c0013592 ectropion SIDER
c0240464 neck edema SIDER
c0231688 shuffling gait SIDER
c0040997 trigeminal neuralgia SIDER
c0231686 gait unsteady SIDER
c0013595 eczema SIDER
c0013595 eczema nos SIDER
c0013595 eczematous rash SIDER
c0151667 globulins increased SIDER
c0311335 convulsive status epilepticus SIDER
c0231690 titubation SIDER
c0151664 gastrointestinal perforation SIDER
c0595861 suicide gesture SIDER
c0151662 increased ggt SIDER
c0151661 peripheral gangrene SIDER
c0231694 festination SIDER
c0243010 encephalitis viral SIDER
c0006267 bronchiectasis SIDER
c0003128 anovulation SIDER
c0037036 increased salivation SIDER
c0149630 bicuspid aortic valve SIDER
c0151669 gamma globulins increased SIDER
c0858310 triglycerides normal SIDER
c0006266 bronchial spasm SIDER
c0006266 bronchospasm SIDER
c0006266 bronchospasms SIDER
c0003123 anorexia SIDER
c0003126 anosmia SIDER
c0241057 burning sensation of skin SIDER
c0241057 burning skin SIDER
c1510410 smell perversion SIDER
c1510410 smell alteration SIDER
c1510410 parosmia SIDER
c0040961 tricuspid valve incompetence SIDER
c0020651 postural hypotension SIDER
c0566951 vaginal ulcer SIDER
c0011304 demyelination SIDER
c0011303 demyelinating disorders SIDER
c0151671 glucose tolerance decreased SIDER
c0701811 short term memory loss SIDER
c0151673 gonadotropins decreased SIDER
c0860516 ground glass appearance SIDER
c0003119 anophthalmia SIDER
c0231557 bone development abnormal SIDER
c0020649 hypotension SIDER
c0010380 croup SIDER
c0020641 hypopyon SIDER
c0020640 hypoprothrombinemia SIDER
c0151670 glucocorticoids increased SIDER
c0595877 blood glucose increased SIDER
c0595878 blood sodium increased SIDER
c0595879 increased sodium SIDER
c0234975 convulsions aggravated SIDER
c0234974 simple partial seizures SIDER
c0234979 dysdiadochokinesis SIDER
c1268766 changes in blood pressure SIDER
c0920070 cervical smear test positive SIDER
c0151512 injection site atrophy SIDER
c0151511 breast atrophy SIDER
c0004158 athetosis SIDER
c0001818 agoraphobia SIDER
c0151517 third degree heart block SIDER
c0151514 skin atrophy SIDER
c0010346 crohn's disease SIDER
c0333139 pneumatosis SIDER
c0522348 ear feels clogged SIDER
c0234972 convulsive disorders SIDER
c0004153 atherosclerosis SIDER
c0004153 atherosclerotic vascular disease SIDER
c0347941 chest mass SIDER
c1264613 gastrointestinal infections SIDER
c0153251 respiratory moniliasis SIDER
c0153251 moniliasis respiratory system SIDER
c0041657 loss of consciousness SIDER
c0234967 choreoathetoid movements SIDER
c0541976 gas in stomach SIDER
c0267028 lip pain SIDER
c0011330 tartar SIDER
c0541977 gastrin increased SIDER
c0334192 endometrial atrophy SIDER
c0011334 dental caries SIDER
c0086981 sicca syndrome SIDER
c0341117 esophageal erosions SIDER
c0001824 agranulocytosis SIDER
c0162678 neurofibromatosis SIDER
c0151505 application site reaction SIDER
c0234665 eyelid retraction SIDER
c0520564 ileal ulcer SIDER
c0155964 atrophic glossitis SIDER
c0920046 p wave changes SIDER
c0032994 tubal pregnancy SIDER
c0234953 tongue spasm SIDER
c0234952 oropharyngeal spasm SIDER
c0543698 hypersensitivity syndrome SIDER
c0043515 zollinger-ellison syndrome SIDER
c0043515 ze syndrome SIDER
c0311223 frozen shoulder SIDER
c0267033 lip ulceration SIDER
c0260662 hearing disorder SIDER
c0311220 cutaneous pseudolymphoma SIDER
c0155707 trifascicular block SIDER
c0524909 chronic hepatitis b SIDER
c0004134 ataxia SIDER
c0004134 ataxias SIDER
c0234632 reduced visual acuity SIDER
c0004509 azoospermia SIDER
c0002940 aneurysms SIDER
c0002940 aneurysm SIDER
c0234943 application site anesthesia SIDER
c0231874 inspiratory wheeze SIDER
c0041671 attention deficit SIDER
c0333140 cyst rupture SIDER
c0011351 enamel hypoplasia SIDER
c1279296 chronic leukemia SIDER
c0541992 brain fog DIEGO_Lab
c0004144 collapse of lung SIDER
c0004144 pulmonary collapse SIDER
c0281963 red cell aplasia SIDER
c0541941 erection increased SIDER
c0424551 decreased exercise tolerance SIDER
c0042487 thrombosis venous SIDER
c0042487 mesenteric artery thrombosis SIDER
c0042487 phlebothrombosis SIDER
c0042487 venous thrombosis nos SIDER
c0042487 vein thrombosis SIDER
c0042487 venous thrombosis SIDER
c0042485 venous insufficiency SIDER
c0002957 anger SIDER
c0003079 anisocoria SIDER
c0549209 jitteriness SIDER
c0549209 feeling jittery SIDER
c0011389 plaque SIDER
c0151904 ast increased SIDER
c0151904 elevated sgot SIDER
c0151904 aspartate aminotransferase increase SIDER
c0151904 aspartate aminotransferase increased SIDER
c0151904 sgot increased SIDER
c0151905 sgpt increased SIDER
c0151905 alt increased SIDER
c0151905 alanine aminotransferase increase SIDER
c0151905 alanine aminotransferase increased SIDER
c0151900 serum iron increased SIDER
c0032989 multiple pregnancy SIDER
c0032989 multiple pregnancies SIDER
c0231856 abnormal breath sounds SIDER
c0333161 pseudocyst SIDER
c0002963 prinzmetal variant angina SIDER
c0002963 variant angina SIDER
c0877584 tumor hemorrhage SIDER
c0002962 angina SIDER
c0002962 angina pectoris SIDER
c0002962 anginal pain SIDER
c0002962 angina syndrome SIDER
c0032987 ectopic pregnancy SIDER
c0032987 ectopic pregnancies SIDER
c0281940 pelvic peritonitis SIDER
c1457883 aggression aggravated SIDER
c1457883 combative reaction SIDER
c1457883 aggressive reaction SIDER
c1457883 aggressiveness SIDER
c0151919 bladder stenosis SIDER
c0020701 hysteria SIDER
c0234992 acute dyskinesia SIDER
c0281914 musculoskeletal deformity SIDER
c0034494 rabies SIDER
c0438215 laboratory test abnormal SIDER
c0438215 lab test abnormality SIDER
c0438215 abnormal laboratory findings SIDER
c0438215 lab test abnormal SIDER
c0438215 abnormal laboratory test SIDER
c0438215 laboratory test abnormality SIDER
c0438215 laboratory test abnormal nos SIDER
c0151908 dry skin SIDER
c0151908 skin dryness SIDER
c0151908 skin dry SIDER
c0001883 airways obstruction SIDER
c0151907 discoloration skin SIDER
c0151907 skin discolouration SIDER
c0151907 skin discoloration SIDER
c0231835 tachypnea SIDER
c0023903 liver tumors SIDER
c0277799 intermittent pyrexia SIDER
c1318314 urine epithelial cells SIDER
c0231837 respiratory rate decreased SIDER
c0234985 mental deterioration SIDER
c0032961 gestation SIDER
c0032961 pregnancy SIDER
c0032961 preg SIDER
c0234987 postural dizziness SIDER
c0234988 dizziness exertional SIDER
c0234983 toxic delirium SIDER
c0277794 prostration SIDER
c0858259 nasal discomfort SIDER
c0311277 central obesity SIDER
c0270202 abo haemolytic disease of newborn SIDER
c0151911 generalized spasm SIDER
c0267003 abscess oral SIDER
c0151947 pulmonary artery thrombosis SIDER
c0159056 chest sound abnormalities SIDER
c0151946 pulmonary thrombosis SIDER
c0151945 cerebral venous thrombosis SIDER
c0151942 arterial thrombosis SIDER
c0151942 thrombosis arterial SIDER
c1610622 coital bleeding SIDER
c0151940 hypocalcemic tetany SIDER
c0019825 hoarseness SIDER
c0019829 hodgkin lymphoma SIDER
c2363963 antifungal therapy SIDER
c0151936 tendon disorder SIDER
c0026393 molluscum contagiosum SIDER
c0554309 prerenal azotemia SIDER
c1168341 segmented neutrophils SIDER
c0151934 hypogeusia SIDER
c0151934 gustatory sense diminished SIDER
c0159040 skin texture changes SIDER
c1610638 hypospermia SIDER
c0677061 thoracic spine pain SIDER
c0577659 axillary pain SIDER
c0038826 superinfection SIDER
c0038826 infection superimposed SIDER
c0151966 duodenal ulcer hemorrhage SIDER
c0151966 duodenal ulcer haemorrhage SIDER
c0155919 acute pulmonary edema SIDER
c1557335 ocular surface disease SIDER
c0159076 choluria SIDER
c0151961 tuberculosis reactivated SIDER
c0577628 latex allergy SIDER
c0231807 dyspnea exertional SIDER
c0038833 superior vena cava syndrome SIDER
c0438226 lymphocyte counts below normal SIDER
c0151955 tolerance decreased SIDER
c0278883 metastatic melanoma SIDER
c0151956 tolerance increased SIDER
c0159066 abdominal rigidity SIDER
c0236124 gastrointestinal obstruction SIDER
c0159060 bowel sounds abnormal SIDER
c0151951 thromboplastin decreased SIDER
c0151950 dvt SIDER
c0151950 deep thrombophlebitis SIDER
c0151950 thrombophlebitis deep SIDER
c0151950 deep vein thrombophlebitis SIDER
c0041466 typhoid fever SIDER
c0041466 typhoid SIDER
c1278267 nitrite urine present SIDER
c0155773 portal vein thrombosis SIDER
c0205990 vaginal prolapse SIDER
c0438235 normal liver function tests SIDER
c0438237 abnormal liver enzymes SIDER
c0423434 subretinal fibrosis SIDER
c0700361 upset SIDER
c0700363 idioventricular rhythm SIDER
c0151981 reactivated peptic ulcer SIDER
c0151981 peptic ulcer reactivated SIDER
c0014743 erythema nodosum SIDER
c0014742 erythema multiforme SIDER
c0438244 serum creatinine normal SIDER
c0438243 abnormalities for serum creatinine SIDER
c0438242 abnormal bun SIDER
c0151970 esophageal ulcer SIDER
c0151970 esophagus ulceration SIDER
c0151970 oesophageal ulcer SIDER
c0151970 oesophageal ulceration SIDER
c0151970 esophageal ulceration SIDER
c0151971 intestinal ulcer SIDER
c0151971 intestinal ulceration SIDER
c0525045 mood disorder nos SIDER
c0525045 mood disorders SIDER
c0236141 ecg abnormal specific SIDER
c0033375 prolactinomas SIDER
c0014733 erysipelas SIDER
c0520679 osahs SIDER
c0520676 pmdd SIDER
c0008035 chest wall pain SIDER
c0008033 pleuritic pain SIDER
c0033377 ptosis SIDER
c0008031 chest pain SIDER
c0009241 cognitive disorder nos SIDER
c0009241 cognitive disorder SIDER
c0009241 cognitive disorders SIDER
c1096020 secretion discharge SIDER
c0700345 vulvovaginal candidiasis SIDER
c0159038 pallor and flushing SIDER
c0159039 spontaneous ecchymosis SIDER
c0042420 syncope vasovagal SIDER
c0042420 vasovagal syncope SIDER
c0042420 vasovagal reaction SIDER
c0341164 gastric ulcer haemorrhage SIDER
c0341163 perforated gastric ulcer SIDER
c0151990 urinary casts SIDER
c0236167 iud complication SIDER
c0151991 urination impaired SIDER
c0159020 neonatal seizures SIDER
c0151994 enlarged uterus SIDER
c0151994 uterine enlargement SIDER
c0001807 aggressive SIDER
c0151996 uterine fibroids enlarged SIDER
c0155943 temporomandibular joint arthralgia SIDER
c0151998 uterine spasm SIDER
c0155947 dentofacial anomaly SIDER
c0001800 taste loss SIDER
c0159028 general symptoms SIDER
c0341177 gastric erosions SIDER
c0002902 anencephaly SIDER
c1720775 tubular necrosis SIDER
c1720771 hydrocele SIDER
c0276688 cryptococcal pneumonia SIDER
c0241742 wound hemorrhage SIDER
c0276680 candida albicans infection SIDER
c0342649 vascular calcification SIDER
c0041408 turner syndrome SIDER
c0427160 parkinsonian gait SIDER
c0149709 hepatitis b surface antigen positive SIDER
c0740299 blood culture positive SIDER
c0011351 hypoplasia enamel SIDER
c0149707 hemospermia SIDER
c0149704 gingivostomatitis SIDER
c0018378 guillain barre syndrome SIDER
c0856171 coronary artery disease aggravated SIDER
c0008533 hemophilia b SIDER
c0281784 benign meningioma SIDER
c0009144 tongue coated SIDER
c0009144 coated tongue SIDER
c1292769 c all SIDER
c0241729 weight fluctuation SIDER
c1295715 decreased fibrinogen SIDER
c1168401 scchn SIDER
c0040822 tremor SIDER
c0040823 tremor nec SIDER
c0580546 blood glucose abnormal SIDER
c0580545 normoglycemic SIDER
c0178414 psa decreased SIDER
c0027822 neurodermatitis SIDER
c0178415 prostatic specific antigen increase SIDER
c0856152 buccal mucosal roughening SIDER
c0178416 hypoplastic anemia SIDER
c0856151 fat redistribution SIDER
c0029124 optic atrophy SIDER
c0950124 papilloma viral infection SIDER
c0281773 acute glaucoma SIDER
c0281774 acute psychosis SIDER
c0679254 disease recurrence SIDER
c0236171 increased susceptibility to infection SIDER
c0338237 antibiotic treatment SIDER
c1565489 renal insufficiency SIDER
c0580531 white blood cell count abnormal SIDER
c0241712 vulvar erythema SIDER
c0178421 fibroadenoma of breast SIDER
c0027813 neuritis SIDER
c0037383 sneezing SIDER
c0014848 cardiospasm SIDER
c0036093 salivary glands SIDER
c0029134 optic neuritis SIDER
c0020757 ichthyosis SIDER
c0036091 salivary gland calculus SIDER
c0178428 sinus pause SIDER
c0750394 leukocytes decreased SIDER
c0750394 wbc decreased SIDER
c0750394 white blood cell count decreased SIDER
c0027819 neuroblastoma SIDER
c0856148 porphyria aggravated SIDER
c0497327 amentia SIDER
c0497327 dementia SIDER
c0205929 anal fistula SIDER
c2243088 erosive gastritis SIDER
c0314719 eyes dry SIDER
c0314719 dryness of eyes SIDER
c0314719 dry eyes SIDER
c0314719 dry eye SIDER
c0314719 dry eye nos SIDER
c0314719 eye dryness SIDER
c2243080 intestinal necrosis SIDER
c0030848 peyronie's disease SIDER
c0030848 peyronies disease SIDER
c0030846 penis disorder SIDER
c0241705 difficulty in micturition SIDER
c0856136 fatigue aggravated SIDER
c0587184 serum levels of cholesterol SIDER
c1442837 myocardial necrosis SIDER
c1442839 hypervitaminosis d SIDER
c0027849 neuroleptic malignant SIDER
c1442835 solar dermatitis SIDER
c0856134 chest pain aggravated SIDER
c0856133 back pain aggravated SIDER
c0027830 neurofibroma SIDER
c0276143 viral pharyngitis SIDER
c0240521 nipple tenderness SIDER
c0015402 eye hemorrhage SIDER
c0022104 irritable colon SIDER
c0022104 irritable bowel SIDER
c0022104 colon spastic SIDER
c0022104 membranous colitis SIDER
c0022104 irritable bowel syndrome SIDER
c0022104 spastic colon SIDER
c0022107 irritability SIDER
c0009193 coccydynia SIDER
c0029396 heterotopic ossification SIDER
c0856126 hematuria aggravated SIDER
c0037320 night terrors SIDER
c0009186 coccidioidomycosis SIDER
c0856128 urinary frequency aggravated SIDER
c0375071 vulval cancer SIDER
c0015404 bacterial ocular infection SIDER
c0015403 ocular infections SIDER
c0012569 diplopia SIDER
c0012569 double vision SIDER
c0856120 multiple sclerosis relapse SIDER
c0015407 viral eye infections SIDER
c0740281 multiple allergies SIDER
c0030824 penicillin allergy SIDER
c0030824 allergy to penicillin SIDER
c0684321 regression SIDER
c0855506 red blood cells semen positive SIDER
c0240515 nipple pain SIDER
c1442903 bone spur SIDER
c1442903 exostosis SIDER