-
Notifications
You must be signed in to change notification settings - Fork 1
/
pairs.txt
12525 lines (10020 loc) · 292 KB
/
pairs.txt
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
C0000833 --> C0149520
abscess --> acute cholecystitis
normalized count: 0.2222222222222222
total of first: 9
C0000833 --> C0206633
abscess --> angiomyolipoma
normalized count: 0.2222222222222222
total of first: 9
C0000833 --> C2350019
abscess --> solitary pulmonary nodule
normalized count: 0.2222222222222222
total of first: 9
C0000833 --> C0278861
abscess --> recurrent thyroid cancer
normalized count: 0.2222222222222222
total of first: 9
C0000833 --> C0007134
abscess --> renal cell carcinoma
normalized count: 0.2222222222222222
total of first: 9
C0000833 --> C0392548
abscess --> cauda equina syndrome
normalized count: 0.2222222222222222
total of first: 9
C0000833 --> C0034186
abscess --> pyelonephritis
normalized count: 0.2222222222222222
total of first: 9
C0000833 --> C0035412
abscess --> rhabdomyosarcoma
normalized count: 0.2222222222222222
total of first: 9
C0000833 --> C0022665
abscess --> renal neoplasm
normalized count: 0.2222222222222222
total of first: 9
C0001125 --> C0741611
lactic acidosis --> ischemic bowel
normalized count: 2.0
total of first: 1
C0001261 --> C0027651
actinomycosis --> tumour
normalized count: 0.3333333333333333
total of first: 15
C0001261 --> C0006826
actinomycosis --> malignancy
normalized count: 0.8666666666666667
total of first: 15
C0001261 --> C0558355
actinomycosis --> tonsil carcinoma
normalized count: 0.13333333333333333
total of first: 15
C0001261 --> C0039614
actinomycosis --> tetanus
normalized count: 0.06666666666666667
total of first: 15
C0001261 --> C0153467
actinomycosis --> cancer peritoneum
normalized count: 0.13333333333333333
total of first: 15
C0001261 --> C0001261
actinomycosis --> actinomycosis
normalized count: 0.13333333333333333
total of first: 15
C0001261 --> C0021845
actinomycosis --> bowel perforation
normalized count: 0.13333333333333333
total of first: 15
C0001263 --> C0027651
abdominal actinomycosis --> tumour
normalized count: 1.0
total of first: 2
C0001263 --> C0699790
abdominal actinomycosis --> colon cancer
normalized count: 1.0
total of first: 2
C0001339 --> C0340305
acute pancreatitis --> inferior myocardial infarction
normalized count: 1.0
total of first: 2
C0001339 --> C0037856
acute pancreatitis --> testicular torsion
normalized count: 1.0
total of first: 2
C0001396 --> C0014544
stokes-adams attacks --> epilepsy
normalized count: 2.0
total of first: 2
C0001418 --> C0919267
adenocarcinoma --> ovarian tumor
normalized count: 1.0
total of first: 1
C0001430 --> C0027430
benign adenoma --> nasal polyposis
normalized count: 0.3333333333333333
total of first: 3
C0001430 --> C0029134
benign adenoma --> optic neuritis
normalized count: 0.3333333333333333
total of first: 3
C0001430 --> C0346379
benign adenoma --> ciliary body melanoma
normalized count: 0.6666666666666666
total of first: 3
C0001442 --> C0747742
adenosarcoma --> benign polyps
normalized count: 2.0
total of first: 1
C0001623 --> C0036690
adrenal insufficiency --> sepsis
normalized count: 2.0
total of first: 1
C0001627 --> C0039082
congenital adrenal hyperplasia --> syndrome
normalized count: 1.0
total of first: 2
C0001627 --> C0030443
congenital adrenal hyperplasia --> periodic paralysis
normalized count: 1.0
total of first: 2
C0001883 --> C0004096
airways obstruction --> bronchial asthma
normalized count: 1.6
total of first: 5
C0001883 --> C0015263
airways obstruction --> exercise induced bronchospasm
normalized count: 0.4
total of first: 5
C0002170 --> C0040247
alopecia --> tinea
normalized count: 0.5
total of first: 2
C0002170 --> C4255374
alopecia --> frontal fibrosing alopecia
normalized count: 1.0
total of first: 2
C0002171 --> C4255374
alopecia areata --> frontal fibrosing alopecia
normalized count: 2.0
total of first: 1
C0002390 --> C2350236
extrinsic allergic alveolitis --> idiopathic interstitial pneumonia
normalized count: 2.0
total of first: 1
C0002438 --> C0041327
amebiasis --> pulmonary tuberculosis
normalized count: 0.5
total of first: 4
C0002438 --> C1622502
amebiasis --> portal cirrhosis
normalized count: 0.5
total of first: 4
C0002438 --> C0006826
amebiasis --> malignancy
normalized count: 0.25
total of first: 4
C0002438 --> C0000833
amebiasis --> abscess
normalized count: 0.25
total of first: 4
C0002448 --> C0007137
ameloblastoma --> squamous cell carcinoma
normalized count: 1.0
total of first: 2
C0002448 --> C0151546
ameloblastoma --> carcinoma of oral cavity
normalized count: 1.0
total of first: 2
C0002726 --> C0027439
amyloidosis --> nasopharyngeal tumor
normalized count: 0.5
total of first: 4
C0002726 --> C0699885
amyloidosis --> urinary bladder carcinoma
normalized count: 0.5
total of first: 4
C0002726 --> C0079293
amyloidosis --> epidermolysis bullosa acquisita
normalized count: 0.5
total of first: 4
C0002726 --> C0007933
amyloidosis --> chalazion
normalized count: 0.5
total of first: 4
C0002792 --> C0413235
anaphylaxis --> idiopathic anaphylaxis
normalized count: 0.6666666666666666
total of first: 3
C0002792 --> C0571622
anaphylaxis --> insulin allergy
normalized count: 0.6666666666666666
total of first: 3
C0002792 --> C0002792
anaphylaxis --> anaphylaxis
normalized count: 0.6666666666666666
total of first: 3
C0002892 --> C3463824
pernicious anemia --> myelodysplastic syndrome
normalized count: 2.0
total of first: 1
C0002949 --> C0027651
artery dissection --> tumour
normalized count: 1.0
total of first: 2
C0002949 --> C0037274
artery dissection --> skin conditions
normalized count: 0.5
total of first: 2
C0002986 --> C0007194
fabry disease --> hypertrophic cardiomyopathy
normalized count: 2.0
total of first: 1
C0002989 --> C0006826
angiolymphoid hyperplasia with eosinophilia --> malignancy
normalized count: 0.5
total of first: 4
C0002989 --> C0033838
angiolymphoid hyperplasia with eosinophilia --> kimura's disease
normalized count: 0.5
total of first: 4
C0002989 --> C0085653
angiolymphoid hyperplasia with eosinophilia --> pyogenic granuloma
normalized count: 0.5
total of first: 4
C0002989 --> C0027651
angiolymphoid hyperplasia with eosinophilia --> tumour
normalized count: 0.5
total of first: 4
C0003486 --> C0151744
aortic aneurysm --> ischemic heart disease
normalized count: 0.3333333333333333
total of first: 6
C0003486 --> C0027651
aortic aneurysm --> tumour
normalized count: 0.6666666666666666
total of first: 6
C0003486 --> C0034089
aortic aneurysm --> pulmonic stenosis
normalized count: 0.3333333333333333
total of first: 6
C0003486 --> C0042928
aortic aneurysm --> vocal cord palsy
normalized count: 0.3333333333333333
total of first: 6
C0003505 --> C2062868
aortic valve prolapse --> aortic sinus aneurysm
normalized count: 2.0
total of first: 1
C0003615 --> C4082937
appendicitis --> necrotizing enterocolitis
normalized count: 0.25
total of first: 8
C0003615 --> C0238419
appendicitis --> fournier's gangrene
normalized count: 0.25
total of first: 8
C0003615 --> C0027651
appendicitis --> tumour
normalized count: 0.25
total of first: 8
C0003615 --> C0162565
appendicitis --> acute intermittent porphyria
normalized count: 0.25
total of first: 8
C0003615 --> C0149520
appendicitis --> acute cholecystitis
normalized count: 0.5
total of first: 8
C0003615 --> C0010692
appendicitis --> cystitis
normalized count: 0.25
total of first: 8
C0003615 --> C0006826
appendicitis --> malignancy
normalized count: 0.25
total of first: 8
C0003811 --> C0015930
cardiac arrhythmias --> fetal distress
normalized count: 1.0
total of first: 2
C0003811 --> C0014544
cardiac arrhythmias --> epilepsy
normalized count: 1.0
total of first: 2
C0003864 --> C0442874
arthritis --> neuropathy
normalized count: 1.0
total of first: 1
C0003868 --> C0003873
gouty arthritis --> rheumatoid arthritis
normalized count: 2.0
total of first: 1
C0003873 --> C0032533
rheumatoid arthritis --> polymyalgia rheumatica
normalized count: 2.0
total of first: 1
C0003962 --> C0032227
ascites --> pleural effusion
normalized count: 2.0
total of first: 1
C0004030 --> C0040381
aspergillosis --> tolosa-hunt syndrome
normalized count: 0.6666666666666666
total of first: 3
C0004030 --> C0006826
aspergillosis --> malignancy
normalized count: 0.6666666666666666
total of first: 3
C0004030 --> C0025286
aspergillosis --> meningioma
normalized count: 0.6666666666666666
total of first: 3
C0004031 --> C0041327
allergic bronchopulmonary aspergillosis --> pulmonary tuberculosis
normalized count: 0.6666666666666666
total of first: 3
C0004031 --> C0276653
allergic bronchopulmonary aspergillosis --> invasive pulmonary aspergillosis
normalized count: 0.6666666666666666
total of first: 3
C0004031 --> C0747667
allergic bronchopulmonary aspergillosis --> recurrent bacterial pneumonia
normalized count: 0.6666666666666666
total of first: 3
C0004114 --> C0038868
astrocytoma --> progressive supranuclear palsy
normalized count: 1.0
total of first: 2
C0004114 --> C0002418
astrocytoma --> amblyopia
normalized count: 0.5
total of first: 2
C0004364 --> C0677866
autoimmune disease --> brainstem tumor
normalized count: 2.0
total of first: 1
C0004576 --> C0398650
babesiosis --> idiopathic thrombocytopenic purpura
normalized count: 2.0
total of first: 1
C0005129 --> C0398650
bernard-soulier syndrome --> idiopathic thrombocytopenic purpura
normalized count: 2.0
total of first: 1
C0005699 --> C3826044
blast crisis --> lymphoblastic leukemia in children
normalized count: 2.0
total of first: 1
C0005716 --> C0349453
blastomycosis --> thyroid lump
normalized count: 2.0
total of first: 1
C0005818 --> C0398650
platelet disorders --> idiopathic thrombocytopenic purpura
normalized count: 2.0
total of first: 1
C0006079 --> C0206754
bowen's disease --> neuroendocrine tumour
normalized count: 2.0
total of first: 1
C0006091 --> C0751689
brachial plexus lesion --> peripheral nerve sheath tumor
normalized count: 2.0
total of first: 1
C0006118 --> C0038454
brain tumor --> stroke
normalized count: 2.0
total of first: 1
C0006145 --> C0007137
disease of breast --> squamous cell carcinoma
normalized count: 2.0
total of first: 1
C0006309 --> C0029408
brucellosis --> osteoarthrosis
normalized count: 0.6666666666666666
total of first: 3
C0006309 --> C0036202
brucellosis --> sarcoidosis
normalized count: 0.6666666666666666
total of first: 3
C0006309 --> C0019099
brucellosis --> crimean-congo hemorrhagic fever
normalized count: 0.6666666666666666
total of first: 3
C0006818 --> C0009324
campylobacter infection --> ulcerative colitis
normalized count: 2.0
total of first: 1
C0006826 --> C0162557
malignancy --> acute hepatic failure
normalized count: 0.2222222222222222
total of first: 9
C0006826 --> C0007112
malignancy --> prostate adenocarcinoma
normalized count: 0.2222222222222222
total of first: 9
C0006826 --> C0238246
malignancy --> hepatic hemangioma
normalized count: 0.2222222222222222
total of first: 9
C0006826 --> C0026269
malignancy --> mitral stenosis
normalized count: 0.2222222222222222
total of first: 9
C0006826 --> C0017168
malignancy --> gastro-oesophageal reflux
normalized count: 0.2222222222222222
total of first: 9
C0006826 --> C0079840
malignancy --> milk allergy
normalized count: 0.2222222222222222
total of first: 9
C0006826 --> C0040147
malignancy --> thyroiditis
normalized count: 0.2222222222222222
total of first: 9
C0006826 --> C1262481
malignancy --> eosinophilic gastroenteritis
normalized count: 0.2222222222222222
total of first: 9
C0006826 --> C0334108
malignancy --> polyposis
normalized count: 0.2222222222222222
total of first: 9
C0007097 --> C0206694
carcinoma --> mucoepidermoid carcinoma
normalized count: 0.14285714285714285
total of first: 14
C0007097 --> C0302840
carcinoma --> toxic adenoma
normalized count: 0.07142857142857142
total of first: 14
C0007097 --> C0024959
carcinoma --> maxillary sinusitis
normalized count: 0.14285714285714285
total of first: 14
C0007097 --> C0206674
carcinoma --> villous adenoma
normalized count: 0.14285714285714285
total of first: 14
C0007097 --> C0002448
carcinoma --> ameloblastoma
normalized count: 0.14285714285714285
total of first: 14
C0007097 --> C0262655
carcinoma --> recurrent urinary tract infections
normalized count: 0.14285714285714285
total of first: 14
C0007097 --> C0010709
carcinoma --> cyst
normalized count: 0.07142857142857142
total of first: 14
C0007097 --> C0156147
carcinoma --> crohn's colitis
normalized count: 0.14285714285714285
total of first: 14
C0007097 --> C0699885
carcinoma --> urinary bladder carcinoma
normalized count: 0.14285714285714285
total of first: 14
C0007097 --> C1142077
carcinoma --> fungal sinusitis
normalized count: 0.14285714285714285
total of first: 14
C0007097 --> C0027651
carcinoma --> tumour
normalized count: 0.14285714285714285
total of first: 14
C0007097 --> C0035854
carcinoma --> acne rosacea
normalized count: 0.14285714285714285
total of first: 14
C0007097 --> C0024081
carcinoma --> ludwig's angina
normalized count: 0.14285714285714285
total of first: 14
C0007097 --> C0346053
carcinoma --> atypical fibroxanthoma
normalized count: 0.07142857142857142
total of first: 14
C0007102 --> C0041343
colonic cancer --> tubo-ovarian abscess
normalized count: 2.0
total of first: 1
C0007113 --> C0012634
rectal cancer --> disease
normalized count: 2.0
total of first: 1
C0007117 --> C0085653
basal cell carcinoma --> pyogenic granuloma
normalized count: 0.3333333333333333
total of first: 6
C0007117 --> C0334438
basal cell carcinoma --> superficial spreading malignant melanoma
normalized count: 0.3333333333333333
total of first: 6
C0007117 --> C0013592
basal cell carcinoma --> ectropion
normalized count: 0.3333333333333333
total of first: 6
C0007117 --> C1274594
basal cell carcinoma --> lichenoid keratosis
normalized count: 0.3333333333333333
total of first: 6
C0007117 --> C0029463
basal cell carcinoma --> osteogenic sarcoma
normalized count: 0.3333333333333333
total of first: 6
C0007117 --> C0206754
basal cell carcinoma --> neuroendocrine tumour
normalized count: 0.16666666666666666
total of first: 6
C0007120 --> C0032285
bronchioloalveolar carcinoma --> pneumonia
normalized count: 2.0
total of first: 1
C0007129 --> C0007102
merkel cell carcinoma --> colonic cancer
normalized count: 0.4
total of first: 5
C0007129 --> C0007933
merkel cell carcinoma --> chalazion
normalized count: 0.8
total of first: 5
C0007129 --> C0007117
merkel cell carcinoma --> basal cell carcinoma
normalized count: 0.4
total of first: 5
C0007129 --> C0742960
merkel cell carcinoma --> benign cyst
normalized count: 0.4
total of first: 5
C0007130 --> C0000833
mucinous adenocarcinoma --> abscess
normalized count: 1.0
total of first: 2
C0007130 --> C0023798
mucinous adenocarcinoma --> lipoma
normalized count: 1.0
total of first: 2
C0007134 --> C0041296
renal cell carcinoma --> tuberculosis
normalized count: 0.3333333333333333
total of first: 3
C0007134 --> C0178879
renal cell carcinoma --> obstructive uropathy
normalized count: 0.6666666666666666
total of first: 3
C0007134 --> C0005967
renal cell carcinoma --> bone tumour
normalized count: 0.6666666666666666
total of first: 3
C0007137 --> C0029443
squamous cell carcinoma --> osteomyelitis
normalized count: 0.1111111111111111
total of first: 18
C0007137 --> C0027121
squamous cell carcinoma --> myositis
normalized count: 0.1111111111111111
total of first: 18
C0007137 --> C0000833
squamous cell carcinoma --> abscess
normalized count: 0.1111111111111111
total of first: 18
C0007137 --> C0729233
squamous cell carcinoma --> thoracic
normalized count: 0.1111111111111111
total of first: 18
C0007137 --> C0007971
squamous cell carcinoma --> inflammation lip
normalized count: 0.1111111111111111
total of first: 18
C0007137 --> C0151463
squamous cell carcinoma --> breast abscess
normalized count: 0.1111111111111111
total of first: 18
C0007137 --> C0010709
squamous cell carcinoma --> cyst
normalized count: 0.1111111111111111
total of first: 18
C0007137 --> C0026393
squamous cell carcinoma --> molluscum contagiosum
normalized count: 0.1111111111111111
total of first: 18
C0007137 --> C0162836
squamous cell carcinoma --> hidradenitis suppurativa
normalized count: 0.1111111111111111
total of first: 18
C0007137 --> C0155237
squamous cell carcinoma --> acute dacryocystitis
normalized count: 0.1111111111111111
total of first: 18
C0007137 --> C0155395
squamous cell carcinoma --> malignant otitis externa
normalized count: 0.1111111111111111
total of first: 18
C0007137 --> C0085653
squamous cell carcinoma --> pyogenic granuloma
normalized count: 0.1111111111111111
total of first: 18
C0007137 --> C0031157
squamous cell carcinoma --> peritonsillar abscess
normalized count: 0.1111111111111111
total of first: 18
C0007137 --> C1853193
squamous cell carcinoma --> cutaneous infections
normalized count: 0.1111111111111111
total of first: 18
C0007137 --> C0030578
squamous cell carcinoma --> paronychia
normalized count: 0.1111111111111111
total of first: 18
C0007137 --> C0030354
squamous cell carcinoma --> papilloma
normalized count: 0.1111111111111111
total of first: 18
C0007137 --> C0022658
squamous cell carcinoma --> nephropathy
normalized count: 0.1111111111111111
total of first: 18
C0007137 --> C0035466
squamous cell carcinoma --> rhinophyma
normalized count: 0.1111111111111111
total of first: 18
C0007138 --> C0282488
transitional cell carcinoma --> interstitial cystitis
normalized count: 2.0
total of first: 1
C0007140 --> C0017547
carcinosarcoma --> giant
normalized count: 2.0
total of first: 1
C0007177 --> C0017152
cardiac tamponade --> gastritis
normalized count: 2.0
total of first: 1
C0007193 --> C0023976
dilated cardiomyopathy --> long qt syndrome
normalized count: 2.0
total of first: 1
C0007222 --> C0010072
cardiovascular diseases --> coronary thrombosis
normalized count: 2.0
total of first: 1
C0007361 --> C0024286
cat-scratch disease --> lymphogranuloma venereum
normalized count: 1.3333333333333333
total of first: 3
C0007361 --> C1458155
cat-scratch disease --> breast neoplasm
normalized count: 0.6666666666666666
total of first: 3
C0007570 --> C0162316
celiac disease --> iron deficiency anemia
normalized count: 0.6666666666666666
total of first: 3
C0007570 --> C0085084
celiac disease --> motor neurone disease
normalized count: 0.3333333333333333
total of first: 3
C0007570 --> C0153690
celiac disease --> bone metastasis
normalized count: 0.6666666666666666
total of first: 3
C0007684 --> C0038454
central nervous system infection --> stroke
normalized count: 0.6666666666666666
total of first: 3
C0007684 --> C0270639
central nervous system infection --> transverse sinus thrombosis
normalized count: 0.3333333333333333
total of first: 3
C0007684 --> C0008325
central nervous system infection --> cholecystitis
normalized count: 0.3333333333333333
total of first: 3
C0007766 --> C0428908
intracranial aneurysm --> sinus node dysfunction
normalized count: 2.0
total of first: 1
C0007787 --> C1263855
transient ischemic attack --> lumbar radiculopathy
normalized count: 2.0
total of first: 1
C0007815 --> C0007815
cerebrospinal fluid rhinorrhea --> cerebrospinal fluid rhinorrhea
normalized count: 2.0
total of first: 1
C0007860 --> C0302592
cervicitis --> cervical cancer
normalized count: 2.0
total of first: 1
C0007933 --> C0038034
chalazion --> sporotrichosis
normalized count: 2.0
total of first: 1
C0007965 --> C0085669
chediak-higashi syndrome --> acute leukemia
normalized count: 2.0
total of first: 1
C0007971 --> C0019348
inflammation lip --> herpes simplex
normalized count: 0.2
total of first: 5
C0007971 --> C0406608
inflammation lip --> pelvic lipomatosis
normalized count: 0.4
total of first: 5
C0007971 --> C2930848
inflammation lip --> infected urachal cyst
normalized count: 0.4
total of first: 5
C0007971 --> C0346379
inflammation lip --> ciliary body melanoma
normalized count: 0.4
total of first: 5
C0007971 --> C1699648
inflammation lip --> ileal obstruction
normalized count: 0.4
total of first: 5
C0008029 --> C0017525
cherubism --> giant cell tumour
normalized count: 2.0
total of first: 1
C0008313 --> C0206698
sclerosing cholangitis --> cholangiocarcinoma
normalized count: 1.0
total of first: 2
C0008313 --> C0740476
sclerosing cholangitis --> biliary carcinoma
normalized count: 1.0
total of first: 2
C0008350 --> C4551687
cholelithiasis --> soft tissue sarcoma
normalized count: 1.0
total of first: 2
C0008350 --> C0010709
cholelithiasis --> cyst
normalized count: 1.0
total of first: 2
C0008373 --> C0027651
cholesteatoma --> tumour
normalized count: 2.0
total of first: 1
C0008487 --> C0027651
chordoma --> tumour
normalized count: 0.3333333333333333
total of first: 6
C0008487 --> C0040136
chordoma --> thyroid neoplasm
normalized count: 0.6666666666666666
total of first: 6
C0008487 --> C0278678
chordoma --> metastatic renal cell carcinoma
normalized count: 0.3333333333333333
total of first: 6
C0008487 --> C0001418
chordoma --> adenocarcinoma
normalized count: 0.3333333333333333
total of first: 6
C0008487 --> C0031925
chordoma --> pilonidal sinus
normalized count: 0.3333333333333333
total of first: 6
C0008493 --> C0919267
invasive mole --> ovarian tumor
normalized count: 2.0
total of first: 1
C0008582 --> C0023281
chromoblastomycosis --> leishmaniasis
normalized count: 0.25
total of first: 4
C0008582 --> C0343643
chromoblastomycosis --> facial wart
normalized count: 0.5
total of first: 4
C0008582 --> C4476828
chromoblastomycosis --> palmoplantar psoriasis
normalized count: 0.5
total of first: 4
C0008582 --> C0023351
chromoblastomycosis --> tuberculoid leprosy
normalized count: 0.5
total of first: 4
C0008728 --> C0151744
churg-strauss syndrome --> ischemic heart disease
normalized count: 1.0
total of first: 1
C0008928 --> C0035579
cleidocranial dysplasia --> rickets
normalized count: 2.0
total of first: 1
C0009186 --> C0011616
coccidioidomycosis --> contact dermatitis
normalized count: 1.0
total of first: 2
C0009186 --> C0006826
coccidioidomycosis --> malignancy
normalized count: 1.0
total of first: 2