@genspectrum/dashboard-components 0.6.18 → 0.6.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. package/README.md +5 -12
  2. package/custom-elements.json +4 -4
  3. package/dist/assets/mutationOverTimeWorker-BdzqDqvO.js.map +1 -0
  4. package/dist/dashboard-components.js +216 -214
  5. package/dist/dashboard-components.js.map +1 -1
  6. package/dist/genspectrum-components.d.ts +40 -40
  7. package/dist/style.css +3 -2
  8. package/package.json +13 -2
  9. package/src/operator/FetchInsertionsOperator.ts +2 -2
  10. package/src/operator/FetchSubstitutionsOrDeletionsOperator.ts +3 -3
  11. package/src/preact/mutationComparison/fetchMutationData.spec.ts +3 -3
  12. package/src/preact/mutationComparison/getMutationComparisonTableData.spec.ts +11 -11
  13. package/src/preact/mutationComparison/getMutationComparisonTableData.ts +4 -4
  14. package/src/preact/mutationComparison/mutation-comparison-table.tsx +2 -2
  15. package/src/preact/mutationFilter/mutation-filter.tsx +27 -18
  16. package/src/preact/mutationFilter/parseAndValidateMutation.ts +4 -4
  17. package/src/preact/mutationFilter/parseMutation.spec.ts +17 -17
  18. package/src/preact/mutations/getInsertionsTableData.spec.ts +3 -3
  19. package/src/preact/mutations/getMutationsGridData.spec.ts +9 -9
  20. package/src/preact/mutations/getMutationsTableData.spec.ts +7 -7
  21. package/src/preact/mutations/mutations-insertions-table.tsx +3 -3
  22. package/src/preact/mutations/mutations-table.tsx +3 -3
  23. package/src/preact/mutationsOverTime/__mockData__/aminoAcidMutationsByDay.ts +45686 -0
  24. package/src/preact/mutationsOverTime/__mockData__/byWeek.ts +58989 -0
  25. package/src/preact/mutationsOverTime/__mockData__/defaultMockData.ts +103991 -0
  26. package/src/preact/mutationsOverTime/__mockData__/mockConversion.ts +54 -0
  27. package/src/preact/mutationsOverTime/__mockData__/showsMessageWhenTooManyMutations.ts +63690 -0
  28. package/src/preact/mutationsOverTime/getFilteredMutationsOverTime.spec.ts +176 -159
  29. package/src/preact/mutationsOverTime/getFilteredMutationsOverTimeData.ts +17 -59
  30. package/src/preact/mutationsOverTime/mutationOverTimeWorker.mock.ts +27 -0
  31. package/src/preact/mutationsOverTime/mutationOverTimeWorker.ts +29 -0
  32. package/src/preact/mutationsOverTime/mutations-over-time-grid.tsx +13 -14
  33. package/src/preact/mutationsOverTime/mutations-over-time.stories.tsx +9 -334
  34. package/src/preact/mutationsOverTime/mutations-over-time.tsx +68 -52
  35. package/src/preact/numberSequencesOverTime/getNumberOfSequencesOverTimeTableData.ts +3 -3
  36. package/src/preact/prevalenceOverTime/getPrevalenceOverTimeTableData.spec.ts +5 -5
  37. package/src/preact/prevalenceOverTime/prevalence-over-time-bubble-chart.tsx +1 -1
  38. package/src/preact/relativeGrowthAdvantage/relative-growth-advantage-chart.tsx +2 -2
  39. package/src/preact/shared/sort/sortInsertions.spec.ts +11 -11
  40. package/src/preact/shared/sort/sortInsertions.ts +2 -2
  41. package/src/preact/shared/sort/sortSubstitutionsAndDeletions.spec.ts +13 -13
  42. package/src/preact/shared/sort/sortSubstitutionsAndDeletions.ts +7 -4
  43. package/src/preact/webWorkers/useWebWorker.ts +51 -0
  44. package/src/preact/webWorkers/workerFunction.ts +14 -0
  45. package/src/query/queryAggregatedDataOverTime.ts +3 -3
  46. package/src/query/queryMutationsOverTime.spec.ts +272 -51
  47. package/src/query/queryMutationsOverTime.ts +114 -45
  48. package/src/query/queryPrevalenceOverTime.ts +2 -2
  49. package/src/query/queryRelativeGrowthAdvantage.ts +3 -3
  50. package/src/types.ts +25 -5
  51. package/src/utils/map2d.spec.ts +29 -1
  52. package/src/utils/map2d.ts +22 -1
  53. package/src/utils/mutations.spec.ts +20 -20
  54. package/src/utils/mutations.ts +80 -17
  55. package/src/utils/sort.ts +5 -2
  56. package/src/utils/temporal.spec.ts +27 -24
  57. package/src/utils/{temporal.ts → temporalClass.ts} +170 -72
  58. package/src/utils/temporalTestHelpers.ts +3 -3
  59. package/src/web-components/introduction.mdx +46 -0
  60. package/src/web-components/visualization/gs-mutations-over-time.stories.ts +6 -699
  61. package/src/web-components/visualization/gs-mutations-over-time.tsx +2 -2
  62. package/standalone-bundle/dashboard-components.js +13763 -13754
  63. package/standalone-bundle/dashboard-components.js.map +1 -1
  64. package/src/preact/mutationsOverTime/__mockData__/aggregated_2024_01.json +0 -13
  65. package/src/preact/mutationsOverTime/__mockData__/aggregated_2024_02.json +0 -13
  66. package/src/preact/mutationsOverTime/__mockData__/aggregated_2024_03.json +0 -13
  67. package/src/preact/mutationsOverTime/__mockData__/aggregated_2024_04.json +0 -13
  68. package/src/preact/mutationsOverTime/__mockData__/aggregated_2024_05.json +0 -13
  69. package/src/preact/mutationsOverTime/__mockData__/aggregated_2024_06.json +0 -13
  70. package/src/preact/mutationsOverTime/__mockData__/aggregated_2024_07.json +0 -13
  71. package/src/preact/mutationsOverTime/__mockData__/aggregated_20_01_2024.json +0 -13
  72. package/src/preact/mutationsOverTime/__mockData__/aggregated_21_01_2024.json +0 -13
  73. package/src/preact/mutationsOverTime/__mockData__/aggregated_22_01_2024.json +0 -13
  74. package/src/preact/mutationsOverTime/__mockData__/aggregated_23_01_2024.json +0 -13
  75. package/src/preact/mutationsOverTime/__mockData__/aggregated_24_01_2024.json +0 -13
  76. package/src/preact/mutationsOverTime/__mockData__/aggregated_25_01_2024.json +0 -13
  77. package/src/preact/mutationsOverTime/__mockData__/aggregated_26_01_2024.json +0 -13
  78. package/src/preact/mutationsOverTime/__mockData__/aggregated_byDay.json +0 -38
  79. package/src/preact/mutationsOverTime/__mockData__/aggregated_byWeek.json +0 -122
  80. package/src/preact/mutationsOverTime/__mockData__/aggregated_date.json +0 -642
  81. package/src/preact/mutationsOverTime/__mockData__/aggregated_tooManyMutations.json +0 -1470
  82. package/src/preact/mutationsOverTime/__mockData__/aggregated_tooManyMutations_total.json +0 -13
  83. package/src/preact/mutationsOverTime/__mockData__/aggregated_week3_2024.json +0 -13
  84. package/src/preact/mutationsOverTime/__mockData__/aggregated_week4_2024.json +0 -13
  85. package/src/preact/mutationsOverTime/__mockData__/aggregated_week5_2024.json +0 -13
  86. package/src/preact/mutationsOverTime/__mockData__/aggregated_week6_2024.json +0 -13
  87. package/src/preact/mutationsOverTime/__mockData__/aminoAcidMutations_20_01_2024.json +0 -6778
  88. package/src/preact/mutationsOverTime/__mockData__/aminoAcidMutations_21_01_2024.json +0 -7129
  89. package/src/preact/mutationsOverTime/__mockData__/aminoAcidMutations_22_01_2024.json +0 -4681
  90. package/src/preact/mutationsOverTime/__mockData__/aminoAcidMutations_23_01_2024.json +0 -10738
  91. package/src/preact/mutationsOverTime/__mockData__/aminoAcidMutations_24_01_2024.json +0 -11710
  92. package/src/preact/mutationsOverTime/__mockData__/aminoAcidMutations_25_01_2024.json +0 -11557
  93. package/src/preact/mutationsOverTime/__mockData__/aminoAcidMutations_26_01_2024.json +0 -8596
  94. package/src/preact/mutationsOverTime/__mockData__/aminoAcidMutations_byDayOverall.json +0 -4726
  95. package/src/preact/mutationsOverTime/__mockData__/nucleotideMutations_2024_01.json +0 -1747
  96. package/src/preact/mutationsOverTime/__mockData__/nucleotideMutations_2024_02.json +0 -1774
  97. package/src/preact/mutationsOverTime/__mockData__/nucleotideMutations_2024_03.json +0 -1819
  98. package/src/preact/mutationsOverTime/__mockData__/nucleotideMutations_2024_04.json +0 -1864
  99. package/src/preact/mutationsOverTime/__mockData__/nucleotideMutations_2024_05.json +0 -1927
  100. package/src/preact/mutationsOverTime/__mockData__/nucleotideMutations_2024_06.json +0 -1864
  101. package/src/preact/mutationsOverTime/__mockData__/nucleotideMutations_2024_07.json +0 -9
  102. package/src/preact/mutationsOverTime/__mockData__/nucleotideMutations_byMonthOverall.json +0 -11143
  103. package/src/preact/mutationsOverTime/__mockData__/nucleotideMutations_byWeekOverall.json +0 -9154
  104. package/src/preact/mutationsOverTime/__mockData__/nucleotideMutations_tooManyMutations.json +0 -16453
  105. package/src/preact/mutationsOverTime/__mockData__/nucleotideMutations_week3_2024.json +0 -8812
  106. package/src/preact/mutationsOverTime/__mockData__/nucleotideMutations_week4_2024.json +0 -9730
  107. package/src/preact/mutationsOverTime/__mockData__/nucleotideMutations_week5_2024.json +0 -9865
  108. package/src/preact/mutationsOverTime/__mockData__/nucleotideMutations_week6_2024.json +0 -11314
