-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwikigraph.html
More file actions
219 lines (173 loc) · 71.2 KB
/
Copy pathwikigraph.html
File metadata and controls
219 lines (173 loc) · 71.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/vis/4.16.1/vis.css" type="text/css" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/vis/4.16.1/vis-network.min.js"> </script>
<center>
<h1></h1>
</center>
<!-- <link rel="stylesheet" href="../node_modules/vis/dist/vis.min.css" type="text/css" />
<script type="text/javascript" src="../node_modules/vis/dist/vis.js"> </script>-->
<style type="text/css">
#mynetwork {
width: 75%;
height: px;
background-color: #222222;
border: 1px solid lightgray;
position: relative;
float: left;
}
#loadingBar {
position:absolute;
top:0px;
left:0px;
width: 75%;
height: px;
background-color:rgba(200,200,200,0.8);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
opacity:1;
}
#bar {
position:absolute;
top:0px;
left:0px;
width:20px;
height:20px;
margin:auto auto auto auto;
border-radius:11px;
border:2px solid rgba(30,30,30,0.05);
background: rgb(0, 173, 246); /* Old browsers */
box-shadow: 2px 0px 4px rgba(0,0,0,0.4);
}
#border {
position:absolute;
top:10px;
left:10px;
width:500px;
height:23px;
margin:auto auto auto auto;
box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
border-radius:10px;
}
#text {
position:absolute;
top:8px;
left:530px;
width:30px;
height:50px;
margin:auto auto auto auto;
font-size:22px;
color: #000000;
}
div.outerBorder {
position:relative;
top:400px;
width:600px;
height:44px;
margin:auto auto auto auto;
border:8px solid rgba(0,0,0,0.1);
background: rgb(252,252,252); /* Old browsers */
background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,252,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
border-radius:72px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
#config {
float: left;
width: 400px;
height: 600px;
}
</style>
</head>
<body>
<div id = "mynetwork"></div>
<div id="loadingBar">
<div class="outerBorder">
<div id="text">0%</div>
<div id="border">
<div id="bar"></div>
</div>
</div>
</div>
<div id = "config"></div>
<script type="text/javascript">
// initialize global variables.
var edges;
var nodes;
var network;
var container;
var options, data;
// This method is responsible for drawing the graph, returns the drawn network
function drawGraph() {
var container = document.getElementById('mynetwork');
// parsing and collecting nodes and edges from the python
nodes = new vis.DataSet([{"font": {"color": "white"}, "id": "Amphotericin_b", "label": "Amphotericin_b", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Antifungal medication", "label": "Antifungal medication", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Mycosis", "label": "Mycosis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Leishmaniasis", "label": "Leishmaniasis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Mucormycosis", "label": "Mucormycosis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Aspergillosis", "label": "Aspergillosis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Blastomycosis", "label": "Blastomycosis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Candida infections", "label": "Candida infections", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Coccidioidomycosis", "label": "Coccidioidomycosis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Cryptococcosis", "label": "Cryptococcosis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Flucytosine", "label": "Flucytosine", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Intravenously", "label": "Intravenously", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pharmaceutical", "label": "Pharmaceutical", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Fungicide", "label": "Fungicide", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Fungistatic", "label": "Fungistatic", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Candida_infections", "label": "Candida_infections", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Tinea corporis", "label": "Tinea corporis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Tinea cruris", "label": "Tinea cruris", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Tinea manuum", "label": "Tinea manuum", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Tinea pedis", "label": "Tinea pedis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Tinea barbae", "label": "Tinea barbae", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pityriasis versicolor", "label": "Pityriasis versicolor", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Eumycetoma", "label": "Eumycetoma", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Chromoblastomycosis", "label": "Chromoblastomycosis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Histoplasmosis", "label": "Histoplasmosis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pneumocystis pneumonia", "label": "Pneumocystis pneumonia", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Nodule (medicine)", "label": "Nodule (medicine)", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pneumonia", "label": "Pneumonia", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Meningitis", "label": "Meningitis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Mycoses", "label": "Mycoses", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Aspergillus", "label": "Aspergillus", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Mold", "label": "Mold", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Lung diseases", "label": "Lung diseases", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Asthma", "label": "Asthma", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Cystic fibrosis", "label": "Cystic fibrosis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Tuberculosis", "label": "Tuberculosis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Stem cell transplant", "label": "Stem cell transplant", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Organ transplant", "label": "Organ transplant", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Immunosuppression", "label": "Immunosuppression", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Corticosteroids", "label": "Corticosteroids", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Cancer", "label": "Cancer", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Blastomyces dermatitidis", "label": "Blastomyces dermatitidis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Fever", "label": "Fever", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Cough", "label": "Cough", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Antifungal_medication", "label": "Antifungal_medication", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Texas", "label": "Texas", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Utah", "label": "Utah", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Mexico", "label": "Mexico", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Lungs", "label": "Lungs", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Brain", "label": "Brain", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Shortness of breath", "label": "Shortness of breath", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Chest pain", "label": "Chest pain", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Headache", "label": "Headache", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Meningism", "label": "Meningism", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Nausea", "label": "Nausea", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Vomiting", "label": "Vomiting", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Photophobia", "label": "Photophobia", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Cognitive impairment", "label": "Cognitive impairment", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Skin", "label": "Skin", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Necrosis", "label": "Necrosis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Amphotericin B", "label": "Amphotericin B", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Candida infection", "label": "Candida infection", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Chromomycosis", "label": "Chromomycosis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Oral administration", "label": "Oral administration", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Intravenous", "label": "Intravenous", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Biocide", "label": "Biocide", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Chemical compound", "label": "Chemical compound", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Parasitism", "label": "Parasitism", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Spore", "label": "Spore", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Lung", "label": "Lung", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Fungus", "label": "Fungus", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pneumocystis jirovecii", "label": "Pneumocystis jirovecii", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Medicine", "label": "Medicine", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Cysts", "label": "Cysts", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Papule", "label": "Papule", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Infection", "label": "Infection", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pathogenic fungi", "label": "Pathogenic fungi", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Subcutaneous tissue", "label": "Subcutaneous tissue", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Dermatophytoses", "label": "Dermatophytoses", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Over-the-counter drugs", "label": "Over-the-counter drugs", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Fungal infection in animals", "label": "Fungal infection in animals", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Candida (genus)", "label": "Candida (genus)", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Yeast", "label": "Yeast", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Oral candidiasis", "label": "Oral candidiasis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Vaginal yeast infection", "label": "Vaginal yeast infection", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Candidiasis", "label": "Candidiasis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Tinea_corporis", "label": "Tinea_corporis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Night sweats", "label": "Night sweats", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Myalgia", "label": "Myalgia", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Fatigue (medical)", "label": "Fatigue (medical)", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Immunodeficiency", "label": "Immunodeficiency", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Help:IPA/English", "label": "Help:IPA/English", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Help:Pronunciation respelling key", "label": "Help:Pronunciation respelling key", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Coccidioides immitis", "label": "Coccidioides immitis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Coccidioides posadasii", "label": "Coccidioides posadasii", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Endemic (epidemiology)", "label": "Endemic (epidemiology)", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Arizona", "label": "Arizona", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "California", "label": "California", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Nevada", "label": "Nevada", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Agriculture", "label": "Agriculture", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Crop yield", "label": "Crop yield", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Profit (economics)", "label": "Profit (economics)", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Fungal infections in animals", "label": "Fungal infections in animals", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Oomycetes", "label": "Oomycetes", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Noun", "label": "Noun", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Adjective", "label": "Adjective", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "New Mexico", "label": "New Mexico", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Athlete\u0027s foot", "label": "Athlete\u0027s foot", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Ringworm", "label": "Ringworm", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Cryptococcus (fungus)", "label": "Cryptococcus (fungus)", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Prescription drug", "label": "Prescription drug", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Host (biology)", "label": "Host (biology)", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Toxin", "label": "Toxin", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Disease", "label": "Disease", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Fungi", "label": "Fungi", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Organism", "label": "Organism", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Plant", "label": "Plant", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Animal", "label": "Animal", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Eukaryotic", "label": "Eukaryotic", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Microorganism", "label": "Microorganism", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Plant pathology", "label": "Plant pathology", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Latin language", "label": "Latin language", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Greek language", "label": "Greek language", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Integumentary system", "label": "Integumentary system", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Vertebrate", "label": "Vertebrate", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Fibroblast", "label": "Fibroblast", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Adipose cells", "label": "Adipose cells", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Macrophage", "label": "Macrophage", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Mesoderm", "label": "Mesoderm", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Dermis", "label": "Dermis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Dermatome (anatomy)", "label": "Dermatome (anatomy)", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Loose connective tissue", "label": "Loose connective tissue", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Fungal infection", "label": "Fungal infection", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Dermatophytosis", "label": "Dermatophytosis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Glabrous skin", "label": "Glabrous skin", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Tinea", "label": "Tinea", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Groin", "label": "Groin", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Two feet-one hand syndrome", "label": "Two feet-one hand syndrome", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Dermatophyte", "label": "Dermatophyte", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Beard", "label": "Beard", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Inflammation", "label": "Inflammation", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Cutaneous", "label": "Cutaneous", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Granuloma", "label": "Granuloma", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Folliculitis", "label": "Folliculitis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Trichophyton mentagrophytes", "label": "Trichophyton mentagrophytes", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Trichophyton verrucosum", "label": "Trichophyton verrucosum", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Malassezia globosa", "label": "Malassezia globosa", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Malassezia furfur", "label": "Malassezia furfur", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Yeasts", "label": "Yeasts", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Subcutaneous_tissue", "label": "Subcutaneous_tissue", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Mucous membrane", "label": "Mucous membrane", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Mouth", "label": "Mouth", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Vagina", "label": "Vagina", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Dysuria", "label": "Dysuria", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Vaginal discharge", "label": "Vaginal discharge", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pronunciation respelling for English", "label": "Pronunciation respelling for English", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Schwa", "label": "Schwa", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Sinus (anatomy)", "label": "Sinus (anatomy)", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Fistula", "label": "Fistula", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Chronic (medicine)", "label": "Chronic (medicine)", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Subcutaneous mycosis", "label": "Subcutaneous mycosis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Histoplasma capsulatum", "label": "Histoplasma capsulatum", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pathology", "label": "Pathology", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Gas exchange", "label": "Gas exchange", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Breathing", "label": "Breathing", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Respiratory tract", "label": "Respiratory tract", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Trachea", "label": "Trachea", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Bronchi", "label": "Bronchi", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Bronchioles", "label": "Bronchioles", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pulmonary alveolus", "label": "Pulmonary alveolus", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pulmonary pleurae", "label": "Pulmonary pleurae", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Tinea_cruris", "label": "Tinea_cruris", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pneumocystis_pneumonia", "label": "Pneumocystis_pneumonia", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Lung_diseases", "label": "Lung_diseases", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Immune system", "label": "Immune system", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Steroid hormone", "label": "Steroid hormone", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Adrenal cortex", "label": "Adrenal cortex", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Vertebrates", "label": "Vertebrates", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Glucocorticoid", "label": "Glucocorticoid", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Mineralocorticoid", "label": "Mineralocorticoid", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pathogenic_fungi", "label": "Pathogenic_fungi", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pityriasis_versicolor", "label": "Pityriasis_versicolor", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Cerebral cortex", "label": "Cerebral cortex", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Neuron", "label": "Neuron", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Cerebellum", "label": "Cerebellum", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Synapse", "label": "Synapse", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Axon", "label": "Axon", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Action potential", "label": "Action potential", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Reflex", "label": "Reflex", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Cough reflex", "label": "Cough reflex", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Inhalation", "label": "Inhalation", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Exhalation", "label": "Exhalation", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Glottis", "label": "Glottis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "BrE", "label": "BrE", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "American Thoracic Society", "label": "American Thoracic Society", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Activities of daily living", "label": "Activities of daily living", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Tripod position", "label": "Tripod position", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pain", "label": "Pain", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Chest", "label": "Chest", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Upper abdomen", "label": "Upper abdomen", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Heart", "label": "Heart", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Angina pectoris", "label": "Angina pectoris", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Diabetes", "label": "Diabetes", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Face", "label": "Face", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Head", "label": "Head", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Neck", "label": "Neck", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Migraine", "label": "Migraine", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Tension-type headache", "label": "Tension-type headache", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Cluster headache", "label": "Cluster headache", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Over-the-counter_drugs", "label": "Over-the-counter_drugs", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Ancient Greek", "label": "Ancient Greek", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "wikt:\u03bd\u03ad\u03ba\u03c1\u03c9\u03c3\u03b9\u03c2", "label": "wikt:\u03bd\u03ad\u03ba\u03c1\u03c9\u03c3\u03b9\u03c2", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Cell injury", "label": "Cell injury", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Death", "label": "Death", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Cell (biology)", "label": "Cell (biology)", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Tissue (biology)", "label": "Tissue (biology)", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Autolysis (biology)", "label": "Autolysis (biology)", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Apoptosis", "label": "Apoptosis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Tinea_barbae", "label": "Tinea_barbae", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Route of administration", "label": "Route of administration", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Medication", "label": "Medication", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Systemic effect", "label": "Systemic effect", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Bloodstream", "label": "Bloodstream", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pharmaceutical drug", "label": "Pharmaceutical drug", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Medical prescription", "label": "Medical prescription", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Over-the-counter drug", "label": "Over-the-counter drug", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Controlled substance", "label": "Controlled substance", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Drug abuse", "label": "Drug abuse", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Practicing without a license", "label": "Practicing without a license", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Prescription drugs", "label": "Prescription drugs", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Regulatory agency", "label": "Regulatory agency", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Physician", "label": "Physician", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Active pharmaceutical ingredient", "label": "Active pharmaceutical ingredient", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pathogen", "label": "Pathogen", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Prescription_drug", "label": "Prescription_drug", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Nodule_(medicine)", "label": "Nodule_(medicine)", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pleural cavity", "label": "Pleural cavity", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Muscles of respiration", "label": "Muscles of respiration", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Common cold", "label": "Common cold", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Influenza", "label": "Influenza", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pharyngitis", "label": "Pharyngitis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Bacterial pneumonia", "label": "Bacterial pneumonia", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Pulmonary embolism", "label": "Pulmonary embolism", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Lung cancer", "label": "Lung cancer", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Severe acute respiratory syndrome", "label": "Severe acute respiratory syndrome", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Coronavirus disease 2019", "label": "Coronavirus disease 2019", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Efficacy", "label": "Efficacy", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Physiology", "label": "Physiology", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Stress (medicine)", "label": "Stress (medicine)", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Carbohydrate", "label": "Carbohydrate", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Metabolism", "label": "Metabolism", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Protein", "label": "Protein", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Catabolism", "label": "Catabolism", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Electrolyte", "label": "Electrolyte", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Tinea_manuum", "label": "Tinea_manuum", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Layman\u0027s terms", "label": "Layman\u0027s terms", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Medical term", "label": "Medical term", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Muscle", "label": "Muscle", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Symptom", "label": "Symptom", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Acute disease", "label": "Acute disease", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Muscle group", "label": "Muscle group", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Virus", "label": "Virus", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Physical trauma", "label": "Physical trauma", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Infectious disease", "label": "Infectious disease", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "HIV", "label": "HIV", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Environmental factor", "label": "Environmental factor", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Nutrition", "label": "Nutrition", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Genetic diseases", "label": "Genetic diseases", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Severe combined immunodeficiency", "label": "Severe combined immunodeficiency", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Geographic coordinate system", "label": "Geographic coordinate system", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Organ (biology)", "label": "Organ (biology)", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Nervous system", "label": "Nervous system", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Invertebrate", "label": "Invertebrate", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Sense", "label": "Sense", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Visual perception", "label": "Visual perception", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Depression (mood)", "label": "Depression (mood)", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Meninges", "label": "Meninges", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Syndrome", "label": "Syndrome", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Neck stiffness", "label": "Neck stiffness", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Differential diagnosis", "label": "Differential diagnosis", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Intracranial hemorrhage", "label": "Intracranial hemorrhage", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Kernig\u0027s sign", "label": "Kernig\u0027s sign", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Brudzi\u0144ski\u0027s sign", "label": "Brudzi\u0144ski\u0027s sign", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Light", "label": "Light", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Phobia", "label": "Phobia", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Fear", "label": "Fear", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Heliophobia", "label": "Heliophobia", "shape": "dot", "size": 10}, {"font": {"color": "white"}, "id": "Cognition", "label": "Cognition", "shape": "dot", "size": 10}]);
edges = new vis.DataSet([{"from": "Amphotericin_b", "to": "Antifungal medication", "weight": 1}, {"from": "Amphotericin_b", "to": "Mycosis", "weight": 1}, {"from": "Amphotericin_b", "to": "Leishmaniasis", "weight": 1}, {"from": "Amphotericin_b", "to": "Mucormycosis", "weight": 1}, {"from": "Amphotericin_b", "to": "Aspergillosis", "weight": 1}, {"from": "Amphotericin_b", "to": "Blastomycosis", "weight": 1}, {"from": "Amphotericin_b", "to": "Candida infections", "weight": 1}, {"from": "Amphotericin_b", "to": "Coccidioidomycosis", "weight": 1}, {"from": "Amphotericin_b", "to": "Cryptococcosis", "weight": 1}, {"from": "Amphotericin_b", "to": "Flucytosine", "weight": 1}, {"from": "Amphotericin_b", "to": "Intravenously", "weight": 1}, {"from": "Amphotericin_b", "to": "Pharmaceutical", "weight": 1}, {"from": "Amphotericin_b", "to": "Fungicide", "weight": 1}, {"from": "Amphotericin_b", "to": "Fungistatic", "weight": 1}, {"from": "Antifungal medication", "to": "Candida_infections", "weight": 1}, {"from": "Antifungal medication", "to": "Mycosis", "weight": 1}, {"from": "Mycosis", "to": "Tinea corporis", "weight": 1}, {"from": "Mycosis", "to": "Tinea cruris", "weight": 1}, {"from": "Mycosis", "to": "Tinea manuum", "weight": 1}, {"from": "Mycosis", "to": "Tinea pedis", "weight": 1}, {"from": "Mycosis", "to": "Tinea barbae", "weight": 1}, {"from": "Mycosis", "to": "Pityriasis versicolor", "weight": 1}, {"from": "Mycosis", "to": "Eumycetoma", "weight": 1}, {"from": "Mycosis", "to": "Chromoblastomycosis", "weight": 1}, {"from": "Mycosis", "to": "Cryptococcosis", "weight": 1}, {"from": "Mycosis", "to": "Histoplasmosis", "weight": 1}, {"from": "Mycosis", "to": "Pneumocystis pneumonia", "weight": 1}, {"from": "Mycosis", "to": "Aspergillosis", "weight": 1}, {"from": "Mycosis", "to": "Mucormycosis", "weight": 1}, {"from": "Mycosis", "to": "Nodule (medicine)", "weight": 1}, {"from": "Mycosis", "to": "Pneumonia", "weight": 1}, {"from": "Mycosis", "to": "Meningitis", "weight": 1}, {"from": "Mycosis", "to": "Mycoses", "weight": 1}, {"from": "Mycosis", "to": "Aspergillus", "weight": 1}, {"from": "Mycosis", "to": "Mold", "weight": 1}, {"from": "Mycosis", "to": "Lung diseases", "weight": 1}, {"from": "Mycosis", "to": "Asthma", "weight": 1}, {"from": "Mycosis", "to": "Cystic fibrosis", "weight": 1}, {"from": "Mycosis", "to": "Tuberculosis", "weight": 1}, {"from": "Mycosis", "to": "Stem cell transplant", "weight": 1}, {"from": "Mycosis", "to": "Organ transplant", "weight": 1}, {"from": "Mycosis", "to": "Immunosuppression", "weight": 1}, {"from": "Mycosis", "to": "Corticosteroids", "weight": 1}, {"from": "Mycosis", "to": "Cancer", "weight": 1}, {"from": "Mycosis", "to": "Mycosis", "weight": 1}, {"from": "Mycosis", "to": "Blastomyces dermatitidis", "weight": 1}, {"from": "Mycosis", "to": "Fever", "weight": 1}, {"from": "Mycosis", "to": "Cough", "weight": 1}, {"from": "Mycosis", "to": "Blastomycosis", "weight": 1}, {"from": "Mycosis", "to": "Coccidioidomycosis", "weight": 1}, {"from": "Mycosis", "to": "Antifungal_medication", "weight": 1}, {"from": "Mycosis", "to": "Texas", "weight": 1}, {"from": "Mycosis", "to": "Utah", "weight": 1}, {"from": "Mycosis", "to": "Mexico", "weight": 1}, {"from": "Mycosis", "to": "Lungs", "weight": 1}, {"from": "Mycosis", "to": "Brain", "weight": 1}, {"from": "Mycosis", "to": "Shortness of breath", "weight": 1}, {"from": "Mycosis", "to": "Chest pain", "weight": 1}, {"from": "Mycosis", "to": "Headache", "weight": 1}, {"from": "Mycosis", "to": "Meningism", "weight": 1}, {"from": "Mycosis", "to": "Nausea", "weight": 1}, {"from": "Mycosis", "to": "Vomiting", "weight": 1}, {"from": "Mycosis", "to": "Photophobia", "weight": 1}, {"from": "Mycosis", "to": "Cognitive impairment", "weight": 1}, {"from": "Mycosis", "to": "Skin", "weight": 1}, {"from": "Mycosis", "to": "Necrosis", "weight": 1}, {"from": "Mycosis", "to": "Amphotericin B", "weight": 1}, {"from": "Mycosis", "to": "Candida infection", "weight": 1}, {"from": "Mycosis", "to": "Chromomycosis", "weight": 1}, {"from": "Mycosis", "to": "Oral administration", "weight": 1}, {"from": "Mycosis", "to": "Intravenous", "weight": 1}, {"from": "Mycosis", "to": "Biocide", "weight": 1}, {"from": "Mycosis", "to": "Chemical compound", "weight": 1}, {"from": "Mycosis", "to": "Parasitism", "weight": 1}, {"from": "Mycosis", "to": "Spore", "weight": 1}, {"from": "Mycosis", "to": "Flucytosine", "weight": 1}, {"from": "Mycosis", "to": "Lung", "weight": 1}, {"from": "Mycosis", "to": "Fungus", "weight": 1}, {"from": "Mycosis", "to": "Pneumocystis jirovecii", "weight": 1}, {"from": "Mycosis", "to": "Medicine", "weight": 1}, {"from": "Mycosis", "to": "Cysts", "weight": 1}, {"from": "Mycosis", "to": "Papule", "weight": 1}, {"from": "Mycosis", "to": "Infection", "weight": 1}, {"from": "Mycosis", "to": "Pathogenic fungi", "weight": 1}, {"from": "Mycosis", "to": "Subcutaneous tissue", "weight": 1}, {"from": "Mycosis", "to": "Dermatophytoses", "weight": 1}, {"from": "Mycosis", "to": "Over-the-counter drugs", "weight": 1}, {"from": "Mycosis", "to": "Leishmaniasis", "weight": 1}, {"from": "Mycosis", "to": "Candida infections", "weight": 1}, {"from": "Mycosis", "to": "Intravenously", "weight": 1}, {"from": "Mycosis", "to": "Fungal infection in animals", "weight": 1}, {"from": "Mycosis", "to": "Candida (genus)", "weight": 1}, {"from": "Mycosis", "to": "Yeast", "weight": 1}, {"from": "Mycosis", "to": "Oral candidiasis", "weight": 1}, {"from": "Mycosis", "to": "Vaginal yeast infection", "weight": 1}, {"from": "Mucormycosis", "to": "Cryptococcosis", "weight": 1}, {"from": "Mucormycosis", "to": "Blastomycosis", "weight": 1}, {"from": "Mucormycosis", "to": "Candidiasis", "weight": 1}, {"from": "Mucormycosis", "to": "Tinea_corporis", "weight": 1}, {"from": "Mucormycosis", "to": "Chromoblastomycosis", "weight": 1}, {"from": "Mucormycosis", "to": "Histoplasmosis", "weight": 1}, {"from": "Mucormycosis", "to": "Aspergillosis", "weight": 1}, {"from": "Aspergillosis", "to": "Night sweats", "weight": 1}, {"from": "Aspergillosis", "to": "Myalgia", "weight": 1}, {"from": "Aspergillosis", "to": "Fatigue (medical)", "weight": 1}, {"from": "Aspergillosis", "to": "Immunodeficiency", "weight": 1}, {"from": "Aspergillosis", "to": "Fungal infection in animals", "weight": 1}, {"from": "Aspergillosis", "to": "Candida (genus)", "weight": 1}, {"from": "Aspergillosis", "to": "Yeast", "weight": 1}, {"from": "Aspergillosis", "to": "Oral candidiasis", "weight": 1}, {"from": "Aspergillosis", "to": "Vaginal yeast infection", "weight": 1}, {"from": "Aspergillosis", "to": "Fever", "weight": 1}, {"from": "Aspergillosis", "to": "Help:IPA/English", "weight": 1}, {"from": "Aspergillosis", "to": "Help:Pronunciation respelling key", "weight": 1}, {"from": "Aspergillosis", "to": "Coccidioides immitis", "weight": 1}, {"from": "Aspergillosis", "to": "Coccidioides posadasii", "weight": 1}, {"from": "Aspergillosis", "to": "Endemic (epidemiology)", "weight": 1}, {"from": "Aspergillosis", "to": "Arizona", "weight": 1}, {"from": "Aspergillosis", "to": "California", "weight": 1}, {"from": "Aspergillosis", "to": "Nevada", "weight": 1}, {"from": "Aspergillosis", "to": "Cryptococcosis", "weight": 1}, {"from": "Aspergillosis", "to": "Fungistatic", "weight": 1}, {"from": "Aspergillosis", "to": "Agriculture", "weight": 1}, {"from": "Aspergillosis", "to": "Crop yield", "weight": 1}, {"from": "Aspergillosis", "to": "Profit (economics)", "weight": 1}, {"from": "Aspergillosis", "to": "Fungal infections in animals", "weight": 1}, {"from": "Aspergillosis", "to": "Oomycetes", "weight": 1}, {"from": "Aspergillosis", "to": "Fungus", "weight": 1}, {"from": "Aspergillosis", "to": "Noun", "weight": 1}, {"from": "Aspergillosis", "to": "Adjective", "weight": 1}, {"from": "Aspergillosis", "to": "Infection", "weight": 1}, {"from": "Aspergillosis", "to": "Pathogenic fungi", "weight": 1}, {"from": "Aspergillosis", "to": "Subcutaneous tissue", "weight": 1}, {"from": "Aspergillosis", "to": "Dermatophytoses", "weight": 1}, {"from": "Aspergillosis", "to": "Tinea corporis", "weight": 1}, {"from": "Aspergillosis", "to": "Tinea cruris", "weight": 1}, {"from": "Aspergillosis", "to": "Tinea manuum", "weight": 1}, {"from": "Aspergillosis", "to": "Tinea pedis", "weight": 1}, {"from": "Aspergillosis", "to": "Tinea barbae", "weight": 1}, {"from": "Aspergillosis", "to": "Pityriasis versicolor", "weight": 1}, {"from": "Aspergillosis", "to": "Blastomycosis", "weight": 1}, {"from": "Aspergillosis", "to": "Candidiasis", "weight": 1}, {"from": "Aspergillosis", "to": "Tinea_corporis", "weight": 1}, {"from": "Aspergillosis", "to": "Chromoblastomycosis", "weight": 1}, {"from": "Aspergillosis", "to": "Histoplasmosis", "weight": 1}, {"from": "Aspergillosis", "to": "Eumycetoma", "weight": 1}, {"from": "Aspergillosis", "to": "Pneumocystis pneumonia", "weight": 1}, {"from": "Aspergillosis", "to": "Aspergillosis", "weight": 1}, {"from": "Aspergillosis", "to": "Nodule (medicine)", "weight": 1}, {"from": "Aspergillosis", "to": "Pneumonia", "weight": 1}, {"from": "Aspergillosis", "to": "Meningitis", "weight": 1}, {"from": "Blastomycosis", "to": "New Mexico", "weight": 1}, {"from": "Blastomycosis", "to": "Texas", "weight": 1}, {"from": "Blastomycosis", "to": "Utah", "weight": 1}, {"from": "Blastomycosis", "to": "Mexico", "weight": 1}, {"from": "Blastomycosis", "to": "Lungs", "weight": 1}, {"from": "Blastomycosis", "to": "Pneumonia", "weight": 1}, {"from": "Blastomycosis", "to": "Brain", "weight": 1}, {"from": "Blastomycosis", "to": "Meningitis", "weight": 1}, {"from": "Blastomycosis", "to": "Cough", "weight": 1}, {"from": "Blastomycosis", "to": "Shortness of breath", "weight": 1}, {"from": "Blastomycosis", "to": "Chest pain", "weight": 1}, {"from": "Blastomycosis", "to": "Fever", "weight": 1}, {"from": "Blastomycosis", "to": "Headache", "weight": 1}, {"from": "Blastomycosis", "to": "Eumycetoma", "weight": 1}, {"from": "Blastomycosis", "to": "Chromoblastomycosis", "weight": 1}, {"from": "Blastomycosis", "to": "Cryptococcosis", "weight": 1}, {"from": "Blastomycosis", "to": "Histoplasmosis", "weight": 1}, {"from": "Blastomycosis", "to": "Pneumocystis pneumonia", "weight": 1}, {"from": "Blastomycosis", "to": "Nodule (medicine)", "weight": 1}, {"from": "Blastomycosis", "to": "Fungal infection in animals", "weight": 1}, {"from": "Blastomycosis", "to": "Candida (genus)", "weight": 1}, {"from": "Blastomycosis", "to": "Yeast", "weight": 1}, {"from": "Blastomycosis", "to": "Oral candidiasis", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Fungicide", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Fungistatic", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Athlete\u0027s foot", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Ringworm", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Candidiasis", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Cryptococcus (fungus)", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Meningitis", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Prescription drug", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Over-the-counter drugs", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Infection", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Pathogenic fungi", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Subcutaneous tissue", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Dermatophytoses", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Tinea corporis", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Tinea cruris", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Tinea manuum", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Tinea pedis", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Tinea barbae", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Pityriasis versicolor", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Host (biology)", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Toxin", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Disease", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Fungi", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Organism", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Plant", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Animal", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Eukaryotic", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Microorganism", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Plant pathology", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Latin language", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Greek language", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Integumentary system", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Vertebrate", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Fibroblast", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Adipose cells", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Macrophage", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Mesoderm", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Dermis", "weight": 1}, {"from": "Coccidioidomycosis", "to": "Dermatome (anatomy)", "weight": 1}, {"from": "Cryptococcosis", "to": "Candida_infections", "weight": 1}, {"from": "Cryptococcosis", "to": "Eumycetoma", "weight": 1}, {"from": "Cryptococcosis", "to": "Chromoblastomycosis", "weight": 1}, {"from": "Cryptococcosis", "to": "Cryptococcosis", "weight": 1}, {"from": "Cryptococcosis", "to": "Histoplasmosis", "weight": 1}, {"from": "Cryptococcosis", "to": "Pneumocystis pneumonia", "weight": 1}, {"from": "Cryptococcosis", "to": "Nodule (medicine)", "weight": 1}, {"from": "Cryptococcosis", "to": "Pneumonia", "weight": 1}, {"from": "Cryptococcosis", "to": "Meningitis", "weight": 1}, {"from": "Cryptococcosis", "to": "Mycoses", "weight": 1}, {"from": "Cryptococcosis", "to": "Aspergillus", "weight": 1}, {"from": "Cryptococcosis", "to": "Mold", "weight": 1}, {"from": "Cryptococcosis", "to": "Lung diseases", "weight": 1}, {"from": "Cryptococcosis", "to": "Asthma", "weight": 1}, {"from": "Cryptococcosis", "to": "Cystic fibrosis", "weight": 1}, {"from": "Cryptococcosis", "to": "Tuberculosis", "weight": 1}, {"from": "Cryptococcosis", "to": "Stem cell transplant", "weight": 1}, {"from": "Cryptococcosis", "to": "Organ transplant", "weight": 1}, {"from": "Cryptococcosis", "to": "Immunosuppression", "weight": 1}, {"from": "Cryptococcosis", "to": "Corticosteroids", "weight": 1}, {"from": "Cryptococcosis", "to": "Cancer", "weight": 1}, {"from": "Cryptococcosis", "to": "Loose connective tissue", "weight": 1}, {"from": "Cryptococcosis", "to": "Fungal infection", "weight": 1}, {"from": "Cryptococcosis", "to": "Dermatophytosis", "weight": 1}, {"from": "Cryptococcosis", "to": "Glabrous skin", "weight": 1}, {"from": "Cryptococcosis", "to": "Tinea", "weight": 1}, {"from": "Cryptococcosis", "to": "Groin", "weight": 1}, {"from": "Cryptococcosis", "to": "Two feet-one hand syndrome", "weight": 1}, {"from": "Cryptococcosis", "to": "Dermatophyte", "weight": 1}, {"from": "Cryptococcosis", "to": "Beard", "weight": 1}, {"from": "Cryptococcosis", "to": "Inflammation", "weight": 1}, {"from": "Cryptococcosis", "to": "Cutaneous", "weight": 1}, {"from": "Cryptococcosis", "to": "Granuloma", "weight": 1}, {"from": "Cryptococcosis", "to": "Folliculitis", "weight": 1}, {"from": "Cryptococcosis", "to": "Trichophyton mentagrophytes", "weight": 1}, {"from": "Cryptococcosis", "to": "Trichophyton verrucosum", "weight": 1}, {"from": "Cryptococcosis", "to": "Malassezia globosa", "weight": 1}, {"from": "Cryptococcosis", "to": "Malassezia furfur", "weight": 1}, {"from": "Cryptococcosis", "to": "Yeasts", "weight": 1}, {"from": "Cryptococcosis", "to": "Skin", "weight": 1}, {"from": "Cryptococcosis", "to": "Subcutaneous_tissue", "weight": 1}, {"from": "Cryptococcosis", "to": "Candidiasis", "weight": 1}, {"from": "Cryptococcosis", "to": "Candida (genus)", "weight": 1}, {"from": "Cryptococcosis", "to": "Mucous membrane", "weight": 1}, {"from": "Cryptococcosis", "to": "Mouth", "weight": 1}, {"from": "Cryptococcosis", "to": "Yeast", "weight": 1}, {"from": "Cryptococcosis", "to": "Vagina", "weight": 1}, {"from": "Cryptococcosis", "to": "Dysuria", "weight": 1}, {"from": "Cryptococcosis", "to": "Vaginal discharge", "weight": 1}, {"from": "Cryptococcosis", "to": "Pronunciation respelling for English", "weight": 1}, {"from": "Cryptococcosis", "to": "Schwa", "weight": 1}, {"from": "Cryptococcosis", "to": "Infection", "weight": 1}, {"from": "Cryptococcosis", "to": "Pathogenic fungi", "weight": 1}, {"from": "Cryptococcosis", "to": "Subcutaneous tissue", "weight": 1}, {"from": "Cryptococcosis", "to": "Dermatophytoses", "weight": 1}, {"from": "Cryptococcosis", "to": "Tinea corporis", "weight": 1}, {"from": "Cryptococcosis", "to": "Tinea cruris", "weight": 1}, {"from": "Cryptococcosis", "to": "Tinea manuum", "weight": 1}, {"from": "Cryptococcosis", "to": "Tinea pedis", "weight": 1}, {"from": "Cryptococcosis", "to": "Tinea barbae", "weight": 1}, {"from": "Cryptococcosis", "to": "Pityriasis versicolor", "weight": 1}, {"from": "Flucytosine", "to": "Blastomyces dermatitidis", "weight": 1}, {"from": "Flucytosine", "to": "Fever", "weight": 1}, {"from": "Flucytosine", "to": "Cough", "weight": 1}, {"from": "Flucytosine", "to": "Night sweats", "weight": 1}, {"from": "Flucytosine", "to": "Myalgia", "weight": 1}, {"from": "Flucytosine", "to": "Fatigue (medical)", "weight": 1}, {"from": "Flucytosine", "to": "Immunodeficiency", "weight": 1}, {"from": "Flucytosine", "to": "Fungal infection in animals", "weight": 1}, {"from": "Flucytosine", "to": "Candida (genus)", "weight": 1}, {"from": "Flucytosine", "to": "Yeast", "weight": 1}, {"from": "Flucytosine", "to": "Oral candidiasis", "weight": 1}, {"from": "Flucytosine", "to": "Vaginal yeast infection", "weight": 1}, {"from": "Flucytosine", "to": "Skin", "weight": 1}, {"from": "Flucytosine", "to": "Subcutaneous tissue", "weight": 1}, {"from": "Flucytosine", "to": "Nodule (medicine)", "weight": 1}, {"from": "Flucytosine", "to": "Sinus (anatomy)", "weight": 1}, {"from": "Flucytosine", "to": "Fistula", "weight": 1}, {"from": "Flucytosine", "to": "Chronic (medicine)", "weight": 1}, {"from": "Flucytosine", "to": "Subcutaneous mycosis", "weight": 1}, {"from": "Flucytosine", "to": "Lungs", "weight": 1}, {"from": "Flucytosine", "to": "Pneumonia", "weight": 1}, {"from": "Pharmaceutical", "to": "Candida_infections", "weight": 1}, {"from": "Pharmaceutical", "to": "Corticosteroids", "weight": 1}, {"from": "Fungicide", "to": "Brain", "weight": 1}, {"from": "Fungicide", "to": "Meningitis", "weight": 1}, {"from": "Fungicide", "to": "Cough", "weight": 1}, {"from": "Fungicide", "to": "Shortness of breath", "weight": 1}, {"from": "Fungicide", "to": "Chest pain", "weight": 1}, {"from": "Fungicide", "to": "Fever", "weight": 1}, {"from": "Fungicide", "to": "Headache", "weight": 1}, {"from": "Fungicide", "to": "Meningism", "weight": 1}, {"from": "Fungicide", "to": "Nausea", "weight": 1}, {"from": "Fungicide", "to": "Vomiting", "weight": 1}, {"from": "Fungicide", "to": "Photophobia", "weight": 1}, {"from": "Fungicide", "to": "Cognitive impairment", "weight": 1}, {"from": "Fungicide", "to": "Skin", "weight": 1}, {"from": "Fungicide", "to": "Corticosteroids", "weight": 1}, {"from": "Fungistatic", "to": "Nodule (medicine)", "weight": 1}, {"from": "Fungistatic", "to": "Necrosis", "weight": 1}, {"from": "Fungistatic", "to": "Fungal infection", "weight": 1}, {"from": "Fungistatic", "to": "Histoplasma capsulatum", "weight": 1}, {"from": "Fungistatic", "to": "Corticosteroids", "weight": 1}, {"from": "Antifungal_medication", "to": "Athlete\u0027s foot", "weight": 1}, {"from": "Antifungal_medication", "to": "Ringworm", "weight": 1}, {"from": "Antifungal_medication", "to": "Candidiasis", "weight": 1}, {"from": "Antifungal_medication", "to": "Cryptococcus (fungus)", "weight": 1}, {"from": "Antifungal_medication", "to": "Meningitis", "weight": 1}, {"from": "Antifungal_medication", "to": "Prescription drug", "weight": 1}, {"from": "Antifungal_medication", "to": "Over-the-counter drugs", "weight": 1}, {"from": "Antifungal_medication", "to": "Infection", "weight": 1}, {"from": "Antifungal_medication", "to": "Pathogenic fungi", "weight": 1}, {"from": "Antifungal_medication", "to": "Subcutaneous tissue", "weight": 1}, {"from": "Antifungal_medication", "to": "Dermatophytoses", "weight": 1}, {"from": "Antifungal_medication", "to": "Fever", "weight": 1}, {"from": "Antifungal_medication", "to": "Help:IPA/English", "weight": 1}, {"from": "Antifungal_medication", "to": "Help:Pronunciation respelling key", "weight": 1}, {"from": "Antifungal_medication", "to": "Coccidioides immitis", "weight": 1}, {"from": "Antifungal_medication", "to": "Coccidioides posadasii", "weight": 1}, {"from": "Antifungal_medication", "to": "Endemic (epidemiology)", "weight": 1}, {"from": "Antifungal_medication", "to": "Arizona", "weight": 1}, {"from": "Antifungal_medication", "to": "California", "weight": 1}, {"from": "Antifungal_medication", "to": "Nevada", "weight": 1}, {"from": "Antifungal_medication", "to": "New Mexico", "weight": 1}, {"from": "Athlete\u0027s foot", "to": "Corticosteroids", "weight": 1}, {"from": "Ringworm", "to": "Corticosteroids", "weight": 1}, {"from": "Candidiasis", "to": "Histoplasmosis", "weight": 1}, {"from": "Candidiasis", "to": "Pneumocystis pneumonia", "weight": 1}, {"from": "Candidiasis", "to": "Nodule (medicine)", "weight": 1}, {"from": "Candidiasis", "to": "Pneumonia", "weight": 1}, {"from": "Candidiasis", "to": "Meningitis", "weight": 1}, {"from": "Candidiasis", "to": "Pathology", "weight": 1}, {"from": "Candidiasis", "to": "Gas exchange", "weight": 1}, {"from": "Candidiasis", "to": "Breathing", "weight": 1}, {"from": "Candidiasis", "to": "Respiratory tract", "weight": 1}, {"from": "Candidiasis", "to": "Trachea", "weight": 1}, {"from": "Candidiasis", "to": "Bronchi", "weight": 1}, {"from": "Candidiasis", "to": "Bronchioles", "weight": 1}, {"from": "Candidiasis", "to": "Pulmonary alveolus", "weight": 1}, {"from": "Candidiasis", "to": "Pulmonary pleurae", "weight": 1}, {"from": "Candidiasis", "to": "Corticosteroids", "weight": 1}, {"from": "Cryptococcus (fungus)", "to": "Corticosteroids", "weight": 1}, {"from": "Meningitis", "to": "Tinea_cruris", "weight": 1}, {"from": "Meningitis", "to": "Chromoblastomycosis", "weight": 1}, {"from": "Meningitis", "to": "Pneumocystis_pneumonia", "weight": 1}, {"from": "Meningitis", "to": "Lung_diseases", "weight": 1}, {"from": "Meningitis", "to": "Corticosteroids", "weight": 1}, {"from": "Prescription drug", "to": "Corticosteroids", "weight": 1}, {"from": "Infection", "to": "Immune system", "weight": 1}, {"from": "Infection", "to": "Steroid hormone", "weight": 1}, {"from": "Infection", "to": "Adrenal cortex", "weight": 1}, {"from": "Infection", "to": "Vertebrates", "weight": 1}, {"from": "Infection", "to": "Glucocorticoid", "weight": 1}, {"from": "Infection", "to": "Mineralocorticoid", "weight": 1}, {"from": "Infection", "to": "Pathogenic_fungi", "weight": 1}, {"from": "Infection", "to": "Pityriasis_versicolor", "weight": 1}, {"from": "Infection", "to": "Pneumocystis_pneumonia", "weight": 1}, {"from": "Pathogenic fungi", "to": "Subcutaneous_tissue", "weight": 1}, {"from": "Pathogenic fungi", "to": "Pityriasis_versicolor", "weight": 1}, {"from": "Subcutaneous tissue", "to": "Subcutaneous_tissue", "weight": 1}, {"from": "Subcutaneous tissue", "to": "Pityriasis_versicolor", "weight": 1}, {"from": "Subcutaneous tissue", "to": "Cough", "weight": 1}, {"from": "Dermatophytoses", "to": "Subcutaneous_tissue", "weight": 1}, {"from": "Dermatophytoses", "to": "Pityriasis_versicolor", "weight": 1}, {"from": "Tinea corporis", "to": "Subcutaneous_tissue", "weight": 1}, {"from": "Tinea corporis", "to": "Eumycetoma", "weight": 1}, {"from": "Tinea cruris", "to": "Subcutaneous_tissue", "weight": 1}, {"from": "Tinea cruris", "to": "Eumycetoma", "weight": 1}, {"from": "Tinea manuum", "to": "Subcutaneous_tissue", "weight": 1}, {"from": "Tinea manuum", "to": "Eumycetoma", "weight": 1}, {"from": "Tinea pedis", "to": "Subcutaneous_tissue", "weight": 1}, {"from": "Tinea pedis", "to": "Eumycetoma", "weight": 1}, {"from": "Tinea barbae", "to": "Subcutaneous_tissue", "weight": 1}, {"from": "Tinea barbae", "to": "Eumycetoma", "weight": 1}, {"from": "Pityriasis versicolor", "to": "Subcutaneous_tissue", "weight": 1}, {"from": "Pityriasis versicolor", "to": "Eumycetoma", "weight": 1}, {"from": "Eumycetoma", "to": "Subcutaneous_tissue", "weight": 1}, {"from": "Eumycetoma", "to": "Eumycetoma", "weight": 1}, {"from": "Eumycetoma", "to": "Chromoblastomycosis", "weight": 1}, {"from": "Eumycetoma", "to": "Histoplasmosis", "weight": 1}, {"from": "Chromoblastomycosis", "to": "Subcutaneous_tissue", "weight": 1}, {"from": "Chromoblastomycosis", "to": "Pneumocystis pneumonia", "weight": 1}, {"from": "Chromoblastomycosis", "to": "Nodule (medicine)", "weight": 1}, {"from": "Chromoblastomycosis", "to": "Pneumonia", "weight": 1}, {"from": "Histoplasmosis", "to": "Subcutaneous_tissue", "weight": 1}, {"from": "Histoplasmosis", "to": "Histoplasmosis", "weight": 1}, {"from": "Histoplasmosis", "to": "Pneumocystis pneumonia", "weight": 1}, {"from": "Histoplasmosis", "to": "Nodule (medicine)", "weight": 1}, {"from": "Pneumocystis pneumonia", "to": "Tinea_corporis", "weight": 1}, {"from": "Nodule (medicine)", "to": "Candida_infections", "weight": 1}, {"from": "Nodule (medicine)", "to": "Tinea_corporis", "weight": 1}, {"from": "Nodule (medicine)", "to": "Cough", "weight": 1}, {"from": "Pneumonia", "to": "Tinea_cruris", "weight": 1}, {"from": "Pneumonia", "to": "Pneumocystis_pneumonia", "weight": 1}, {"from": "Mycoses", "to": "Cerebral cortex", "weight": 1}, {"from": "Mycoses", "to": "Neuron", "weight": 1}, {"from": "Mycoses", "to": "Cerebellum", "weight": 1}, {"from": "Mycoses", "to": "Synapse", "weight": 1}, {"from": "Mycoses", "to": "Axon", "weight": 1}, {"from": "Mycoses", "to": "Action potential", "weight": 1}, {"from": "Mycoses", "to": "Microorganism", "weight": 1}, {"from": "Mycoses", "to": "Reflex", "weight": 1}, {"from": "Mycoses", "to": "Cough reflex", "weight": 1}, {"from": "Mycoses", "to": "Inhalation", "weight": 1}, {"from": "Mycoses", "to": "Exhalation", "weight": 1}, {"from": "Mycoses", "to": "Glottis", "weight": 1}, {"from": "Mycoses", "to": "BrE", "weight": 1}, {"from": "Mycoses", "to": "Breathing", "weight": 1}, {"from": "Mycoses", "to": "American Thoracic Society", "weight": 1}, {"from": "Mycoses", "to": "Activities of daily living", "weight": 1}, {"from": "Mycoses", "to": "Tripod position", "weight": 1}, {"from": "Mycoses", "to": "Pain", "weight": 1}, {"from": "Mycoses", "to": "Chest", "weight": 1}, {"from": "Mycoses", "to": "Upper abdomen", "weight": 1}, {"from": "Mycoses", "to": "Nausea", "weight": 1}, {"from": "Mycoses", "to": "Shortness of breath", "weight": 1}, {"from": "Mycoses", "to": "Heart", "weight": 1}, {"from": "Mycoses", "to": "Angina pectoris", "weight": 1}, {"from": "Mycoses", "to": "Diabetes", "weight": 1}, {"from": "Mycoses", "to": "Face", "weight": 1}, {"from": "Mycoses", "to": "Head", "weight": 1}, {"from": "Mycoses", "to": "Neck", "weight": 1}, {"from": "Mycoses", "to": "Migraine", "weight": 1}, {"from": "Mycoses", "to": "Tension-type headache", "weight": 1}, {"from": "Mycoses", "to": "Cluster headache", "weight": 1}, {"from": "Asthma", "to": "Over-the-counter_drugs", "weight": 1}, {"from": "Tuberculosis", "to": "Over-the-counter_drugs", "weight": 1}, {"from": "Immunosuppression", "to": "Papule", "weight": 1}, {"from": "Immunosuppression", "to": "Ancient Greek", "weight": 1}, {"from": "Immunosuppression", "to": "wikt:\u03bd\u03ad\u03ba\u03c1\u03c9\u03c3\u03b9\u03c2", "weight": 1}, {"from": "Immunosuppression", "to": "Cell injury", "weight": 1}, {"from": "Corticosteroids", "to": "Death", "weight": 1}, {"from": "Corticosteroids", "to": "Cell (biology)", "weight": 1}, {"from": "Corticosteroids", "to": "Tissue (biology)", "weight": 1}, {"from": "Corticosteroids", "to": "Autolysis (biology)", "weight": 1}, {"from": "Corticosteroids", "to": "Apoptosis", "weight": 1}, {"from": "Cancer", "to": "Tinea_barbae", "weight": 1}, {"from": "Fever", "to": "Candida_infections", "weight": 1}, {"from": "Fever", "to": "Lung_diseases", "weight": 1}, {"from": "Cough", "to": "Cognitive impairment", "weight": 1}, {"from": "Cough", "to": "Skin", "weight": 1}, {"from": "Cough", "to": "Necrosis", "weight": 1}, {"from": "Cough", "to": "Chronic (medicine)", "weight": 1}, {"from": "Myalgia", "to": "Subcutaneous mycosis", "weight": 1}, {"from": "Myalgia", "to": "Route of administration", "weight": 1}, {"from": "Myalgia", "to": "Mouth", "weight": 1}, {"from": "Myalgia", "to": "Medication", "weight": 1}, {"from": "Myalgia", "to": "Systemic effect", "weight": 1}, {"from": "Myalgia", "to": "Bloodstream", "weight": 1}, {"from": "Vaginal yeast infection", "to": "Candida_infections", "weight": 1}, {"from": "Headache", "to": "Lung_diseases", "weight": 1}, {"from": "Candida_infections", "to": "Meningism", "weight": 1}, {"from": "Candida_infections", "to": "Nausea", "weight": 1}, {"from": "Candida_infections", "to": "Vomiting", "weight": 1}, {"from": "Candida_infections", "to": "Photophobia", "weight": 1}, {"from": "Candida_infections", "to": "Cognitive impairment", "weight": 1}, {"from": "Candida_infections", "to": "Skin", "weight": 1}, {"from": "Candida_infections", "to": "Necrosis", "weight": 1}, {"from": "Candida_infections", "to": "Amphotericin B", "weight": 1}, {"from": "Candida_infections", "to": "Candida infection", "weight": 1}, {"from": "Candida_infections", "to": "Chromomycosis", "weight": 1}, {"from": "Candida_infections", "to": "Oral administration", "weight": 1}, {"from": "Candida_infections", "to": "Intravenous", "weight": 1}, {"from": "Candida_infections", "to": "Pharmaceutical drug", "weight": 1}, {"from": "Candida_infections", "to": "Medical prescription", "weight": 1}, {"from": "Candida_infections", "to": "Over-the-counter drug", "weight": 1}, {"from": "Candida_infections", "to": "Controlled substance", "weight": 1}, {"from": "Candida_infections", "to": "Drug abuse", "weight": 1}, {"from": "Candida_infections", "to": "Practicing without a license", "weight": 1}, {"from": "Candida_infections", "to": "Medication", "weight": 1}, {"from": "Candida_infections", "to": "Prescription drugs", "weight": 1}, {"from": "Candida_infections", "to": "Regulatory agency", "weight": 1}, {"from": "Candida_infections", "to": "Physician", "weight": 1}, {"from": "Candida_infections", "to": "Active pharmaceutical ingredient", "weight": 1}, {"from": "Candida_infections", "to": "Tissue (biology)", "weight": 1}, {"from": "Candida_infections", "to": "Pathogen", "weight": 1}, {"from": "Vomiting", "to": "Lung_diseases", "weight": 1}, {"from": "Photophobia", "to": "Lung_diseases", "weight": 1}, {"from": "Disease", "to": "Prescription_drug", "weight": 1}, {"from": "Disease", "to": "Tinea_barbae", "weight": 1}, {"from": "Microorganism", "to": "Tinea_cruris", "weight": 1}, {"from": "Greek language", "to": "Lung_diseases", "weight": 1}, {"from": "Vertebrate", "to": "Nodule_(medicine)", "weight": 1}, {"from": "Vertebrate", "to": "Lung_diseases", "weight": 1}, {"from": "Inflammation", "to": "Pathogenic_fungi", "weight": 1}, {"from": "Inflammation", "to": "Lung_diseases", "weight": 1}, {"from": "Medicine", "to": "Lung_diseases", "weight": 1}, {"from": "Cysts", "to": "Lung_diseases", "weight": 1}, {"from": "Prescription_drug", "to": "Pleural cavity", "weight": 1}, {"from": "Prescription_drug", "to": "Muscles of respiration", "weight": 1}, {"from": "Prescription_drug", "to": "Common cold", "weight": 1}, {"from": "Prescription_drug", "to": "Influenza", "weight": 1}, {"from": "Prescription_drug", "to": "Pharyngitis", "weight": 1}, {"from": "Over-the-counter_drugs", "to": "Bacterial pneumonia", "weight": 1}, {"from": "Over-the-counter_drugs", "to": "Pulmonary embolism", "weight": 1}, {"from": "Over-the-counter_drugs", "to": "Lung cancer", "weight": 1}, {"from": "Over-the-counter_drugs", "to": "Severe acute respiratory syndrome", "weight": 1}, {"from": "Over-the-counter_drugs", "to": "Coronavirus disease 2019", "weight": 1}, {"from": "Over-the-counter_drugs", "to": "Efficacy", "weight": 1}, {"from": "Immune system", "to": "Pathogenic_fungi", "weight": 1}, {"from": "Immune system", "to": "Tinea_barbae", "weight": 1}, {"from": "Pathogenic_fungi", "to": "Physiology", "weight": 1}, {"from": "Pathogenic_fungi", "to": "Stress (medicine)", "weight": 1}, {"from": "Pathogenic_fungi", "to": "Carbohydrate", "weight": 1}, {"from": "Pathogenic_fungi", "to": "Metabolism", "weight": 1}, {"from": "Pathogenic_fungi", "to": "Protein", "weight": 1}, {"from": "Pathogenic_fungi", "to": "Catabolism", "weight": 1}, {"from": "Pathogenic_fungi", "to": "Electrolyte", "weight": 1}, {"from": "Tinea_cruris", "to": "Reflex", "weight": 1}, {"from": "Tinea_manuum", "to": "Cough reflex", "weight": 1}, {"from": "Tinea_manuum", "to": "Inhalation", "weight": 1}, {"from": "Tinea_manuum", "to": "Exhalation", "weight": 1}, {"from": "Tinea_manuum", "to": "Glottis", "weight": 1}, {"from": "Tinea_manuum", "to": "Layman\u0027s terms", "weight": 1}, {"from": "Tinea_manuum", "to": "Medical term", "weight": 1}, {"from": "Tinea_manuum", "to": "Muscle", "weight": 1}, {"from": "Tinea_manuum", "to": "Pain", "weight": 1}, {"from": "Tinea_manuum", "to": "Symptom", "weight": 1}, {"from": "Symptom", "to": "Lung_diseases", "weight": 1}, {"from": "Tinea_barbae", "to": "Acute disease", "weight": 1}, {"from": "Tinea_barbae", "to": "Muscle group", "weight": 1}, {"from": "Tinea_barbae", "to": "Virus", "weight": 1}, {"from": "Tinea_barbae", "to": "Physical trauma", "weight": 1}, {"from": "Tinea_barbae", "to": "Infectious disease", "weight": 1}, {"from": "Pityriasis_versicolor", "to": "HIV", "weight": 1}, {"from": "Pityriasis_versicolor", "to": "Environmental factor", "weight": 1}, {"from": "Pityriasis_versicolor", "to": "Nutrition", "weight": 1}, {"from": "Pityriasis_versicolor", "to": "Genetic diseases", "weight": 1}, {"from": "Pityriasis_versicolor", "to": "Severe combined immunodeficiency", "weight": 1}, {"from": "Pneumocystis_pneumonia", "to": "Geographic coordinate system", "weight": 1}, {"from": "Nodule_(medicine)", "to": "Organ (biology)", "weight": 1}, {"from": "Nodule_(medicine)", "to": "Nervous system", "weight": 1}, {"from": "Nodule_(medicine)", "to": "Invertebrate", "weight": 1}, {"from": "Nodule_(medicine)", "to": "Head", "weight": 1}, {"from": "Nodule_(medicine)", "to": "Sense", "weight": 1}, {"from": "Nodule_(medicine)", "to": "Visual perception", "weight": 1}, {"from": "Lung_diseases", "to": "Depression (mood)", "weight": 1}, {"from": "Lung_diseases", "to": "Meninges", "weight": 1}, {"from": "Lung_diseases", "to": "Syndrome", "weight": 1}, {"from": "Lung_diseases", "to": "Neck stiffness", "weight": 1}, {"from": "Lung_diseases", "to": "Differential diagnosis", "weight": 1}, {"from": "Lung_diseases", "to": "Intracranial hemorrhage", "weight": 1}, {"from": "Lung_diseases", "to": "Kernig\u0027s sign", "weight": 1}, {"from": "Lung_diseases", "to": "Brudzi\u0144ski\u0027s sign", "weight": 1}, {"from": "Lung_diseases", "to": "Light", "weight": 1}, {"from": "Lung_diseases", "to": "Phobia", "weight": 1}, {"from": "Lung_diseases", "to": "Fear", "weight": 1}, {"from": "Lung_diseases", "to": "Heliophobia", "weight": 1}, {"from": "Lung_diseases", "to": "Cognition", "weight": 1}]);
// adding nodes and edges to the graph
data = {nodes: nodes, edges: edges};
var options = {
"configure": {
"enabled": true,
"filter": [
"physics"
]
},
"edges": {
"color": {
"inherit": true
},
"smooth": {
"enabled": false,
"type": "continuous"
}
},
"interaction": {
"dragNodes": true,
"hideEdgesOnDrag": false,
"hideNodesOnDrag": false
},
"physics": {
"enabled": true,
"stabilization": {
"enabled": true,
"fit": true,
"iterations": 1000,
"onlyDynamicEdges": false,
"updateInterval": 50
}
}
};
// if this network requires displaying the configure window,
// put it in its div
options.configure["container"] = document.getElementById("config");
network = new vis.Network(container, data, options);
network.on("stabilizationProgress", function(params) {
document.getElementById('loadingBar').removeAttribute("style");
var maxWidth = 496;
var minWidth = 20;
var widthFactor = params.iterations/params.total;
var width = Math.max(minWidth,maxWidth * widthFactor);
document.getElementById('bar').style.width = width + 'px';
document.getElementById('text').innerHTML = Math.round(widthFactor*100) + '%';
});
network.once("stabilizationIterationsDone", function() {
document.getElementById('text').innerHTML = '100%';
document.getElementById('bar').style.width = '496px';
document.getElementById('loadingBar').style.opacity = 0;
// really clean the dom element
setTimeout(function () {document.getElementById('loadingBar').style.display = 'none';}, 500);
});
return network;
}
drawGraph();
</script>
</body>
</html>