-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
446 lines (405 loc) · 13.5 KB
/
app.js
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
import React from 'react';
import { Component } from 'react';
import { Button } from 'hetio-frontend-components';
import { fetchMainData } from './data.js';
import { fetchDiseaseInfo } from './data.js';
import { fetchDiseasePredictions } from './data.js';
import { fetchGeneInfo } from './data.js';
import { fetchGenePredictions } from './data.js';
import { fetchFeatureInfo } from './data.js';
import { fetchFeaturePredictions } from './data.js';
import { fetchContributions } from './data.js';
import { Diseases } from './diseases.js';
import { DiseaseInfo } from './disease-info.js';
import { DiseasePredictions } from './disease-predictions.js';
import { DiseasePredictionInfo } from './disease-prediction-info.js';
import { DiseaseContributions } from './disease-contributions.js';
import { Genes } from './genes.js';
import { GeneInfo } from './gene-info.js';
import { GenePredictions } from './gene-predictions.js';
import { GenePredictionInfo } from './gene-prediction-info.js';
import { GeneContributions } from './gene-contributions.js';
import { Features } from './features.js';
import { FeatureInfo } from './feature-info.js';
import { FeaturePredictions } from './feature-predictions.js';
import { FeaturePredictionInfo } from './feature-prediction-info.js';
import './app.css';
// main app component
export class App extends Component {
// initialize component
constructor() {
super();
this.state = {};
this.state.tab = 'diseases';
this.state.diseases = [];
this.state.genes = [];
this.state.features = [];
this.state.disease = null;
this.state.gene = null;
this.state.diseaseInfo = {};
this.state.geneInfo = {};
this.state.featureInfo = {};
this.state.diseasePredictions = [];
this.state.genePredictions = [];
this.state.featurePredictions = [];
this.state.feature = null;
this.state.diseasePrediction = null;
this.state.genePrediction = null;
this.state.diseasePredictionInfo = {};
this.state.genePredictionInfo = {};
this.state.diseaseContributions = [];
this.state.geneContributions = [];
fetchMainData().then((results) =>
this.setState(results, this.loadStateFromUrl)
);
}
// when component mounds
componentDidMount() {
// listen for back/forward navigation (history)
window.addEventListener('popstate', this.loadStateFromUrl);
}
// when component unmounts
componentWillUnmount() {
window.removeEventListener('popstate', this.loadStateFromUrl);
}
// set active tab
setTab = (tab) => {
this.setState({ tab: tab }, this.updateUrl);
};
// set selected disease
setDisease = (disease) => {
setDisease(disease).then((results) =>
this.setState(results, this.updateUrl)
);
};
// set selected gene
setGene = (gene) => {
setGene(gene).then((results) => this.setState(results, this.updateUrl));
};
// set selected feature
setFeature = (feature) => {
setFeature(feature).then((results) =>
this.setState(results, this.updateUrl)
);
};
// set selected disease prediction
setDiseasePrediction = (diseasePrediction) => {
setDiseasePrediction(this.state.disease, diseasePrediction).then(
(results) => this.setState(results, this.updateUrl)
);
};
// set selected gene prediction
setGenePrediction = (genePrediction) => {
setGenePrediction(this.state.gene, genePrediction).then((results) =>
this.setState(results, this.updateUrl)
);
};
// set selected feature prediction
setFeaturePrediction = (featurePrediction) => {
setFeaturePrediction(featurePrediction).then((results) =>
this.setState(results, this.updateUrl)
);
};
// update url based on state
updateUrl = () => {
const params = new URLSearchParams();
params.set('tab', this.state.tab);
if (this.state.tab === 'diseases' && this.state.disease)
params.set('id', this.state.disease.disease_code.replace(':', '_'));
if (this.state.tab === 'genes' && this.state.gene)
params.set('id', this.state.gene.gene_code.replace(':', '_'));
if (this.state.tab === 'features' && this.state.feature)
params.set('id', this.state.feature.feature);
if (this.state.tab === 'diseases' && this.state.diseasePrediction) {
params.set(
'pred',
this.state.diseasePrediction.gene_code.replace(':', '_')
);
}
if (this.state.tab === 'genes' && this.state.genePrediction) {
params.set(
'pred',
this.state.genePrediction.disease_code.replace(':', '_')
);
}
if (this.state.tab === 'features' && this.state.featurePrediction) {
params.set(
'pred',
this.state.featurePrediction.disease_code.replace(':', '_')
);
}
const url =
window.location.origin +
window.location.pathname +
'?' +
params.toString();
window.history.pushState({}, '', url);
if (params.get('id'))
document.title = params.get('id');
};
// load state from url
loadStateFromUrl = () => {
loadStateFromUrl(this.state).then((results) => this.setState(results));
};
// display component
render() {
return (
<>
<Button
className='tab_button'
disabled={this.state.tab !== 'diseases'}
onClick={() => this.setTab('diseases')}
tooltipText='Select a disease and show predictions for all genes'
>
Diseases
</Button>
<Button
className='tab_button'
disabled={this.state.tab !== 'genes'}
onClick={() => this.setTab('genes')}
tooltipText='Select a gene and show predictions for all diseases'
>
Genes
</Button>
<Button
className='tab_button'
disabled={this.state.tab !== 'features'}
onClick={() => this.setTab('features')}
tooltipText='Browse features that measure how common different types
of paths (metapaths) that connect genes to disease are and their
ability to predict associations'
>
Features
</Button>
<Diseases
visible={this.state.tab === 'diseases'}
diseases={this.state.diseases}
setDisease={this.setDisease}
disease={this.state.disease}
/>
<DiseaseInfo
visible={this.state.tab === 'diseases'}
disease={this.state.disease}
diseaseInfo={this.state.diseaseInfo}
/>
<DiseasePredictions
visible={this.state.tab === 'diseases'}
disease={this.state.disease}
diseasePredictions={this.state.diseasePredictions}
setDiseasePrediction={this.setDiseasePrediction}
diseasePrediction={this.state.diseasePrediction}
/>
<DiseasePredictionInfo
visible={this.state.tab === 'diseases'}
disease={this.state.disease}
diseasePrediction={this.state.diseasePrediction}
diseasePredictionInfo={this.state.diseasePredictionInfo}
/>
<DiseaseContributions
visible={this.state.tab === 'diseases'}
disease={this.state.disease}
diseasePrediction={this.state.diseasePrediction}
contributions={this.state.contributions}
/>
<Genes
visible={this.state.tab === 'genes'}
genes={this.state.genes}
setGene={this.setGene}
gene={this.state.gene}
/>
<GeneInfo
visible={this.state.tab === 'genes'}
gene={this.state.gene}
geneInfo={this.state.geneInfo}
/>
<GenePredictions
visible={this.state.tab === 'genes'}
gene={this.state.gene}
genePredictions={this.state.genePredictions}
setGenePrediction={this.setGenePrediction}
genePrediction={this.state.genePrediction}
/>
<GenePredictionInfo
visible={this.state.tab === 'genes'}
gene={this.state.gene}
genePrediction={this.state.genePrediction}
genePredictionInfo={this.state.genePredictionInfo}
/>
<GeneContributions
visible={this.state.tab === 'genes'}
gene={this.state.gene}
genePrediction={this.state.genePrediction}
contributions={this.state.contributions}
/>
<Features
visible={this.state.tab === 'features'}
features={this.state.features}
setFeature={this.setFeature}
feature={this.state.feature}
/>
<FeatureInfo
visible={this.state.tab === 'features'}
feature={this.state.feature}
featureInfo={this.state.featureInfo}
/>
<FeaturePredictions
visible={this.state.tab === 'features'}
feature={this.state.feature}
featurePredictions={this.state.featurePredictions}
setFeaturePrediction={this.setFeaturePrediction}
featurePrediction={this.state.featurePrediction}
/>
<FeaturePredictionInfo
visible={this.state.tab === 'features'}
feature={this.state.feature}
featurePrediction={this.state.featurePrediction}
featurePredictionInfo={this.state.featurePredictionInfo}
/>
</>
);
}
}
// set selected disease
async function setDisease(disease) {
if (!disease)
return {};
const diseaseInfo = await fetchDiseaseInfo(disease.disease_code);
const diseasePredictions = await fetchDiseasePredictions(
disease.disease_code
);
return { disease: disease, ...diseaseInfo, ...diseasePredictions };
}
// set selected gene
async function setGene(gene) {
if (!gene)
return {};
const geneInfo = await fetchGeneInfo(gene.gene_code);
const genePredictions = await fetchGenePredictions(gene.gene_code);
return { gene: gene, ...geneInfo, ...genePredictions };
}
// set selected feature
async function setFeature(feature) {
if (!feature)
return {};
const featureInfo = await fetchFeatureInfo(feature.feature);
const featurePredictions = await fetchFeaturePredictions(feature.feature);
return { feature: feature, ...featureInfo, ...featurePredictions };
}
// set selected disease prediction
async function setDiseasePrediction(disease, diseasePrediction) {
if (!disease || !diseasePrediction)
return {};
const diseasePredictionInfo =
((await fetchGeneInfo(diseasePrediction.gene_code)) || {}).geneInfo || {};
const contributions = await fetchContributions(
disease.disease_code,
diseasePrediction.gene_code
);
return {
diseasePrediction: diseasePrediction,
diseasePredictionInfo: diseasePredictionInfo,
...contributions
};
}
// set selected gene prediction
async function setGenePrediction(gene, genePrediction) {
if (!gene || !genePrediction)
return {};
const genePredictionInfo =
((await fetchDiseaseInfo(genePrediction.disease_code)) || {}).diseaseInfo ||
{};
const contributions = await fetchContributions(
genePrediction.disease_code,
gene.gene_code
);
return {
genePrediction: genePrediction,
genePredictionInfo: genePredictionInfo,
...contributions
};
}
// set selected feature prediction
async function setFeaturePrediction(featurePrediction) {
if (!featurePrediction)
return {};
const featurePredictionInfo =
((await fetchDiseaseInfo(featurePrediction.disease_code)) || {})
.diseaseInfo || {};
return {
featurePrediction: featurePrediction,
featurePredictionInfo: featurePredictionInfo
};
}
// load state from url
async function loadStateFromUrl(state) {
// get parameters from url
const params = new URLSearchParams(window.location.search);
const tab = params.get('tab');
let id = params.get('id') || '';
const pred = (params.get('pred') || '').replace('_', ':');
if (tab === 'diseases' || tab === 'genes')
id = id.replace('_', ':');
let newState = {};
// set tab
if (tab)
newState.tab = tab;
// if diseases tab
if (tab === 'diseases') {
// set disease and disease prediction
if (id) {
newState.disease = state.diseases.find(
(disease) => disease.disease_code === id
);
newState = { ...newState, ...(await setDisease(newState.disease)) };
if (pred) {
newState.diseasePrediction = newState.diseasePredictions.find(
(diseasePrediction) => diseasePrediction.gene_code === pred
);
newState = {
...newState,
...(await setDiseasePrediction(
newState.disease,
newState.diseasePrediction
))
};
}
}
}
// if genes tab
if (tab === 'genes') {
// set gene and gene prediction
if (id) {
newState.gene = state.genes.find((gene) => gene.gene_code === id);
newState = { ...newState, ...(await setGene(newState.gene)) };
if (pred) {
newState.genePrediction = newState.genePredictions.find(
(genePrediction) => genePrediction.disease_code === pred
);
newState = {
...newState,
...(await setGenePrediction(newState.gene, newState.genePrediction))
};
}
}
}
// if features tab
if (tab === 'features') {
// set feature and feature prediction
if (id) {
newState.feature = state.features.find(
(feature) => feature.feature === id
);
newState = { ...newState, ...(await setFeature(newState.feature)) };
if (pred) {
newState.featurePrediction = newState.featurePredictions.find(
(featurePrediction) => featurePrediction.disease_code === pred
);
newState = {
...newState,
...(await setFeaturePrediction(newState.featurePrediction))
};
}
}
}
return newState;
}