@@ -1,1927 +0,0 @@
1
- {
2
- "data": [
3
- {
4
- "mutation": "C21T",
5
- "count": 100,
6
- "proportion": 0.8264462809917356,
7
- "sequenceName": null,
8
- "mutationFrom": "C",
9
- "mutationTo": "T",
10
- "position": 21
11
- },
12
- {
13
- "mutation": "C44T",
14
- "count": 265,
15
- "proportion": 0.488929889298893,
16
- "sequenceName": null,
17
- "mutationFrom": "C",
18
- "mutationTo": "T",
19
- "position": 44
20
- },
21
- {
22
- "mutation": "C241T",
23
- "count": 2398,
24
- "proportion": 0.9991666666666666,
25
- "sequenceName": null,
26
- "mutationFrom": "C",
27
- "mutationTo": "T",
28
- "position": 241
29
- },
30
- {
31
- "mutation": "T670G",
32
- "count": 2482,
33
- "proportion": 0.9908183632734531,
34
- "sequenceName": null,
35
- "mutationFrom": "T",
36
- "mutationTo": "G",
37
- "position": 670
38
- },
39
- {
40
- "mutation": "C774T",
41
- "count": 178,
42
- "proportion": 0.07071911005164878,
43
- "sequenceName": null,
44
- "mutationFrom": "C",
45
- "mutationTo": "T",
46
- "position": 774
47
- },
48
- {
49
- "mutation": "C897A",
50
- "count": 2432,
51
- "proportion": 0.977491961414791,
52
- "sequenceName": null,
53
- "mutationFrom": "C",
54
- "mutationTo": "A",
55
- "position": 897
56
- },
57
- {
58
- "mutation": "C2790T",
59
- "count": 2426,
60
- "proportion": 1.0,
61
- "sequenceName": null,
62
- "mutationFrom": "C",
63
- "mutationTo": "T",
64
- "position": 2790
65
- },
66
- {
67
- "mutation": "C3037T",
68
- "count": 2526,
69
- "proportion": 1.0,
70
- "sequenceName": null,
71
- "mutationFrom": "C",
72
- "mutationTo": "T",
73
- "position": 3037
74
- },
75
- {
76
- "mutation": "G3431T",
77
- "count": 2304,
78
- "proportion": 0.9901160292221745,
79
- "sequenceName": null,
80
- "mutationFrom": "G",
81
- "mutationTo": "T",
82
- "position": 3431
83
- },
84
- {
85
- "mutation": "T3565C",
86
- "count": 2485,
87
- "proportion": 0.9868943606036537,
88
- "sequenceName": null,
89
- "mutationFrom": "T",
90
- "mutationTo": "C",
91
- "position": 3565
92
- },
93
- {
94
- "mutation": "G4184A",
95
- "count": 2532,
96
- "proportion": 1.0,
97
- "sequenceName": null,
98
- "mutationFrom": "G",
99
- "mutationTo": "A",
100
- "position": 4184
101
- },
102
- {
103
- "mutation": "C4321T",
104
- "count": 2496,
105
- "proportion": 0.9881235154394299,
106
- "sequenceName": null,
107
- "mutationFrom": "C",
108
- "mutationTo": "T",
109
- "position": 4321
110
- },
111
- {
112
- "mutation": "C4784T",
113
- "count": 140,
114
- "proportion": 0.05555555555555555,
115
- "sequenceName": null,
116
- "mutationFrom": "C",
117
- "mutationTo": "T",
118
- "position": 4784
119
- },
120
- {
121
- "mutation": "A6183G",
122
- "count": 2448,
123
- "proportion": 0.9894907033144705,
124
- "sequenceName": null,
125
- "mutationFrom": "A",
126
- "mutationTo": "G",
127
- "position": 6183
128
- },
129
- {
130
- "mutation": "C7113T",
131
- "count": 1149,
132
- "proportion": 0.46181672025723475,
133
- "sequenceName": null,
134
- "mutationFrom": "C",
135
- "mutationTo": "T",
136
- "position": 7113
137
- },
138
- {
139
- "mutation": "A7842G",
140
- "count": 2509,
141
- "proportion": 0.9913077834847887,
142
- "sequenceName": null,
143
- "mutationFrom": "A",
144
- "mutationTo": "G",
145
- "position": 7842
146
- },
147
- {
148
- "mutation": "C8293T",
149
- "count": 2507,
150
- "proportion": 0.9913009094503756,
151
- "sequenceName": null,
152
- "mutationFrom": "C",
153
- "mutationTo": "T",
154
- "position": 8293
155
- },
156
- {
157
- "mutation": "G8393A",
158
- "count": 2505,
159
- "proportion": 0.9912940245350218,
160
- "sequenceName": null,
161
- "mutationFrom": "G",
162
- "mutationTo": "A",
163
- "position": 8393
164
- },
165
- {
166
- "mutation": "C9344T",
167
- "count": 2496,
168
- "proportion": 0.9916567342073898,
169
- "sequenceName": null,
170
- "mutationFrom": "C",
171
- "mutationTo": "T",
172
- "position": 9344
173
- },
174
- {
175
- "mutation": "A9424G",
176
- "count": 2501,
177
- "proportion": 0.9972089314194578,
178
- "sequenceName": null,
179
- "mutationFrom": "A",
180
- "mutationTo": "G",
181
- "position": 9424
182
- },
183
- {
184
- "mutation": "C9534T",
185
- "count": 2496,
186
- "proportion": 1.0,
187
- "sequenceName": null,
188
- "mutationFrom": "C",
189
- "mutationTo": "T",
190
- "position": 9534
191
- },
192
- {
193
- "mutation": "C10029T",
194
- "count": 2491,
195
- "proportion": 1.0,
196
- "sequenceName": null,
197
- "mutationFrom": "C",
198
- "mutationTo": "T",
199
- "position": 10029
200
- },
201
- {
202
- "mutation": "C10198T",
203
- "count": 2500,
204
- "proportion": 0.9992006394884093,
205
- "sequenceName": null,
206
- "mutationFrom": "C",
207
- "mutationTo": "T",
208
- "position": 10198
209
- },
210
- {
211
- "mutation": "G10447A",
212
- "count": 2530,
213
- "proportion": 1.0,
214
- "sequenceName": null,
215
- "mutationFrom": "G",
216
- "mutationTo": "A",
217
- "position": 10447
218
- },
219
- {
220
- "mutation": "C10449A",
221
- "count": 2531,
222
- "proportion": 1.0,
223
- "sequenceName": null,
224
- "mutationFrom": "C",
225
- "mutationTo": "A",
226
- "position": 10449
227
- },
228
- {
229
- "mutation": "G11042T",
230
- "count": 2504,
231
- "proportion": 0.9908982983775227,
232
- "sequenceName": null,
233
- "mutationFrom": "G",
234
- "mutationTo": "T",
235
- "position": 11042
236
- },
237
- {
238
- "mutation": "T11288-",
239
- "count": 2530,
240
- "proportion": 0.9996048992493086,
241
- "sequenceName": null,
242
- "mutationFrom": "T",
243
- "mutationTo": "-",
244
- "position": 11288
245
- },
246
- {
247
- "mutation": "C11289-",
248
- "count": 2530,
249
- "proportion": 0.9996048992493086,
250
- "sequenceName": null,
251
- "mutationFrom": "C",
252
- "mutationTo": "-",
253
- "position": 11289
254
- },
255
- {
256
- "mutation": "T11290-",
257
- "count": 2530,
258
- "proportion": 0.9996048992493086,
259
- "sequenceName": null,
260
- "mutationFrom": "T",
261
- "mutationTo": "-",
262
- "position": 11290
263
- },
264
- {
265
- "mutation": "G11291-",
266
- "count": 2530,
267
- "proportion": 0.9996048992493086,
268
- "sequenceName": null,
269
- "mutationFrom": "G",
270
- "mutationTo": "-",
271
- "position": 11291
272
- },
273
- {
274
- "mutation": "G11292-",
275
- "count": 2530,
276
- "proportion": 0.9996048992493086,
277
- "sequenceName": null,
278
- "mutationFrom": "G",
279
- "mutationTo": "-",
280
- "position": 11292
281
- },
282
- {
283
- "mutation": "T11293-",
284
- "count": 2530,
285
- "proportion": 0.9996048992493086,
286
- "sequenceName": null,
287
- "mutationFrom": "T",
288
- "mutationTo": "-",
289
- "position": 11293
290
- },
291
- {
292
- "mutation": "T11294-",
293
- "count": 2529,
294
- "proportion": 0.9992097984986171,
295
- "sequenceName": null,
296
- "mutationFrom": "T",
297
- "mutationTo": "-",
298
- "position": 11294
299
- },
300
- {
301
- "mutation": "T11295-",
302
- "count": 2529,
303
- "proportion": 0.9992097984986171,
304
- "sequenceName": null,
305
- "mutationFrom": "T",
306
- "mutationTo": "-",
307
- "position": 11295
308
- },
309
- {
310
- "mutation": "T11296-",
311
- "count": 2529,
312
- "proportion": 0.9992097984986171,
313
- "sequenceName": null,
314
- "mutationFrom": "T",
315
- "mutationTo": "-",
316
- "position": 11296
317
- },
318
- {
319
- "mutation": "G11727A",
320
- "count": 2365,
321
- "proportion": 0.9907834101382489,
322
- "sequenceName": null,
323
- "mutationFrom": "G",
324
- "mutationTo": "A",
325
- "position": 11727
326
- },
327
- {
328
- "mutation": "C12789T",
329
- "count": 2488,
330
- "proportion": 0.9900517309988062,
331
- "sequenceName": null,
332
- "mutationFrom": "C",
333
- "mutationTo": "T",
334
- "position": 12789
335
- },
336
- {
337
- "mutation": "C12815T",
338
- "count": 2491,
339
- "proportion": 0.9912455232789494,
340
- "sequenceName": null,
341
- "mutationFrom": "C",
342
- "mutationTo": "T",
343
- "position": 12815
344
- },
345
- {
346
- "mutation": "C12880T",
347
- "count": 2516,
348
- "proportion": 1.0,
349
- "sequenceName": null,
350
- "mutationFrom": "C",
351
- "mutationTo": "T",
352
- "position": 12880
353
- },
354
- {
355
- "mutation": "T13339C",
356
- "count": 2415,
357
- "proportion": 0.990159901599016,
358
- "sequenceName": null,
359
- "mutationFrom": "T",
360
- "mutationTo": "C",
361
- "position": 13339
362
- },
363
- {
364
- "mutation": "C14408T",
365
- "count": 2533,
366
- "proportion": 1.0,
367
- "sequenceName": null,
368
- "mutationFrom": "C",
369
- "mutationTo": "T",
370
- "position": 14408
371
- },
372
- {
373
- "mutation": "G15372T",
374
- "count": 128,
375
- "proportion": 0.05073325406262386,
376
- "sequenceName": null,
377
- "mutationFrom": "G",
378
- "mutationTo": "T",
379
- "position": 15372
380
- },
381
- {
382
- "mutation": "C15714T",
383
- "count": 2529,
384
- "proportion": 1.0,
385
- "sequenceName": null,
386
- "mutationFrom": "C",
387
- "mutationTo": "T",
388
- "position": 15714
389
- },
390
- {
391
- "mutation": "T15756A",
392
- "count": 2503,
393
- "proportion": 0.9908946951702297,
394
- "sequenceName": null,
395
- "mutationFrom": "T",
396
- "mutationTo": "A",
397
- "position": 15756
398
- },
399
- {
400
- "mutation": "G17334T",
401
- "count": 1110,
402
- "proportion": 0.44435548438751,
403
- "sequenceName": null,
404
- "mutationFrom": "G",
405
- "mutationTo": "T",
406
- "position": 17334
407
- },
408
- {
409
- "mutation": "C17410T",
410
- "count": 2528,
411
- "proportion": 1.0,
412
- "sequenceName": null,
413
- "mutationFrom": "C",
414
- "mutationTo": "T",
415
- "position": 17410
416
- },
417
- {
418
- "mutation": "A18163G",
419
- "count": 2522,
420
- "proportion": 1.0,
421
- "sequenceName": null,
422
- "mutationFrom": "A",
423
- "mutationTo": "G",
424
- "position": 18163
425
- },
426
- {
427
- "mutation": "A18492G",
428
- "count": 2504,
429
- "proportion": 0.9916831683168317,
430
- "sequenceName": null,
431
- "mutationFrom": "A",
432
- "mutationTo": "G",
433
- "position": 18492
434
- },
435
- {
436
- "mutation": "C18894T",
437
- "count": 2481,
438
- "proportion": 0.9912105473431881,
439
- "sequenceName": null,
440
- "mutationFrom": "C",
441
- "mutationTo": "T",
442
- "position": 18894
443
- },
444
- {
445
- "mutation": "A19722G",
446
- "count": 126,
447
- "proportion": 0.050239234449760764,
448
- "sequenceName": null,
449
- "mutationFrom": "A",
450
- "mutationTo": "G",
451
- "position": 19722
452
- },
453
- {
454
- "mutation": "C19955T",
455
- "count": 2465,
456
- "proportion": 1.0,
457
- "sequenceName": null,
458
- "mutationFrom": "C",
459
- "mutationTo": "T",
460
- "position": 19955
461
- },
462
- {
463
- "mutation": "A20055G",
464
- "count": 2464,
465
- "proportion": 0.9887640449438202,
466
- "sequenceName": null,
467
- "mutationFrom": "A",
468
- "mutationTo": "G",
469
- "position": 20055
470
- },
471
- {
472
- "mutation": "G21123T",
473
- "count": 150,
474
- "proportion": 0.060265166733627966,
475
- "sequenceName": null,
476
- "mutationFrom": "G",
477
- "mutationTo": "T",
478
- "position": 21123
479
- },
480
- {
481
- "mutation": "C21618T",
482
- "count": 2397,
483
- "proportion": 1.0,
484
- "sequenceName": null,
485
- "mutationFrom": "C",
486
- "mutationTo": "T",
487
- "position": 21618
488
- },
489
- {
490
- "mutation": "C21622T",
491
- "count": 2390,
492
- "proportion": 0.999581764951903,
493
- "sequenceName": null,
494
- "mutationFrom": "C",
495
- "mutationTo": "T",
496
- "position": 21622
497
- },
498
- {
499
- "mutation": "G21624C",
500
- "count": 2389,
501
- "proportion": 0.9987458193979933,
502
- "sequenceName": null,
503
- "mutationFrom": "G",
504
- "mutationTo": "C",
505
- "position": 21624
506
- },
507
- {
508
- "mutation": "T21633-",
509
- "count": 2334,
510
- "proportion": 0.986892177589852,
511
- "sequenceName": null,
512
- "mutationFrom": "T",
513
- "mutationTo": "-",
514
- "position": 21633
515
- },
516
- {
517
- "mutation": "A21634-",
518
- "count": 2334,
519
- "proportion": 0.9953091684434968,
520
- "sequenceName": null,
521
- "mutationFrom": "A",
522
- "mutationTo": "-",
523
- "position": 21634
524
- },
525
- {
526
- "mutation": "C21635-",
527
- "count": 2343,
528
- "proportion": 0.9995733788395904,
529
- "sequenceName": null,
530
- "mutationFrom": "C",
531
- "mutationTo": "-",
532
- "position": 21635
533
- },
534
- {
535
- "mutation": "C21636-",
536
- "count": 2343,
537
- "proportion": 0.9995733788395904,
538
- "sequenceName": null,
539
- "mutationFrom": "C",
540
- "mutationTo": "-",
541
- "position": 21636
542
- },
543
- {
544
- "mutation": "C21637-",
545
- "count": 2343,
546
- "proportion": 0.9995733788395904,
547
- "sequenceName": null,
548
- "mutationFrom": "C",
549
- "mutationTo": "-",
550
- "position": 21637
551
- },
552
- {
553
- "mutation": "C21638-",
554
- "count": 2343,
555
- "proportion": 0.9995733788395904,
556
- "sequenceName": null,
557
- "mutationFrom": "C",
558
- "mutationTo": "-",
559
- "position": 21638
560
- },
561
- {
562
- "mutation": "C21639-",
563
- "count": 2343,
564
- "proportion": 0.9987212276214834,
565
- "sequenceName": null,
566
- "mutationFrom": "C",
567
- "mutationTo": "-",
568
- "position": 21639
569
- },
570
- {
571
- "mutation": "T21640-",
572
- "count": 2343,
573
- "proportion": 0.9940602460755197,
574
- "sequenceName": null,
575
- "mutationFrom": "T",
576
- "mutationTo": "-",
577
- "position": 21640
578
- },
579
- {
580
- "mutation": "G21641-",
581
- "count": 2342,
582
- "proportion": 0.9819706498951782,
583
- "sequenceName": null,
584
- "mutationFrom": "G",
585
- "mutationTo": "-",
586
- "position": 21641
587
- },
588
- {
589
- "mutation": "T21653-",
590
- "count": 473,
591
- "proportion": 0.18844621513944224,
592
- "sequenceName": null,
593
- "mutationFrom": "T",
594
- "mutationTo": "-",
595
- "position": 21653
596
- },
597
- {
598
- "mutation": "C21654-",
599
- "count": 471,
600
- "proportion": 0.18772419290554004,
601
- "sequenceName": null,
602
- "mutationFrom": "C",
603
- "mutationTo": "-",
604
- "position": 21654
605
- },
606
- {
607
- "mutation": "T21655-",
608
- "count": 473,
609
- "proportion": 0.1868088467614534,
610
- "sequenceName": null,
611
- "mutationFrom": "T",
612
- "mutationTo": "-",
613
- "position": 21655
614
- },
615
- {
616
- "mutation": "C21711T",
617
- "count": 2465,
618
- "proportion": 0.9979757085020243,
619
- "sequenceName": null,
620
- "mutationFrom": "C",
621
- "mutationTo": "T",
622
- "position": 21711
623
- },
624
- {
625
- "mutation": "T21738C",
626
- "count": 164,
627
- "proportion": 0.06642365330093156,
628
- "sequenceName": null,
629
- "mutationFrom": "T",
630
- "mutationTo": "C",
631
- "position": 21738
632
- },
633
- {
634
- "mutation": "T21765-",
635
- "count": 2465,
636
- "proportion": 0.9983799108950993,
637
- "sequenceName": null,
638
- "mutationFrom": "T",
639
- "mutationTo": "-",
640
- "position": 21765
641
- },
642
- {
643
- "mutation": "A21766-",
644
- "count": 2465,
645
- "proportion": 0.9995944849959448,
646
- "sequenceName": null,
647
- "mutationFrom": "A",
648
- "mutationTo": "-",
649
- "position": 21766
650
- },
651
- {
652
- "mutation": "C21767-",
653
- "count": 2466,
654
- "proportion": 1.0,
655
- "sequenceName": null,
656
- "mutationFrom": "C",
657
- "mutationTo": "-",
658
- "position": 21767
659
- },
660
- {
661
- "mutation": "A21768-",
662
- "count": 2466,
663
- "proportion": 1.0,
664
- "sequenceName": null,
665
- "mutationFrom": "A",
666
- "mutationTo": "-",
667
- "position": 21768
668
- },
669
- {
670
- "mutation": "T21769-",
671
- "count": 2466,
672
- "proportion": 0.9987849331713244,
673
- "sequenceName": null,
674
- "mutationFrom": "T",
675
- "mutationTo": "-",
676
- "position": 21769
677
- },
678
- {
679
- "mutation": "G21770-",
680
- "count": 2466,
681
- "proportion": 1.0,
682
- "sequenceName": null,
683
- "mutationFrom": "G",
684
- "mutationTo": "-",
685
- "position": 21770
686
- },
687
- {
688
- "mutation": "G21941T",
689
- "count": 2526,
690
- "proportion": 1.0,
691
- "sequenceName": null,
692
- "mutationFrom": "G",
693
- "mutationTo": "T",
694
- "position": 21941
695
- },
696
- {
697
- "mutation": "G21987A",
698
- "count": 2515,
699
- "proportion": 0.9988085782366958,
700
- "sequenceName": null,
701
- "mutationFrom": "G",
702
- "mutationTo": "A",
703
- "position": 21987
704
- },
705
- {
706
- "mutation": "T21992-",
707
- "count": 2531,
708
- "proportion": 0.9988161010260458,
709
- "sequenceName": null,
710
- "mutationFrom": "T",
711
- "mutationTo": "-",
712
- "position": 21992
713
- },
714
- {
715
- "mutation": "A21993-",
716
- "count": 2531,
717
- "proportion": 0.9988161010260458,
718
- "sequenceName": null,
719
- "mutationFrom": "A",
720
- "mutationTo": "-",
721
- "position": 21993
722
- },
723
- {
724
- "mutation": "T21994-",
725
- "count": 2531,
726
- "proportion": 0.9988161010260458,
727
- "sequenceName": null,
728
- "mutationFrom": "T",
729
- "mutationTo": "-",
730
- "position": 21994
731
- },
732
- {
733
- "mutation": "C22000A",
734
- "count": 139,
735
- "proportion": 0.055071315372424726,
736
- "sequenceName": null,
737
- "mutationFrom": "C",
738
- "mutationTo": "A",
739
- "position": 22000
740
- },
741
- {
742
- "mutation": "T22032C",
743
- "count": 2527,
744
- "proportion": 0.9984195969972343,
745
- "sequenceName": null,
746
- "mutationFrom": "T",
747
- "mutationTo": "C",
748
- "position": 22032
749
- },
750
- {
751
- "mutation": "C22033A",
752
- "count": 2528,
753
- "proportion": 0.9988146977479258,
754
- "sequenceName": null,
755
- "mutationFrom": "C",
756
- "mutationTo": "A",
757
- "position": 22033
758
- },
759
- {
760
- "mutation": "A22034G",
761
- "count": 2528,
762
- "proportion": 0.9988146977479258,
763
- "sequenceName": null,
764
- "mutationFrom": "A",
765
- "mutationTo": "G",
766
- "position": 22034
767
- },
768
- {
769
- "mutation": "G22111T",
770
- "count": 262,
771
- "proportion": 0.10372129849564529,
772
- "sequenceName": null,
773
- "mutationFrom": "G",
774
- "mutationTo": "T",
775
- "position": 22111
776
- },
777
- {
778
- "mutation": "A22194-",
779
- "count": 2510,
780
- "proportion": 0.9996017522899243,
781
- "sequenceName": null,
782
- "mutationFrom": "A",
783
- "mutationTo": "-",
784
- "position": 22194
785
- },
786
- {
787
- "mutation": "T22195-",
788
- "count": 2510,
789
- "proportion": 0.9996017522899243,
790
- "sequenceName": null,
791
- "mutationFrom": "T",
792
- "mutationTo": "-",
793
- "position": 22195
794
- },
795
- {
796
- "mutation": "T22196-",
797
- "count": 2510,
798
- "proportion": 0.9996017522899243,
799
- "sequenceName": null,
800
- "mutationFrom": "T",
801
- "mutationTo": "-",
802
- "position": 22196
803
- },
804
- {
805
- "mutation": "T22200G",
806
- "count": 2492,
807
- "proportion": 0.9924332935085624,
808
- "sequenceName": null,
809
- "mutationFrom": "T",
810
- "mutationTo": "G",
811
- "position": 22200
812
- },
813
- {
814
- "mutation": "C22208T",
815
- "count": 2511,
816
- "proportion": 0.9988066825775657,
817
- "sequenceName": null,
818
- "mutationFrom": "C",
819
- "mutationTo": "T",
820
- "position": 22208
821
- },
822
- {
823
- "mutation": "C22295A",
824
- "count": 2504,
825
- "proportion": 1.0,
826
- "sequenceName": null,
827
- "mutationFrom": "C",
828
- "mutationTo": "A",
829
- "position": 22295
830
- },
831
- {
832
- "mutation": "C22353A",
833
- "count": 2496,
834
- "proportion": 0.9908693926161175,
835
- "sequenceName": null,
836
- "mutationFrom": "C",
837
- "mutationTo": "A",
838
- "position": 22353
839
- },
840
- {
841
- "mutation": "A22556G",
842
- "count": 2512,
843
- "proportion": 0.9996020692399522,
844
- "sequenceName": null,
845
- "mutationFrom": "A",
846
- "mutationTo": "G",
847
- "position": 22556
848
- },
849
- {
850
- "mutation": "G22577C",
851
- "count": 2503,
852
- "proportion": 0.9984044674910252,
853
- "sequenceName": null,
854
- "mutationFrom": "G",
855
- "mutationTo": "C",
856
- "position": 22577
857
- },
858
- {
859
- "mutation": "G22578A",
860
- "count": 2503,
861
- "proportion": 0.9988028731045491,
862
- "sequenceName": null,
863
- "mutationFrom": "G",
864
- "mutationTo": "A",
865
- "position": 22578
866
- },
867
- {
868
- "mutation": "G22599C",
869
- "count": 1464,
870
- "proportion": 0.5867735470941884,
871
- "sequenceName": null,
872
- "mutationFrom": "G",
873
- "mutationTo": "C",
874
- "position": 22599
875
- },
876
- {
877
- "mutation": "A22629C",
878
- "count": 2422,
879
- "proportion": 0.9979398434281005,
880
- "sequenceName": null,
881
- "mutationFrom": "A",
882
- "mutationTo": "C",
883
- "position": 22629
884
- },
885
- {
886
- "mutation": "C22674T",
887
- "count": 2505,
888
- "proportion": 0.9984057393383818,
889
- "sequenceName": null,
890
- "mutationFrom": "C",
891
- "mutationTo": "T",
892
- "position": 22674
893
- },
894
- {
895
- "mutation": "T22679C",
896
- "count": 2510,
897
- "proportion": 1.0,
898
- "sequenceName": null,
899
- "mutationFrom": "T",
900
- "mutationTo": "C",
901
- "position": 22679
902
- },
903
- {
904
- "mutation": "C22686T",
905
- "count": 2504,
906
- "proportion": 1.0,
907
- "sequenceName": null,
908
- "mutationFrom": "C",
909
- "mutationTo": "T",
910
- "position": 22686
911
- },
912
- {
913
- "mutation": "A22688G",
914
- "count": 2497,
915
- "proportion": 0.9968063872255489,
916
- "sequenceName": null,
917
- "mutationFrom": "A",
918
- "mutationTo": "G",
919
- "position": 22688
920
- },
921
- {
922
- "mutation": "G22770A",
923
- "count": 2476,
924
- "proportion": 0.9947770188830856,
925
- "sequenceName": null,
926
- "mutationFrom": "G",
927
- "mutationTo": "A",
928
- "position": 22770
929
- },
930
- {
931
- "mutation": "G22775A",
932
- "count": 2502,
933
- "proportion": 1.0,
934
- "sequenceName": null,
935
- "mutationFrom": "G",
936
- "mutationTo": "A",
937
- "position": 22775
938
- },
939
- {
940
- "mutation": "A22786C",
941
- "count": 2426,
942
- "proportion": 0.9893964110929854,
943
- "sequenceName": null,
944
- "mutationFrom": "A",
945
- "mutationTo": "C",
946
- "position": 22786
947
- },
948
- {
949
- "mutation": "T22795G",
950
- "count": 200,
951
- "proportion": 0.0827129859387924,
952
- "sequenceName": null,
953
- "mutationFrom": "T",
954
- "mutationTo": "G",
955
- "position": 22795
956
- },
957
- {
958
- "mutation": "G22813T",
959
- "count": 2424,
960
- "proportion": 0.9987639060568603,
961
- "sequenceName": null,
962
- "mutationFrom": "G",
963
- "mutationTo": "T",
964
- "position": 22813
965
- },
966
- {
967
- "mutation": "T22882G",
968
- "count": 2394,
969
- "proportion": 0.9991652754590985,
970
- "sequenceName": null,
971
- "mutationFrom": "T",
972
- "mutationTo": "G",
973
- "position": 22882
974
- },
975
- {
976
- "mutation": "G22895C",
977
- "count": 2380,
978
- "proportion": 0.9966499162479062,
979
- "sequenceName": null,
980
- "mutationFrom": "G",
981
- "mutationTo": "C",
982
- "position": 22895
983
- },
984
- {
985
- "mutation": "T22896A",
986
- "count": 2344,
987
- "proportion": 0.9823973176865046,
988
- "sequenceName": null,
989
- "mutationFrom": "T",
990
- "mutationTo": "A",
991
- "position": 22896
992
- },
993
- {
994
- "mutation": "G22898A",
995
- "count": 2383,
996
- "proportion": 0.9983242563887725,
997
- "sequenceName": null,
998
- "mutationFrom": "G",
999
- "mutationTo": "A",
1000
- "position": 22898
1001
- },
1002
- {
1003
- "mutation": "A22910G",
1004
- "count": 2388,
1005
- "proportion": 0.9974937343358395,
1006
- "sequenceName": null,
1007
- "mutationFrom": "A",
1008
- "mutationTo": "G",
1009
- "position": 22910
1010
- },
1011
- {
1012
- "mutation": "C22916T",
1013
- "count": 2372,
1014
- "proportion": 0.9983164983164983,
1015
- "sequenceName": null,
1016
- "mutationFrom": "C",
1017
- "mutationTo": "T",
1018
- "position": 22916
1019
- },
1020
- {
1021
- "mutation": "T22917G",
1022
- "count": 2392,
1023
- "proportion": 0.9987473903966597,
1024
- "sequenceName": null,
1025
- "mutationFrom": "T",
1026
- "mutationTo": "G",
1027
- "position": 22917
1028
- },
1029
- {
1030
- "mutation": "T22926C",
1031
- "count": 2395,
1032
- "proportion": 0.999165623696287,
1033
- "sequenceName": null,
1034
- "mutationFrom": "T",
1035
- "mutationTo": "C",
1036
- "position": 22926
1037
- },
1038
- {
1039
- "mutation": "T22928C",
1040
- "count": 1709,
1041
- "proportion": 0.7174643157010915,
1042
- "sequenceName": null,
1043
- "mutationFrom": "T",
1044
- "mutationTo": "C",
1045
- "position": 22928
1046
- },
1047
- {
1048
- "mutation": "T22942A",
1049
- "count": 2399,
1050
- "proportion": 0.9995833333333334,
1051
- "sequenceName": null,
1052
- "mutationFrom": "T",
1053
- "mutationTo": "A",
1054
- "position": 22942
1055
- },
1056
- {
1057
- "mutation": "G22992A",
1058
- "count": 2475,
1059
- "proportion": 0.9979838709677419,
1060
- "sequenceName": null,
1061
- "mutationFrom": "G",
1062
- "mutationTo": "A",
1063
- "position": 22992
1064
- },
1065
- {
1066
- "mutation": "C22995A",
1067
- "count": 2462,
1068
- "proportion": 0.993543179983858,
1069
- "sequenceName": null,
1070
- "mutationFrom": "C",
1071
- "mutationTo": "A",
1072
- "position": 22995
1073
- },
1074
- {
1075
- "mutation": "T23005A",
1076
- "count": 2437,
1077
- "proportion": 0.9975440032746623,
1078
- "sequenceName": null,
1079
- "mutationFrom": "T",
1080
- "mutationTo": "A",
1081
- "position": 23005
1082
- },
1083
- {
1084
- "mutation": "G23009-",
1085
- "count": 2424,
1086
- "proportion": 0.9946655724251129,
1087
- "sequenceName": null,
1088
- "mutationFrom": "G",
1089
- "mutationTo": "-",
1090
- "position": 23009
1091
- },
1092
- {
1093
- "mutation": "T23010-",
1094
- "count": 2424,
1095
- "proportion": 0.9946655724251129,
1096
- "sequenceName": null,
1097
- "mutationFrom": "T",
1098
- "mutationTo": "-",
1099
- "position": 23010
1100
- },
1101
- {
1102
- "mutation": "T23011-",
1103
- "count": 2424,
1104
- "proportion": 0.9950738916256158,
1105
- "sequenceName": null,
1106
- "mutationFrom": "T",
1107
- "mutationTo": "-",
1108
- "position": 23011
1109
- },
1110
- {
1111
- "mutation": "G23012A",
1112
- "count": 2444,
1113
- "proportion": 0.9975510204081632,
1114
- "sequenceName": null,
1115
- "mutationFrom": "G",
1116
- "mutationTo": "A",
1117
- "position": 23012
1118
- },
1119
- {
1120
- "mutation": "T23018C",
1121
- "count": 2442,
1122
- "proportion": 0.996328029375765,
1123
- "sequenceName": null,
1124
- "mutationFrom": "T",
1125
- "mutationTo": "C",
1126
- "position": 23018
1127
- },
1128
- {
1129
- "mutation": "T23019C",
1130
- "count": 2464,
1131
- "proportion": 0.9963606955115245,
1132
- "sequenceName": null,
1133
- "mutationFrom": "T",
1134
- "mutationTo": "C",
1135
- "position": 23019
1136
- },
1137
- {
1138
- "mutation": "C23039G",
1139
- "count": 344,
1140
- "proportion": 0.13882163034705408,
1141
- "sequenceName": null,
1142
- "mutationFrom": "C",
1143
- "mutationTo": "G",
1144
- "position": 23039
1145
- },
1146
- {
1147
- "mutation": "A23055G",
1148
- "count": 2458,
1149
- "proportion": 1.0,
1150
- "sequenceName": null,
1151
- "mutationFrom": "A",
1152
- "mutationTo": "G",
1153
- "position": 23055
1154
- },
1155
- {
1156
- "mutation": "A23063T",
1157
- "count": 2457,
1158
- "proportion": 1.0,
1159
- "sequenceName": null,
1160
- "mutationFrom": "A",
1161
- "mutationTo": "T",
1162
- "position": 23063
1163
- },
1164
- {
1165
- "mutation": "T23075C",
1166
- "count": 2453,
1167
- "proportion": 0.9979658258746948,
1168
- "sequenceName": null,
1169
- "mutationFrom": "T",
1170
- "mutationTo": "C",
1171
- "position": 23075
1172
- },
1173
- {
1174
- "mutation": "G23222A",
1175
- "count": 2532,
1176
- "proportion": 1.0,
1177
- "sequenceName": null,
1178
- "mutationFrom": "G",
1179
- "mutationTo": "A",
1180
- "position": 23222
1181
- },
1182
- {
1183
- "mutation": "C23271T",
1184
- "count": 2534,
1185
- "proportion": 1.0,
1186
- "sequenceName": null,
1187
- "mutationFrom": "C",
1188
- "mutationTo": "T",
1189
- "position": 23271
1190
- },
1191
- {
1192
- "mutation": "C23277T",
1193
- "count": 420,
1194
- "proportion": 0.16600790513833993,
1195
- "sequenceName": null,
1196
- "mutationFrom": "C",
1197
- "mutationTo": "T",
1198
- "position": 23277
1199
- },
1200
- {
1201
- "mutation": "A23403G",
1202
- "count": 2531,
1203
- "proportion": 1.0,
1204
- "sequenceName": null,
1205
- "mutationFrom": "A",
1206
- "mutationTo": "G",
1207
- "position": 23403
1208
- },
1209
- {
1210
- "mutation": "C23423T",
1211
- "count": 2530,
1212
- "proportion": 0.9996048992493086,
1213
- "sequenceName": null,
1214
- "mutationFrom": "C",
1215
- "mutationTo": "T",
1216
- "position": 23423
1217
- },
1218
- {
1219
- "mutation": "C23525T",
1220
- "count": 2246,
1221
- "proportion": 1.0,
1222
- "sequenceName": null,
1223
- "mutationFrom": "C",
1224
- "mutationTo": "T",
1225
- "position": 23525
1226
- },
1227
- {
1228
- "mutation": "T23599G",
1229
- "count": 2451,
1230
- "proportion": 0.9883064516129032,
1231
- "sequenceName": null,
1232
- "mutationFrom": "T",
1233
- "mutationTo": "G",
1234
- "position": 23599
1235
- },
1236
- {
1237
- "mutation": "C23604G",
1238
- "count": 2455,
1239
- "proportion": 0.9903186768858411,
1240
- "sequenceName": null,
1241
- "mutationFrom": "C",
1242
- "mutationTo": "G",
1243
- "position": 23604
1244
- },
1245
- {
1246
- "mutation": "C23854A",
1247
- "count": 2468,
1248
- "proportion": 1.0,
1249
- "sequenceName": null,
1250
- "mutationFrom": "C",
1251
- "mutationTo": "A",
1252
- "position": 23854
1253
- },
1254
- {
1255
- "mutation": "G23948T",
1256
- "count": 2445,
1257
- "proportion": 0.9987745098039216,
1258
- "sequenceName": null,
1259
- "mutationFrom": "G",
1260
- "mutationTo": "T",
1261
- "position": 23948
1262
- },
1263
- {
1264
- "mutation": "C24378T",
1265
- "count": 2196,
1266
- "proportion": 0.991869918699187,
1267
- "sequenceName": null,
1268
- "mutationFrom": "C",
1269
- "mutationTo": "T",
1270
- "position": 24378
1271
- },
1272
- {
1273
- "mutation": "A24424T",
1274
- "count": 2210,
1275
- "proportion": 1.0,
1276
- "sequenceName": null,
1277
- "mutationFrom": "A",
1278
- "mutationTo": "T",
1279
- "position": 24424
1280
- },
1281
- {
1282
- "mutation": "T24469A",
1283
- "count": 2216,
1284
- "proportion": 0.9941677882458502,
1285
- "sequenceName": null,
1286
- "mutationFrom": "T",
1287
- "mutationTo": "A",
1288
- "position": 24469
1289
- },
1290
- {
1291
- "mutation": "A24819G",
1292
- "count": 182,
1293
- "proportion": 0.07213634562029331,
1294
- "sequenceName": null,
1295
- "mutationFrom": "A",
1296
- "mutationTo": "G",
1297
- "position": 24819
1298
- },
1299
- {
1300
- "mutation": "G24821T",
1301
- "count": 129,
1302
- "proportion": 0.051008303677342826,
1303
- "sequenceName": null,
1304
- "mutationFrom": "G",
1305
- "mutationTo": "T",
1306
- "position": 24821
1307
- },
1308
- {
1309
- "mutation": "G24872T",
1310
- "count": 1106,
1311
- "proportion": 0.44310897435897434,
1312
- "sequenceName": null,
1313
- "mutationFrom": "G",
1314
- "mutationTo": "T",
1315
- "position": 24872
1316
- },
1317
- {
1318
- "mutation": "C24990T",
1319
- "count": 2527,
1320
- "proportion": 0.9992091735863978,
1321
- "sequenceName": null,
1322
- "mutationFrom": "C",
1323
- "mutationTo": "T",
1324
- "position": 24990
1325
- },
1326
- {
1327
- "mutation": "C25000T",
1328
- "count": 2527,
1329
- "proportion": 0.9992091735863978,
1330
- "sequenceName": null,
1331
- "mutationFrom": "C",
1332
- "mutationTo": "T",
1333
- "position": 25000
1334
- },
1335
- {
1336
- "mutation": "G25012T",
1337
- "count": 194,
1338
- "proportion": 0.07677087455480808,
1339
- "sequenceName": null,
1340
- "mutationFrom": "G",
1341
- "mutationTo": "T",
1342
- "position": 25012
1343
- },
1344
- {
1345
- "mutation": "C25207T",
1346
- "count": 2354,
1347
- "proportion": 0.998303647158609,
1348
- "sequenceName": null,
1349
- "mutationFrom": "C",
1350
- "mutationTo": "T",
1351
- "position": 25207
1352
- },
1353
- {
1354
- "mutation": "C25566T",
1355
- "count": 196,
1356
- "proportion": 0.077500988533017,
1357
- "sequenceName": null,
1358
- "mutationFrom": "C",
1359
- "mutationTo": "T",
1360
- "position": 25566
1361
- },
1362
- {
1363
- "mutation": "C25584T",
1364
- "count": 2533,
1365
- "proportion": 1.0,
1366
- "sequenceName": null,
1367
- "mutationFrom": "C",
1368
- "mutationTo": "T",
1369
- "position": 25584
1370
- },
1371
- {
1372
- "mutation": "G25593T",
1373
- "count": 135,
1374
- "proportion": 0.053423031262366444,
1375
- "sequenceName": null,
1376
- "mutationFrom": "G",
1377
- "mutationTo": "T",
1378
- "position": 25593
1379
- },
1380
- {
1381
- "mutation": "C25680T",
1382
- "count": 132,
1383
- "proportion": 0.05217391304347826,
1384
- "sequenceName": null,
1385
- "mutationFrom": "C",
1386
- "mutationTo": "T",
1387
- "position": 25680
1388
- },
1389
- {
1390
- "mutation": "C26060T",
1391
- "count": 2512,
1392
- "proportion": 0.9992044550517104,
1393
- "sequenceName": null,
1394
- "mutationFrom": "C",
1395
- "mutationTo": "T",
1396
- "position": 26060
1397
- },
1398
- {
1399
- "mutation": "C26270T",
1400
- "count": 2513,
1401
- "proportion": 1.0,
1402
- "sequenceName": null,
1403
- "mutationFrom": "C",
1404
- "mutationTo": "T",
1405
- "position": 26270
1406
- },
1407
- {
1408
- "mutation": "G26529C",
1409
- "count": 2530,
1410
- "proportion": 0.9996048992493086,
1411
- "sequenceName": null,
1412
- "mutationFrom": "G",
1413
- "mutationTo": "C",
1414
- "position": 26529
1415
- },
1416
- {
1417
- "mutation": "C26577G",
1418
- "count": 2525,
1419
- "proportion": 0.9980237154150198,
1420
- "sequenceName": null,
1421
- "mutationFrom": "C",
1422
- "mutationTo": "G",
1423
- "position": 26577
1424
- },
1425
- {
1426
- "mutation": "A26610G",
1427
- "count": 2441,
1428
- "proportion": 0.9910678034916768,
1429
- "sequenceName": null,
1430
- "mutationFrom": "A",
1431
- "mutationTo": "G",
1432
- "position": 26610
1433
- },
1434
- {
1435
- "mutation": "C26681T",
1436
- "count": 2523,
1437
- "proportion": 0.998812351543943,
1438
- "sequenceName": null,
1439
- "mutationFrom": "C",
1440
- "mutationTo": "T",
1441
- "position": 26681
1442
- },
1443
- {
1444
- "mutation": "G26709A",
1445
- "count": 2519,
1446
- "proportion": 0.9992066640222134,
1447
- "sequenceName": null,
1448
- "mutationFrom": "G",
1449
- "mutationTo": "A",
1450
- "position": 26709
1451
- },
1452
- {
1453
- "mutation": "C26833T",
1454
- "count": 2519,
1455
- "proportion": 1.0,
1456
- "sequenceName": null,
1457
- "mutationFrom": "C",
1458
- "mutationTo": "T",
1459
- "position": 26833
1460
- },
1461
- {
1462
- "mutation": "C26858T",
1463
- "count": 2496,
1464
- "proportion": 0.9976019184652278,
1465
- "sequenceName": null,
1466
- "mutationFrom": "C",
1467
- "mutationTo": "T",
1468
- "position": 26858
1469
- },
1470
- {
1471
- "mutation": "C26894T",
1472
- "count": 132,
1473
- "proportion": 0.052778888444622155,
1474
- "sequenceName": null,
1475
- "mutationFrom": "C",
1476
- "mutationTo": "T",
1477
- "position": 26894
1478
- },
1479
- {
1480
- "mutation": "A27259C",
1481
- "count": 2526,
1482
- "proportion": 0.9992088607594937,
1483
- "sequenceName": null,
1484
- "mutationFrom": "A",
1485
- "mutationTo": "C",
1486
- "position": 27259
1487
- },
1488
- {
1489
- "mutation": "G27382C",
1490
- "count": 2522,
1491
- "proportion": 0.998021369212505,
1492
- "sequenceName": null,
1493
- "mutationFrom": "G",
1494
- "mutationTo": "C",
1495
- "position": 27382
1496
- },
1497
- {
1498
- "mutation": "A27383T",
1499
- "count": 2525,
1500
- "proportion": 0.999208547685002,
1501
- "sequenceName": null,
1502
- "mutationFrom": "A",
1503
- "mutationTo": "T",
1504
- "position": 27383
1505
- },
1506
- {
1507
- "mutation": "T27384C",
1508
- "count": 2517,
1509
- "proportion": 0.9960427384250099,
1510
- "sequenceName": null,
1511
- "mutationFrom": "T",
1512
- "mutationTo": "C",
1513
- "position": 27384
1514
- },
1515
- {
1516
- "mutation": "C27807T",
1517
- "count": 2469,
1518
- "proportion": 0.9995951417004049,
1519
- "sequenceName": null,
1520
- "mutationFrom": "C",
1521
- "mutationTo": "T",
1522
- "position": 27807
1523
- },
1524
- {
1525
- "mutation": "T27810C",
1526
- "count": 2474,
1527
- "proportion": 0.9987888574888979,
1528
- "sequenceName": null,
1529
- "mutationFrom": "T",
1530
- "mutationTo": "C",
1531
- "position": 27810
1532
- },
1533
- {
1534
- "mutation": "A28271T",
1535
- "count": 2512,
1536
- "proportion": 0.9992044550517104,
1537
- "sequenceName": null,
1538
- "mutationFrom": "A",
1539
- "mutationTo": "T",
1540
- "position": 28271
1541
- },
1542
- {
1543
- "mutation": "C28311T",
1544
- "count": 2513,
1545
- "proportion": 0.9996022275258553,
1546
- "sequenceName": null,
1547
- "mutationFrom": "C",
1548
- "mutationTo": "T",
1549
- "position": 28311
1550
- },
1551
- {
1552
- "mutation": "G28362-",
1553
- "count": 2497,
1554
- "proportion": 0.993633107839236,
1555
- "sequenceName": null,
1556
- "mutationFrom": "G",
1557
- "mutationTo": "-",
1558
- "position": 28362
1559
- },
1560
- {
1561
- "mutation": "A28363-",
1562
- "count": 2497,
1563
- "proportion": 0.9944245320589407,
1564
- "sequenceName": null,
1565
- "mutationFrom": "A",
1566
- "mutationTo": "-",
1567
- "position": 28363
1568
- },
1569
- {
1570
- "mutation": "G28364-",
1571
- "count": 2497,
1572
- "proportion": 0.9944245320589407,
1573
- "sequenceName": null,
1574
- "mutationFrom": "G",
1575
- "mutationTo": "-",
1576
- "position": 28364
1577
- },
1578
- {
1579
- "mutation": "A28365-",
1580
- "count": 2497,
1581
- "proportion": 0.999599679743795,
1582
- "sequenceName": null,
1583
- "mutationFrom": "A",
1584
- "mutationTo": "-",
1585
- "position": 28365
1586
- },
1587
- {
1588
- "mutation": "A28366-",
1589
- "count": 2497,
1590
- "proportion": 0.999599679743795,
1591
- "sequenceName": null,
1592
- "mutationFrom": "A",
1593
- "mutationTo": "-",
1594
- "position": 28366
1595
- },
1596
- {
1597
- "mutation": "C28367-",
1598
- "count": 2497,
1599
- "proportion": 0.999599679743795,
1600
- "sequenceName": null,
1601
- "mutationFrom": "C",
1602
- "mutationTo": "-",
1603
- "position": 28367
1604
- },
1605
- {
1606
- "mutation": "G28368-",
1607
- "count": 2497,
1608
- "proportion": 0.999599679743795,
1609
- "sequenceName": null,
1610
- "mutationFrom": "G",
1611
- "mutationTo": "-",
1612
- "position": 28368
1613
- },
1614
- {
1615
- "mutation": "C28369-",
1616
- "count": 2497,
1617
- "proportion": 0.999599679743795,
1618
- "sequenceName": null,
1619
- "mutationFrom": "C",
1620
- "mutationTo": "-",
1621
- "position": 28369
1622
- },
1623
- {
1624
- "mutation": "A28370-",
1625
- "count": 2495,
1626
- "proportion": 0.9987990392313851,
1627
- "sequenceName": null,
1628
- "mutationFrom": "A",
1629
- "mutationTo": "-",
1630
- "position": 28370
1631
- },
1632
- {
1633
- "mutation": "G28881A",
1634
- "count": 2525,
1635
- "proportion": 1.0,
1636
- "sequenceName": null,
1637
- "mutationFrom": "G",
1638
- "mutationTo": "A",
1639
- "position": 28881
1640
- },
1641
- {
1642
- "mutation": "G28882A",
1643
- "count": 2525,
1644
- "proportion": 1.0,
1645
- "sequenceName": null,
1646
- "mutationFrom": "G",
1647
- "mutationTo": "A",
1648
- "position": 28882
1649
- },
1650
- {
1651
- "mutation": "G28883C",
1652
- "count": 2525,
1653
- "proportion": 1.0,
1654
- "sequenceName": null,
1655
- "mutationFrom": "G",
1656
- "mutationTo": "C",
1657
- "position": 28883
1658
- },
1659
- {
1660
- "mutation": "C28958A",
1661
- "count": 2502,
1662
- "proportion": 0.9908910891089109,
1663
- "sequenceName": null,
1664
- "mutationFrom": "C",
1665
- "mutationTo": "A",
1666
- "position": 28958
1667
- },
1668
- {
1669
- "mutation": "A29510C",
1670
- "count": 2509,
1671
- "proportion": 0.999601593625498,
1672
- "sequenceName": null,
1673
- "mutationFrom": "A",
1674
- "mutationTo": "C",
1675
- "position": 29510
1676
- },
1677
- {
1678
- "mutation": "G29734-",
1679
- "count": 1563,
1680
- "proportion": 0.9714108141702921,
1681
- "sequenceName": null,
1682
- "mutationFrom": "G",
1683
- "mutationTo": "-",
1684
- "position": 29734
1685
- },
1686
- {
1687
- "mutation": "A29735-",
1688
- "count": 1563,
1689
- "proportion": 0.9738317757009346,
1690
- "sequenceName": null,
1691
- "mutationFrom": "A",
1692
- "mutationTo": "-",
1693
- "position": 29735
1694
- },
1695
- {
1696
- "mutation": "G29736-",
1697
- "count": 1563,
1698
- "proportion": 0.9738317757009346,
1699
- "sequenceName": null,
1700
- "mutationFrom": "G",
1701
- "mutationTo": "-",
1702
- "position": 29736
1703
- },
1704
- {
1705
- "mutation": "G29737-",
1706
- "count": 1563,
1707
- "proportion": 0.9738317757009346,
1708
- "sequenceName": null,
1709
- "mutationFrom": "G",
1710
- "mutationTo": "-",
1711
- "position": 29737
1712
- },
1713
- {
1714
- "mutation": "C29738-",
1715
- "count": 1563,
1716
- "proportion": 0.9738317757009346,
1717
- "sequenceName": null,
1718
- "mutationFrom": "C",
1719
- "mutationTo": "-",
1720
- "position": 29738
1721
- },
1722
- {
1723
- "mutation": "C29739-",
1724
- "count": 1563,
1725
- "proportion": 0.9744389027431422,
1726
- "sequenceName": null,
1727
- "mutationFrom": "C",
1728
- "mutationTo": "-",
1729
- "position": 29739
1730
- },
1731
- {
1732
- "mutation": "A29740-",
1733
- "count": 1563,
1734
- "proportion": 0.9750467872738615,
1735
- "sequenceName": null,
1736
- "mutationFrom": "A",
1737
- "mutationTo": "-",
1738
- "position": 29740
1739
- },
1740
- {
1741
- "mutation": "C29741-",
1742
- "count": 1563,
1743
- "proportion": 0.9750467872738615,
1744
- "sequenceName": null,
1745
- "mutationFrom": "C",
1746
- "mutationTo": "-",
1747
- "position": 29741
1748
- },
1749
- {
1750
- "mutation": "G29742-",
1751
- "count": 1563,
1752
- "proportion": 0.9750467872738615,
1753
- "sequenceName": null,
1754
- "mutationFrom": "G",
1755
- "mutationTo": "-",
1756
- "position": 29742
1757
- },
1758
- {
1759
- "mutation": "C29743-",
1760
- "count": 1563,
1761
- "proportion": 0.9750467872738615,
1762
- "sequenceName": null,
1763
- "mutationFrom": "C",
1764
- "mutationTo": "-",
1765
- "position": 29743
1766
- },
1767
- {
1768
- "mutation": "G29744-",
1769
- "count": 1563,
1770
- "proportion": 0.9750467872738615,
1771
- "sequenceName": null,
1772
- "mutationFrom": "G",
1773
- "mutationTo": "-",
1774
- "position": 29744
1775
- },
1776
- {
1777
- "mutation": "G29745-",
1778
- "count": 1563,
1779
- "proportion": 0.9750467872738615,
1780
- "sequenceName": null,
1781
- "mutationFrom": "G",
1782
- "mutationTo": "-",
1783
- "position": 29745
1784
- },
1785
- {
1786
- "mutation": "A29746-",
1787
- "count": 1563,
1788
- "proportion": 0.9750467872738615,
1789
- "sequenceName": null,
1790
- "mutationFrom": "A",
1791
- "mutationTo": "-",
1792
- "position": 29746
1793
- },
1794
- {
1795
- "mutation": "G29747-",
1796
- "count": 1563,
1797
- "proportion": 0.9750467872738615,
1798
- "sequenceName": null,
1799
- "mutationFrom": "G",
1800
- "mutationTo": "-",
1801
- "position": 29747
1802
- },
1803
- {
1804
- "mutation": "T29748-",
1805
- "count": 1563,
1806
- "proportion": 0.9750467872738615,
1807
- "sequenceName": null,
1808
- "mutationFrom": "T",
1809
- "mutationTo": "-",
1810
- "position": 29748
1811
- },
1812
- {
1813
- "mutation": "A29749-",
1814
- "count": 1563,
1815
- "proportion": 0.9750467872738615,
1816
- "sequenceName": null,
1817
- "mutationFrom": "A",
1818
- "mutationTo": "-",
1819
- "position": 29749
1820
- },
1821
- {
1822
- "mutation": "C29750-",
1823
- "count": 1563,
1824
- "proportion": 0.9750467872738615,
1825
- "sequenceName": null,
1826
- "mutationFrom": "C",
1827
- "mutationTo": "-",
1828
- "position": 29750
1829
- },
1830
- {
1831
- "mutation": "G29751-",
1832
- "count": 1563,
1833
- "proportion": 0.9750467872738615,
1834
- "sequenceName": null,
1835
- "mutationFrom": "G",
1836
- "mutationTo": "-",
1837
- "position": 29751
1838
- },
1839
- {
1840
- "mutation": "A29752-",
1841
- "count": 1563,
1842
- "proportion": 0.9750467872738615,
1843
- "sequenceName": null,
1844
- "mutationFrom": "A",
1845
- "mutationTo": "-",
1846
- "position": 29752
1847
- },
1848
- {
1849
- "mutation": "T29753-",
1850
- "count": 1563,
1851
- "proportion": 0.9750467872738615,
1852
- "sequenceName": null,
1853
- "mutationFrom": "T",
1854
- "mutationTo": "-",
1855
- "position": 29753
1856
- },
1857
- {
1858
- "mutation": "C29754-",
1859
- "count": 1563,
1860
- "proportion": 0.9750467872738615,
1861
- "sequenceName": null,
1862
- "mutationFrom": "C",
1863
- "mutationTo": "-",
1864
- "position": 29754
1865
- },
1866
- {
1867
- "mutation": "G29755-",
1868
- "count": 1563,
1869
- "proportion": 0.9750467872738615,
1870
- "sequenceName": null,
1871
- "mutationFrom": "G",
1872
- "mutationTo": "-",
1873
- "position": 29755
1874
- },
1875
- {
1876
- "mutation": "A29756-",
1877
- "count": 1563,
1878
- "proportion": 0.9750467872738615,
1879
- "sequenceName": null,
1880
- "mutationFrom": "A",
1881
- "mutationTo": "-",
1882
- "position": 29756
1883
- },
1884
- {
1885
- "mutation": "G29757-",
1886
- "count": 1563,
1887
- "proportion": 0.9744389027431422,
1888
- "sequenceName": null,
1889
- "mutationFrom": "G",
1890
- "mutationTo": "-",
1891
- "position": 29757
1892
- },
1893
- {
1894
- "mutation": "T29758-",
1895
- "count": 1563,
1896
- "proportion": 0.9744389027431422,
1897
- "sequenceName": null,
1898
- "mutationFrom": "T",
1899
- "mutationTo": "-",
1900
- "position": 29758
1901
- },
1902
- {
1903
- "mutation": "G29759-",
1904
- "count": 1562,
1905
- "proportion": 0.9738154613466334,
1906
- "sequenceName": null,
1907
- "mutationFrom": "G",
1908
- "mutationTo": "-",
1909
- "position": 29759
1910
- },
1911
- {
1912
- "mutation": "C29870A",
1913
- "count": 2,
1914
- "proportion": 0.08333333333333333,
1915
- "sequenceName": null,
1916
- "mutationFrom": "C",
1917
- "mutationTo": "A",
1918
- "position": 29870
1919
- }
1920
- ],
1921
- "info": {
1922
- "dataVersion": "1720033519",
1923
- "requestId": "d7009924-8753-48f3-b52f-fe1d9e0b9537",
1924
- "requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-07-17T14:53:28.677304289",
1925
- "reportTo": "Please report to https://github.com/GenSpectrum/LAPIS/issues in case you encounter any unexpected issues. Please include the request ID and the requestInfo in your report."
1926
- }
1927
- }