@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,1747 +0,0 @@
1
- {
2
- "data": [
3
- {
4
- "mutation": "C21T",
5
- "count": 1856,
6
- "proportion": 0.927536231884058,
7
- "sequenceName": null,
8
- "mutationFrom": "C",
9
- "mutationTo": "T",
10
- "position": 21
11
- },
12
- {
13
- "mutation": "C44T",
14
- "count": 2330,
15
- "proportion": 0.5814824057898678,
16
- "sequenceName": null,
17
- "mutationFrom": "C",
18
- "mutationTo": "T",
19
- "position": 44
20
- },
21
- {
22
- "mutation": "C241T",
23
- "count": 23447,
24
- "proportion": 0.9991903179067587,
25
- "sequenceName": null,
26
- "mutationFrom": "C",
27
- "mutationTo": "T",
28
- "position": 241
29
- },
30
- {
31
- "mutation": "T670G",
32
- "count": 24266,
33
- "proportion": 0.9941007783695207,
34
- "sequenceName": null,
35
- "mutationFrom": "T",
36
- "mutationTo": "G",
37
- "position": 670
38
- },
39
- {
40
- "mutation": "C774T",
41
- "count": 6257,
42
- "proportion": 0.25756390729839873,
43
- "sequenceName": null,
44
- "mutationFrom": "C",
45
- "mutationTo": "T",
46
- "position": 774
47
- },
48
- {
49
- "mutation": "C897A",
50
- "count": 24251,
51
- "proportion": 0.9923479826499714,
52
- "sequenceName": null,
53
- "mutationFrom": "C",
54
- "mutationTo": "A",
55
- "position": 897
56
- },
57
- {
58
- "mutation": "C1762A",
59
- "count": 1647,
60
- "proportion": 0.06653470146238992,
61
- "sequenceName": null,
62
- "mutationFrom": "C",
63
- "mutationTo": "A",
64
- "position": 1762
65
- },
66
- {
67
- "mutation": "C2790T",
68
- "count": 22917,
69
- "proportion": 0.9999563661750589,
70
- "sequenceName": null,
71
- "mutationFrom": "C",
72
- "mutationTo": "T",
73
- "position": 2790
74
- },
75
- {
76
- "mutation": "C3037T",
77
- "count": 24867,
78
- "proportion": 0.9999597876789448,
79
- "sequenceName": null,
80
- "mutationFrom": "C",
81
- "mutationTo": "T",
82
- "position": 3037
83
- },
84
- {
85
- "mutation": "G3431T",
86
- "count": 22362,
87
- "proportion": 0.9984818717628148,
88
- "sequenceName": null,
89
- "mutationFrom": "G",
90
- "mutationTo": "T",
91
- "position": 3431
92
- },
93
- {
94
- "mutation": "T3565C",
95
- "count": 24401,
96
- "proportion": 0.9968135953266065,
97
- "sequenceName": null,
98
- "mutationFrom": "T",
99
- "mutationTo": "C",
100
- "position": 3565
101
- },
102
- {
103
- "mutation": "G4184A",
104
- "count": 24866,
105
- "proportion": 0.999959786061849,
106
- "sequenceName": null,
107
- "mutationFrom": "G",
108
- "mutationTo": "A",
109
- "position": 4184
110
- },
111
- {
112
- "mutation": "C4321T",
113
- "count": 24518,
114
- "proportion": 0.9912270062664241,
115
- "sequenceName": null,
116
- "mutationFrom": "C",
117
- "mutationTo": "T",
118
- "position": 4321
119
- },
120
- {
121
- "mutation": "A6183G",
122
- "count": 24488,
123
- "proportion": 0.9932668126875963,
124
- "sequenceName": null,
125
- "mutationFrom": "A",
126
- "mutationTo": "G",
127
- "position": 6183
128
- },
129
- {
130
- "mutation": "A7842G",
131
- "count": 24819,
132
- "proportion": 0.9985515992757996,
133
- "sequenceName": null,
134
- "mutationFrom": "A",
135
- "mutationTo": "G",
136
- "position": 7842
137
- },
138
- {
139
- "mutation": "C8293T",
140
- "count": 24785,
141
- "proportion": 0.9991131535453702,
142
- "sequenceName": null,
143
- "mutationFrom": "C",
144
- "mutationTo": "T",
145
- "position": 8293
146
- },
147
- {
148
- "mutation": "G8393A",
149
- "count": 24848,
150
- "proportion": 0.9991154000804182,
151
- "sequenceName": null,
152
- "mutationFrom": "G",
153
- "mutationTo": "A",
154
- "position": 8393
155
- },
156
- {
157
- "mutation": "C9344T",
158
- "count": 24858,
159
- "proportion": 0.9999597731203991,
160
- "sequenceName": null,
161
- "mutationFrom": "C",
162
- "mutationTo": "T",
163
- "position": 9344
164
- },
165
- {
166
- "mutation": "A9424G",
167
- "count": 24515,
168
- "proportion": 0.9988998451633934,
169
- "sequenceName": null,
170
- "mutationFrom": "A",
171
- "mutationTo": "G",
172
- "position": 9424
173
- },
174
- {
175
- "mutation": "C9534T",
176
- "count": 24635,
177
- "proportion": 0.9996347995455284,
178
- "sequenceName": null,
179
- "mutationFrom": "C",
180
- "mutationTo": "T",
181
- "position": 9534
182
- },
183
- {
184
- "mutation": "C10029T",
185
- "count": 24344,
186
- "proportion": 0.9999589238036558,
187
- "sequenceName": null,
188
- "mutationFrom": "C",
189
- "mutationTo": "T",
190
- "position": 10029
191
- },
192
- {
193
- "mutation": "C10198T",
194
- "count": 24323,
195
- "proportion": 0.999547957590203,
196
- "sequenceName": null,
197
- "mutationFrom": "C",
198
- "mutationTo": "T",
199
- "position": 10198
200
- },
201
- {
202
- "mutation": "G10447A",
203
- "count": 24891,
204
- "proportion": 1.0,
205
- "sequenceName": null,
206
- "mutationFrom": "G",
207
- "mutationTo": "A",
208
- "position": 10447
209
- },
210
- {
211
- "mutation": "C10449A",
212
- "count": 24891,
213
- "proportion": 1.0,
214
- "sequenceName": null,
215
- "mutationFrom": "C",
216
- "mutationTo": "A",
217
- "position": 10449
218
- },
219
- {
220
- "mutation": "G11042T",
221
- "count": 24876,
222
- "proportion": 0.9989960242560539,
223
- "sequenceName": null,
224
- "mutationFrom": "G",
225
- "mutationTo": "T",
226
- "position": 11042
227
- },
228
- {
229
- "mutation": "T11288-",
230
- "count": 23148,
231
- "proportion": 0.9994387116273045,
232
- "sequenceName": null,
233
- "mutationFrom": "T",
234
- "mutationTo": "-",
235
- "position": 11288
236
- },
237
- {
238
- "mutation": "C11289-",
239
- "count": 23040,
240
- "proportion": 0.9994794377928162,
241
- "sequenceName": null,
242
- "mutationFrom": "C",
243
- "mutationTo": "-",
244
- "position": 11289
245
- },
246
- {
247
- "mutation": "T11290-",
248
- "count": 22880,
249
- "proportion": 0.9990830094755687,
250
- "sequenceName": null,
251
- "mutationFrom": "T",
252
- "mutationTo": "-",
253
- "position": 11290
254
- },
255
- {
256
- "mutation": "G11291-",
257
- "count": 22852,
258
- "proportion": 0.9989508655359328,
259
- "sequenceName": null,
260
- "mutationFrom": "G",
261
- "mutationTo": "-",
262
- "position": 11291
263
- },
264
- {
265
- "mutation": "G11292-",
266
- "count": 22832,
267
- "proportion": 0.9987751531058617,
268
- "sequenceName": null,
269
- "mutationFrom": "G",
270
- "mutationTo": "-",
271
- "position": 11292
272
- },
273
- {
274
- "mutation": "T11293-",
275
- "count": 22823,
276
- "proportion": 0.9987746706927487,
277
- "sequenceName": null,
278
- "mutationFrom": "T",
279
- "mutationTo": "-",
280
- "position": 11293
281
- },
282
- {
283
- "mutation": "T11294-",
284
- "count": 22577,
285
- "proportion": 0.9985404688191066,
286
- "sequenceName": null,
287
- "mutationFrom": "T",
288
- "mutationTo": "-",
289
- "position": 11294
290
- },
291
- {
292
- "mutation": "T11295-",
293
- "count": 22537,
294
- "proportion": 0.9983167220376523,
295
- "sequenceName": null,
296
- "mutationFrom": "T",
297
- "mutationTo": "-",
298
- "position": 11295
299
- },
300
- {
301
- "mutation": "T11296-",
302
- "count": 22504,
303
- "proportion": 0.9984914366847103,
304
- "sequenceName": null,
305
- "mutationFrom": "T",
306
- "mutationTo": "-",
307
- "position": 11296
308
- },
309
- {
310
- "mutation": "G11727A",
311
- "count": 23148,
312
- "proportion": 0.9989211582445087,
313
- "sequenceName": null,
314
- "mutationFrom": "G",
315
- "mutationTo": "A",
316
- "position": 11727
317
- },
318
- {
319
- "mutation": "C11747T",
320
- "count": 1501,
321
- "proportion": 0.06460081773187003,
322
- "sequenceName": null,
323
- "mutationFrom": "C",
324
- "mutationTo": "T",
325
- "position": 11747
326
- },
327
- {
328
- "mutation": "C12789T",
329
- "count": 24871,
330
- "proportion": 0.9985145334832183,
331
- "sequenceName": null,
332
- "mutationFrom": "C",
333
- "mutationTo": "T",
334
- "position": 12789
335
- },
336
- {
337
- "mutation": "C12815T",
338
- "count": 24866,
339
- "proportion": 0.9995176461130316,
340
- "sequenceName": null,
341
- "mutationFrom": "C",
342
- "mutationTo": "T",
343
- "position": 12815
344
- },
345
- {
346
- "mutation": "C12880T",
347
- "count": 24858,
348
- "proportion": 0.9998391118976752,
349
- "sequenceName": null,
350
- "mutationFrom": "C",
351
- "mutationTo": "T",
352
- "position": 12880
353
- },
354
- {
355
- "mutation": "T13339C",
356
- "count": 24363,
357
- "proportion": 0.9966863033873343,
358
- "sequenceName": null,
359
- "mutationFrom": "T",
360
- "mutationTo": "C",
361
- "position": 13339
362
- },
363
- {
364
- "mutation": "C14408T",
365
- "count": 24923,
366
- "proportion": 0.9998395314317808,
367
- "sequenceName": null,
368
- "mutationFrom": "C",
369
- "mutationTo": "T",
370
- "position": 14408
371
- },
372
- {
373
- "mutation": "C15714T",
374
- "count": 24917,
375
- "proportion": 0.9999197399574622,
376
- "sequenceName": null,
377
- "mutationFrom": "C",
378
- "mutationTo": "T",
379
- "position": 15714
380
- },
381
- {
382
- "mutation": "T15756A",
383
- "count": 24715,
384
- "proportion": 0.9997572913717082,
385
- "sequenceName": null,
386
- "mutationFrom": "T",
387
- "mutationTo": "A",
388
- "position": 15756
389
- },
390
- {
391
- "mutation": "C17410T",
392
- "count": 24755,
393
- "proportion": 0.9995558426875555,
394
- "sequenceName": null,
395
- "mutationFrom": "C",
396
- "mutationTo": "T",
397
- "position": 17410
398
- },
399
- {
400
- "mutation": "G17562T",
401
- "count": 1611,
402
- "proportion": 0.06467541852342527,
403
- "sequenceName": null,
404
- "mutationFrom": "G",
405
- "mutationTo": "T",
406
- "position": 17562
407
- },
408
- {
409
- "mutation": "A18163G",
410
- "count": 24526,
411
- "proportion": 0.9998369343660823,
412
- "sequenceName": null,
413
- "mutationFrom": "A",
414
- "mutationTo": "G",
415
- "position": 18163
416
- },
417
- {
418
- "mutation": "T18453C",
419
- "count": 5129,
420
- "proportion": 0.20766863713661024,
421
- "sequenceName": null,
422
- "mutationFrom": "T",
423
- "mutationTo": "C",
424
- "position": 18453
425
- },
426
- {
427
- "mutation": "A18492G",
428
- "count": 24873,
429
- "proportion": 0.999397299903568,
430
- "sequenceName": null,
431
- "mutationFrom": "A",
432
- "mutationTo": "G",
433
- "position": 18492
434
- },
435
- {
436
- "mutation": "C18894T",
437
- "count": 23865,
438
- "proportion": 0.9995811518324608,
439
- "sequenceName": null,
440
- "mutationFrom": "C",
441
- "mutationTo": "T",
442
- "position": 18894
443
- },
444
- {
445
- "mutation": "C19955T",
446
- "count": 23383,
447
- "proportion": 0.9999572357167293,
448
- "sequenceName": null,
449
- "mutationFrom": "C",
450
- "mutationTo": "T",
451
- "position": 19955
452
- },
453
- {
454
- "mutation": "A20055G",
455
- "count": 23891,
456
- "proportion": 0.9989964457453481,
457
- "sequenceName": null,
458
- "mutationFrom": "A",
459
- "mutationTo": "G",
460
- "position": 20055
461
- },
462
- {
463
- "mutation": "C21618T",
464
- "count": 21311,
465
- "proportion": 0.9989219086903535,
466
- "sequenceName": null,
467
- "mutationFrom": "C",
468
- "mutationTo": "T",
469
- "position": 21618
470
- },
471
- {
472
- "mutation": "C21622T",
473
- "count": 21026,
474
- "proportion": 0.986719226617861,
475
- "sequenceName": null,
476
- "mutationFrom": "C",
477
- "mutationTo": "T",
478
- "position": 21622
479
- },
480
- {
481
- "mutation": "G21624C",
482
- "count": 21006,
483
- "proportion": 0.9865677249671237,
484
- "sequenceName": null,
485
- "mutationFrom": "G",
486
- "mutationTo": "C",
487
- "position": 21624
488
- },
489
- {
490
- "mutation": "T21633-",
491
- "count": 20144,
492
- "proportion": 0.9898771498771499,
493
- "sequenceName": null,
494
- "mutationFrom": "T",
495
- "mutationTo": "-",
496
- "position": 21633
497
- },
498
- {
499
- "mutation": "A21634-",
500
- "count": 20145,
501
- "proportion": 0.9973759778195861,
502
- "sequenceName": null,
503
- "mutationFrom": "A",
504
- "mutationTo": "-",
505
- "position": 21634
506
- },
507
- {
508
- "mutation": "C21635-",
509
- "count": 20169,
510
- "proportion": 0.9987125526120327,
511
- "sequenceName": null,
512
- "mutationFrom": "C",
513
- "mutationTo": "-",
514
- "position": 21635
515
- },
516
- {
517
- "mutation": "C21636-",
518
- "count": 20169,
519
- "proportion": 0.9986631016042781,
520
- "sequenceName": null,
521
- "mutationFrom": "C",
522
- "mutationTo": "-",
523
- "position": 21636
524
- },
525
- {
526
- "mutation": "C21637-",
527
- "count": 20169,
528
- "proportion": 0.9986136554933901,
529
- "sequenceName": null,
530
- "mutationFrom": "C",
531
- "mutationTo": "-",
532
- "position": 21637
533
- },
534
- {
535
- "mutation": "C21638-",
536
- "count": 20168,
537
- "proportion": 0.9984652705579484,
538
- "sequenceName": null,
539
- "mutationFrom": "C",
540
- "mutationTo": "-",
541
- "position": 21638
542
- },
543
- {
544
- "mutation": "C21639-",
545
- "count": 20168,
546
- "proportion": 0.998267584022175,
547
- "sequenceName": null,
548
- "mutationFrom": "C",
549
- "mutationTo": "-",
550
- "position": 21639
551
- },
552
- {
553
- "mutation": "T21640-",
554
- "count": 20166,
555
- "proportion": 0.9940845903578823,
556
- "sequenceName": null,
557
- "mutationFrom": "T",
558
- "mutationTo": "-",
559
- "position": 21640
560
- },
561
- {
562
- "mutation": "G21641-",
563
- "count": 19949,
564
- "proportion": 0.9233083402758493,
565
- "sequenceName": null,
566
- "mutationFrom": "G",
567
- "mutationTo": "-",
568
- "position": 21641
569
- },
570
- {
571
- "mutation": "G21641T",
572
- "count": 1622,
573
- "proportion": 0.07507173933166712,
574
- "sequenceName": null,
575
- "mutationFrom": "G",
576
- "mutationTo": "T",
577
- "position": 21641
578
- },
579
- {
580
- "mutation": "C21711T",
581
- "count": 23397,
582
- "proportion": 0.998122946973252,
583
- "sequenceName": null,
584
- "mutationFrom": "C",
585
- "mutationTo": "T",
586
- "position": 21711
587
- },
588
- {
589
- "mutation": "T21765-",
590
- "count": 20633,
591
- "proportion": 0.9930692592770852,
592
- "sequenceName": null,
593
- "mutationFrom": "T",
594
- "mutationTo": "-",
595
- "position": 21765
596
- },
597
- {
598
- "mutation": "A21766-",
599
- "count": 20633,
600
- "proportion": 0.9967632850241546,
601
- "sequenceName": null,
602
- "mutationFrom": "A",
603
- "mutationTo": "-",
604
- "position": 21766
605
- },
606
- {
607
- "mutation": "C21767-",
608
- "count": 20800,
609
- "proportion": 0.9976019184652278,
610
- "sequenceName": null,
611
- "mutationFrom": "C",
612
- "mutationTo": "-",
613
- "position": 21767
614
- },
615
- {
616
- "mutation": "A21768-",
617
- "count": 20545,
618
- "proportion": 0.9854189649383663,
619
- "sequenceName": null,
620
- "mutationFrom": "A",
621
- "mutationTo": "-",
622
- "position": 21768
623
- },
624
- {
625
- "mutation": "T21769-",
626
- "count": 20545,
627
- "proportion": 0.9955419876920095,
628
- "sequenceName": null,
629
- "mutationFrom": "T",
630
- "mutationTo": "-",
631
- "position": 21769
632
- },
633
- {
634
- "mutation": "G21770-",
635
- "count": 20358,
636
- "proportion": 0.9973544973544973,
637
- "sequenceName": null,
638
- "mutationFrom": "G",
639
- "mutationTo": "-",
640
- "position": 21770
641
- },
642
- {
643
- "mutation": "G21941T",
644
- "count": 24724,
645
- "proportion": 0.9997573797007683,
646
- "sequenceName": null,
647
- "mutationFrom": "G",
648
- "mutationTo": "T",
649
- "position": 21941
650
- },
651
- {
652
- "mutation": "G21987A",
653
- "count": 24738,
654
- "proportion": 0.9970175721425117,
655
- "sequenceName": null,
656
- "mutationFrom": "G",
657
- "mutationTo": "A",
658
- "position": 21987
659
- },
660
- {
661
- "mutation": "T21992-",
662
- "count": 23094,
663
- "proportion": 0.9955597706599991,
664
- "sequenceName": null,
665
- "mutationFrom": "T",
666
- "mutationTo": "-",
667
- "position": 21992
668
- },
669
- {
670
- "mutation": "A21993-",
671
- "count": 23106,
672
- "proportion": 0.9960341408742133,
673
- "sequenceName": null,
674
- "mutationFrom": "A",
675
- "mutationTo": "-",
676
- "position": 21993
677
- },
678
- {
679
- "mutation": "T21994-",
680
- "count": 23103,
681
- "proportion": 0.9293615994207329,
682
- "sequenceName": null,
683
- "mutationFrom": "T",
684
- "mutationTo": "-",
685
- "position": 21994
686
- },
687
- {
688
- "mutation": "T22032C",
689
- "count": 24761,
690
- "proportion": 0.9987898834254366,
691
- "sequenceName": null,
692
- "mutationFrom": "T",
693
- "mutationTo": "C",
694
- "position": 22032
695
- },
696
- {
697
- "mutation": "C22033A",
698
- "count": 24743,
699
- "proportion": 0.9995152494445566,
700
- "sequenceName": null,
701
- "mutationFrom": "C",
702
- "mutationTo": "A",
703
- "position": 22033
704
- },
705
- {
706
- "mutation": "A22034G",
707
- "count": 24744,
708
- "proportion": 0.9995960248848671,
709
- "sequenceName": null,
710
- "mutationFrom": "A",
711
- "mutationTo": "G",
712
- "position": 22034
713
- },
714
- {
715
- "mutation": "A22194-",
716
- "count": 24002,
717
- "proportion": 0.9972163363662803,
718
- "sequenceName": null,
719
- "mutationFrom": "A",
720
- "mutationTo": "-",
721
- "position": 22194
722
- },
723
- {
724
- "mutation": "T22195-",
725
- "count": 24002,
726
- "proportion": 0.9946953999171156,
727
- "sequenceName": null,
728
- "mutationFrom": "T",
729
- "mutationTo": "-",
730
- "position": 22195
731
- },
732
- {
733
- "mutation": "T22196-",
734
- "count": 24072,
735
- "proportion": 0.9974723407781876,
736
- "sequenceName": null,
737
- "mutationFrom": "T",
738
- "mutationTo": "-",
739
- "position": 22196
740
- },
741
- {
742
- "mutation": "T22200G",
743
- "count": 24582,
744
- "proportion": 0.999065230644178,
745
- "sequenceName": null,
746
- "mutationFrom": "T",
747
- "mutationTo": "G",
748
- "position": 22200
749
- },
750
- {
751
- "mutation": "C22208T",
752
- "count": 24616,
753
- "proportion": 0.9995939251197921,
754
- "sequenceName": null,
755
- "mutationFrom": "C",
756
- "mutationTo": "T",
757
- "position": 22208
758
- },
759
- {
760
- "mutation": "C22295A",
761
- "count": 24300,
762
- "proportion": 0.9991776315789473,
763
- "sequenceName": null,
764
- "mutationFrom": "C",
765
- "mutationTo": "A",
766
- "position": 22295
767
- },
768
- {
769
- "mutation": "C22353A",
770
- "count": 24246,
771
- "proportion": 0.9914131501472031,
772
- "sequenceName": null,
773
- "mutationFrom": "C",
774
- "mutationTo": "A",
775
- "position": 22353
776
- },
777
- {
778
- "mutation": "A22556G",
779
- "count": 24144,
780
- "proportion": 0.9905637154344794,
781
- "sequenceName": null,
782
- "mutationFrom": "A",
783
- "mutationTo": "G",
784
- "position": 22556
785
- },
786
- {
787
- "mutation": "G22577C",
788
- "count": 24279,
789
- "proportion": 0.9979448394919643,
790
- "sequenceName": null,
791
- "mutationFrom": "G",
792
- "mutationTo": "C",
793
- "position": 22577
794
- },
795
- {
796
- "mutation": "G22578A",
797
- "count": 24322,
798
- "proportion": 0.9994657900143826,
799
- "sequenceName": null,
800
- "mutationFrom": "G",
801
- "mutationTo": "A",
802
- "position": 22578
803
- },
804
- {
805
- "mutation": "A22629C",
806
- "count": 24016,
807
- "proportion": 0.9989185591880875,
808
- "sequenceName": null,
809
- "mutationFrom": "A",
810
- "mutationTo": "C",
811
- "position": 22629
812
- },
813
- {
814
- "mutation": "C22674T",
815
- "count": 24291,
816
- "proportion": 0.9996707683443763,
817
- "sequenceName": null,
818
- "mutationFrom": "C",
819
- "mutationTo": "T",
820
- "position": 22674
821
- },
822
- {
823
- "mutation": "T22679C",
824
- "count": 24561,
825
- "proportion": 0.9996743864219138,
826
- "sequenceName": null,
827
- "mutationFrom": "T",
828
- "mutationTo": "C",
829
- "position": 22679
830
- },
831
- {
832
- "mutation": "C22686T",
833
- "count": 24527,
834
- "proportion": 0.9991445331595242,
835
- "sequenceName": null,
836
- "mutationFrom": "C",
837
- "mutationTo": "T",
838
- "position": 22686
839
- },
840
- {
841
- "mutation": "A22688G",
842
- "count": 24485,
843
- "proportion": 0.9985725938009788,
844
- "sequenceName": null,
845
- "mutationFrom": "A",
846
- "mutationTo": "G",
847
- "position": 22688
848
- },
849
- {
850
- "mutation": "G22770A",
851
- "count": 20255,
852
- "proportion": 0.9937690118732214,
853
- "sequenceName": null,
854
- "mutationFrom": "G",
855
- "mutationTo": "A",
856
- "position": 22770
857
- },
858
- {
859
- "mutation": "G22775A",
860
- "count": 24622,
861
- "proportion": 0.9991883775667559,
862
- "sequenceName": null,
863
- "mutationFrom": "G",
864
- "mutationTo": "A",
865
- "position": 22775
866
- },
867
- {
868
- "mutation": "A22786C",
869
- "count": 24539,
870
- "proportion": 0.9972770868893766,
871
- "sequenceName": null,
872
- "mutationFrom": "A",
873
- "mutationTo": "C",
874
- "position": 22786
875
- },
876
- {
877
- "mutation": "G22813T",
878
- "count": 23911,
879
- "proportion": 0.9919518772038997,
880
- "sequenceName": null,
881
- "mutationFrom": "G",
882
- "mutationTo": "T",
883
- "position": 22813
884
- },
885
- {
886
- "mutation": "T22882G",
887
- "count": 24197,
888
- "proportion": 0.9997107916046934,
889
- "sequenceName": null,
890
- "mutationFrom": "T",
891
- "mutationTo": "G",
892
- "position": 22882
893
- },
894
- {
895
- "mutation": "G22895C",
896
- "count": 24174,
897
- "proportion": 0.9988018014295749,
898
- "sequenceName": null,
899
- "mutationFrom": "G",
900
- "mutationTo": "C",
901
- "position": 22895
902
- },
903
- {
904
- "mutation": "T22896A",
905
- "count": 24151,
906
- "proportion": 0.998718054751468,
907
- "sequenceName": null,
908
- "mutationFrom": "T",
909
- "mutationTo": "A",
910
- "position": 22896
911
- },
912
- {
913
- "mutation": "G22898A",
914
- "count": 24185,
915
- "proportion": 0.9998759715561435,
916
- "sequenceName": null,
917
- "mutationFrom": "G",
918
- "mutationTo": "A",
919
- "position": 22898
920
- },
921
- {
922
- "mutation": "A22910G",
923
- "count": 24199,
924
- "proportion": 0.9997108155002892,
925
- "sequenceName": null,
926
- "mutationFrom": "A",
927
- "mutationTo": "G",
928
- "position": 22910
929
- },
930
- {
931
- "mutation": "C22916T",
932
- "count": 24157,
933
- "proportion": 0.9994621431526686,
934
- "sequenceName": null,
935
- "mutationFrom": "C",
936
- "mutationTo": "T",
937
- "position": 22916
938
- },
939
- {
940
- "mutation": "T22917G",
941
- "count": 24179,
942
- "proportion": 0.9996279146684306,
943
- "sequenceName": null,
944
- "mutationFrom": "T",
945
- "mutationTo": "G",
946
- "position": 22917
947
- },
948
- {
949
- "mutation": "T22926C",
950
- "count": 24152,
951
- "proportion": 0.9983878301847795,
952
- "sequenceName": null,
953
- "mutationFrom": "T",
954
- "mutationTo": "C",
955
- "position": 22926
956
- },
957
- {
958
- "mutation": "T22942A",
959
- "count": 24219,
960
- "proportion": 0.9991336633663367,
961
- "sequenceName": null,
962
- "mutationFrom": "T",
963
- "mutationTo": "A",
964
- "position": 22942
965
- },
966
- {
967
- "mutation": "G22992A",
968
- "count": 24470,
969
- "proportion": 0.9992241414512638,
970
- "sequenceName": null,
971
- "mutationFrom": "G",
972
- "mutationTo": "A",
973
- "position": 22992
974
- },
975
- {
976
- "mutation": "C22995A",
977
- "count": 24440,
978
- "proportion": 0.9984883768435674,
979
- "sequenceName": null,
980
- "mutationFrom": "C",
981
- "mutationTo": "A",
982
- "position": 22995
983
- },
984
- {
985
- "mutation": "T23005A",
986
- "count": 24340,
987
- "proportion": 0.9972957469474719,
988
- "sequenceName": null,
989
- "mutationFrom": "T",
990
- "mutationTo": "A",
991
- "position": 23005
992
- },
993
- {
994
- "mutation": "G23009-",
995
- "count": 21471,
996
- "proportion": 0.991503117063034,
997
- "sequenceName": null,
998
- "mutationFrom": "G",
999
- "mutationTo": "-",
1000
- "position": 23009
1001
- },
1002
- {
1003
- "mutation": "T23010-",
1004
- "count": 21464,
1005
- "proportion": 0.9917752518251548,
1006
- "sequenceName": null,
1007
- "mutationFrom": "T",
1008
- "mutationTo": "-",
1009
- "position": 23010
1010
- },
1011
- {
1012
- "mutation": "T23011-",
1013
- "count": 21462,
1014
- "proportion": 0.8804200680969767,
1015
- "sequenceName": null,
1016
- "mutationFrom": "T",
1017
- "mutationTo": "-",
1018
- "position": 23011
1019
- },
1020
- {
1021
- "mutation": "G23012A",
1022
- "count": 24115,
1023
- "proportion": 0.9890087355944716,
1024
- "sequenceName": null,
1025
- "mutationFrom": "G",
1026
- "mutationTo": "A",
1027
- "position": 23012
1028
- },
1029
- {
1030
- "mutation": "T23018C",
1031
- "count": 24386,
1032
- "proportion": 0.9986485933084893,
1033
- "sequenceName": null,
1034
- "mutationFrom": "T",
1035
- "mutationTo": "C",
1036
- "position": 23018
1037
- },
1038
- {
1039
- "mutation": "T23019C",
1040
- "count": 24384,
1041
- "proportion": 0.9986075845687608,
1042
- "sequenceName": null,
1043
- "mutationFrom": "T",
1044
- "mutationTo": "C",
1045
- "position": 23019
1046
- },
1047
- {
1048
- "mutation": "A23055G",
1049
- "count": 24433,
1050
- "proportion": 0.9994273325970466,
1051
- "sequenceName": null,
1052
- "mutationFrom": "A",
1053
- "mutationTo": "G",
1054
- "position": 23055
1055
- },
1056
- {
1057
- "mutation": "A23063T",
1058
- "count": 24433,
1059
- "proportion": 0.9993047034764826,
1060
- "sequenceName": null,
1061
- "mutationFrom": "A",
1062
- "mutationTo": "T",
1063
- "position": 23063
1064
- },
1065
- {
1066
- "mutation": "T23075C",
1067
- "count": 24360,
1068
- "proportion": 0.9968898346701588,
1069
- "sequenceName": null,
1070
- "mutationFrom": "T",
1071
- "mutationTo": "C",
1072
- "position": 23075
1073
- },
1074
- {
1075
- "mutation": "G23222A",
1076
- "count": 24894,
1077
- "proportion": 0.9998795035546452,
1078
- "sequenceName": null,
1079
- "mutationFrom": "G",
1080
- "mutationTo": "A",
1081
- "position": 23222
1082
- },
1083
- {
1084
- "mutation": "C23271T",
1085
- "count": 24909,
1086
- "proportion": 0.9997591812161348,
1087
- "sequenceName": null,
1088
- "mutationFrom": "C",
1089
- "mutationTo": "T",
1090
- "position": 23271
1091
- },
1092
- {
1093
- "mutation": "C23277T",
1094
- "count": 1648,
1095
- "proportion": 0.06618208104092205,
1096
- "sequenceName": null,
1097
- "mutationFrom": "C",
1098
- "mutationTo": "T",
1099
- "position": 23277
1100
- },
1101
- {
1102
- "mutation": "A23403G",
1103
- "count": 24919,
1104
- "proportion": 0.9999598715890851,
1105
- "sequenceName": null,
1106
- "mutationFrom": "A",
1107
- "mutationTo": "G",
1108
- "position": 23403
1109
- },
1110
- {
1111
- "mutation": "C23423T",
1112
- "count": 24908,
1113
- "proportion": 0.9998795712737345,
1114
- "sequenceName": null,
1115
- "mutationFrom": "C",
1116
- "mutationTo": "T",
1117
- "position": 23423
1118
- },
1119
- {
1120
- "mutation": "C23525T",
1121
- "count": 23371,
1122
- "proportion": 0.9997861054072553,
1123
- "sequenceName": null,
1124
- "mutationFrom": "C",
1125
- "mutationTo": "T",
1126
- "position": 23525
1127
- },
1128
- {
1129
- "mutation": "T23599G",
1130
- "count": 24507,
1131
- "proportion": 0.994642639717521,
1132
- "sequenceName": null,
1133
- "mutationFrom": "T",
1134
- "mutationTo": "G",
1135
- "position": 23599
1136
- },
1137
- {
1138
- "mutation": "C23604G",
1139
- "count": 24512,
1140
- "proportion": 0.9945630122535097,
1141
- "sequenceName": null,
1142
- "mutationFrom": "C",
1143
- "mutationTo": "G",
1144
- "position": 23604
1145
- },
1146
- {
1147
- "mutation": "C23854A",
1148
- "count": 24365,
1149
- "proportion": 0.9995077326988555,
1150
- "sequenceName": null,
1151
- "mutationFrom": "C",
1152
- "mutationTo": "A",
1153
- "position": 23854
1154
- },
1155
- {
1156
- "mutation": "G23948T",
1157
- "count": 24189,
1158
- "proportion": 0.9995867597834621,
1159
- "sequenceName": null,
1160
- "mutationFrom": "G",
1161
- "mutationTo": "T",
1162
- "position": 23948
1163
- },
1164
- {
1165
- "mutation": "C24378T",
1166
- "count": 23640,
1167
- "proportion": 0.9924016623987238,
1168
- "sequenceName": null,
1169
- "mutationFrom": "C",
1170
- "mutationTo": "T",
1171
- "position": 24378
1172
- },
1173
- {
1174
- "mutation": "A24424T",
1175
- "count": 23829,
1176
- "proportion": 0.9985333556821991,
1177
- "sequenceName": null,
1178
- "mutationFrom": "A",
1179
- "mutationTo": "T",
1180
- "position": 24424
1181
- },
1182
- {
1183
- "mutation": "T24469A",
1184
- "count": 24431,
1185
- "proportion": 0.9998772202668413,
1186
- "sequenceName": null,
1187
- "mutationFrom": "T",
1188
- "mutationTo": "A",
1189
- "position": 24469
1190
- },
1191
- {
1192
- "mutation": "C24990T",
1193
- "count": 24402,
1194
- "proportion": 0.9987721021611002,
1195
- "sequenceName": null,
1196
- "mutationFrom": "C",
1197
- "mutationTo": "T",
1198
- "position": 24990
1199
- },
1200
- {
1201
- "mutation": "C25000T",
1202
- "count": 24449,
1203
- "proportion": 0.9990601503759399,
1204
- "sequenceName": null,
1205
- "mutationFrom": "C",
1206
- "mutationTo": "T",
1207
- "position": 25000
1208
- },
1209
- {
1210
- "mutation": "C25207T",
1211
- "count": 23700,
1212
- "proportion": 0.9975167305021255,
1213
- "sequenceName": null,
1214
- "mutationFrom": "C",
1215
- "mutationTo": "T",
1216
- "position": 25207
1217
- },
1218
- {
1219
- "mutation": "C25584T",
1220
- "count": 24894,
1221
- "proportion": 0.9996787406634006,
1222
- "sequenceName": null,
1223
- "mutationFrom": "C",
1224
- "mutationTo": "T",
1225
- "position": 25584
1226
- },
1227
- {
1228
- "mutation": "C26060T",
1229
- "count": 24539,
1230
- "proportion": 0.9982101452223081,
1231
- "sequenceName": null,
1232
- "mutationFrom": "C",
1233
- "mutationTo": "T",
1234
- "position": 26060
1235
- },
1236
- {
1237
- "mutation": "C26270T",
1238
- "count": 24590,
1239
- "proportion": 0.9997560578955927,
1240
- "sequenceName": null,
1241
- "mutationFrom": "C",
1242
- "mutationTo": "T",
1243
- "position": 26270
1244
- },
1245
- {
1246
- "mutation": "G26529C",
1247
- "count": 24825,
1248
- "proportion": 0.9994766084225783,
1249
- "sequenceName": null,
1250
- "mutationFrom": "G",
1251
- "mutationTo": "C",
1252
- "position": 26529
1253
- },
1254
- {
1255
- "mutation": "C26577G",
1256
- "count": 24692,
1257
- "proportion": 0.9979388109768419,
1258
- "sequenceName": null,
1259
- "mutationFrom": "C",
1260
- "mutationTo": "G",
1261
- "position": 26577
1262
- },
1263
- {
1264
- "mutation": "A26610G",
1265
- "count": 21943,
1266
- "proportion": 0.99641267823086,
1267
- "sequenceName": null,
1268
- "mutationFrom": "A",
1269
- "mutationTo": "G",
1270
- "position": 26610
1271
- },
1272
- {
1273
- "mutation": "C26681T",
1274
- "count": 24618,
1275
- "proportion": 0.9992693619094009,
1276
- "sequenceName": null,
1277
- "mutationFrom": "C",
1278
- "mutationTo": "T",
1279
- "position": 26681
1280
- },
1281
- {
1282
- "mutation": "G26709A",
1283
- "count": 24701,
1284
- "proportion": 0.9993122420907841,
1285
- "sequenceName": null,
1286
- "mutationFrom": "G",
1287
- "mutationTo": "A",
1288
- "position": 26709
1289
- },
1290
- {
1291
- "mutation": "C26833T",
1292
- "count": 24820,
1293
- "proportion": 0.9994765030403092,
1294
- "sequenceName": null,
1295
- "mutationFrom": "C",
1296
- "mutationTo": "T",
1297
- "position": 26833
1298
- },
1299
- {
1300
- "mutation": "C26858T",
1301
- "count": 24801,
1302
- "proportion": 0.9994358251057828,
1303
- "sequenceName": null,
1304
- "mutationFrom": "C",
1305
- "mutationTo": "T",
1306
- "position": 26858
1307
- },
1308
- {
1309
- "mutation": "A27259C",
1310
- "count": 24903,
1311
- "proportion": 0.9997591232084788,
1312
- "sequenceName": null,
1313
- "mutationFrom": "A",
1314
- "mutationTo": "C",
1315
- "position": 27259
1316
- },
1317
- {
1318
- "mutation": "G27382C",
1319
- "count": 24824,
1320
- "proportion": 0.9991547595089555,
1321
- "sequenceName": null,
1322
- "mutationFrom": "G",
1323
- "mutationTo": "C",
1324
- "position": 27382
1325
- },
1326
- {
1327
- "mutation": "A27383T",
1328
- "count": 24819,
1329
- "proportion": 0.9991948146060631,
1330
- "sequenceName": null,
1331
- "mutationFrom": "A",
1332
- "mutationTo": "T",
1333
- "position": 27383
1334
- },
1335
- {
1336
- "mutation": "T27384C",
1337
- "count": 24796,
1338
- "proportion": 0.9981482972385476,
1339
- "sequenceName": null,
1340
- "mutationFrom": "T",
1341
- "mutationTo": "C",
1342
- "position": 27384
1343
- },
1344
- {
1345
- "mutation": "C27807T",
1346
- "count": 24851,
1347
- "proportion": 0.9998390665861999,
1348
- "sequenceName": null,
1349
- "mutationFrom": "C",
1350
- "mutationTo": "T",
1351
- "position": 27807
1352
- },
1353
- {
1354
- "mutation": "T27810C",
1355
- "count": 24834,
1356
- "proportion": 0.9990345160511707,
1357
- "sequenceName": null,
1358
- "mutationFrom": "T",
1359
- "mutationTo": "C",
1360
- "position": 27810
1361
- },
1362
- {
1363
- "mutation": "A28271T",
1364
- "count": 24668,
1365
- "proportion": 0.9997973493292263,
1366
- "sequenceName": null,
1367
- "mutationFrom": "A",
1368
- "mutationTo": "T",
1369
- "position": 28271
1370
- },
1371
- {
1372
- "mutation": "C28311T",
1373
- "count": 24651,
1374
- "proportion": 0.9995539696699376,
1375
- "sequenceName": null,
1376
- "mutationFrom": "C",
1377
- "mutationTo": "T",
1378
- "position": 28311
1379
- },
1380
- {
1381
- "mutation": "G28362-",
1382
- "count": 22219,
1383
- "proportion": 0.9960103998565537,
1384
- "sequenceName": null,
1385
- "mutationFrom": "G",
1386
- "mutationTo": "-",
1387
- "position": 28362
1388
- },
1389
- {
1390
- "mutation": "A28363-",
1391
- "count": 22213,
1392
- "proportion": 0.9969928186714542,
1393
- "sequenceName": null,
1394
- "mutationFrom": "A",
1395
- "mutationTo": "-",
1396
- "position": 28363
1397
- },
1398
- {
1399
- "mutation": "G28364-",
1400
- "count": 22212,
1401
- "proportion": 0.996992683693164,
1402
- "sequenceName": null,
1403
- "mutationFrom": "G",
1404
- "mutationTo": "-",
1405
- "position": 28364
1406
- },
1407
- {
1408
- "mutation": "A28365-",
1409
- "count": 22210,
1410
- "proportion": 0.997708997798841,
1411
- "sequenceName": null,
1412
- "mutationFrom": "A",
1413
- "mutationTo": "-",
1414
- "position": 28365
1415
- },
1416
- {
1417
- "mutation": "A28366-",
1418
- "count": 22210,
1419
- "proportion": 0.997708997798841,
1420
- "sequenceName": null,
1421
- "mutationFrom": "A",
1422
- "mutationTo": "-",
1423
- "position": 28366
1424
- },
1425
- {
1426
- "mutation": "C28367-",
1427
- "count": 22210,
1428
- "proportion": 0.997708997798841,
1429
- "sequenceName": null,
1430
- "mutationFrom": "C",
1431
- "mutationTo": "-",
1432
- "position": 28367
1433
- },
1434
- {
1435
- "mutation": "G28368-",
1436
- "count": 22210,
1437
- "proportion": 0.997708997798841,
1438
- "sequenceName": null,
1439
- "mutationFrom": "G",
1440
- "mutationTo": "-",
1441
- "position": 28368
1442
- },
1443
- {
1444
- "mutation": "C28369-",
1445
- "count": 22210,
1446
- "proportion": 0.997708997798841,
1447
- "sequenceName": null,
1448
- "mutationFrom": "C",
1449
- "mutationTo": "-",
1450
- "position": 28369
1451
- },
1452
- {
1453
- "mutation": "A28370-",
1454
- "count": 22117,
1455
- "proportion": 0.9974294218454045,
1456
- "sequenceName": null,
1457
- "mutationFrom": "A",
1458
- "mutationTo": "-",
1459
- "position": 28370
1460
- },
1461
- {
1462
- "mutation": "G28881A",
1463
- "count": 24848,
1464
- "proportion": 0.9994770926350509,
1465
- "sequenceName": null,
1466
- "mutationFrom": "G",
1467
- "mutationTo": "A",
1468
- "position": 28881
1469
- },
1470
- {
1471
- "mutation": "G28882A",
1472
- "count": 24826,
1473
- "proportion": 0.9985921724789831,
1474
- "sequenceName": null,
1475
- "mutationFrom": "G",
1476
- "mutationTo": "A",
1477
- "position": 28882
1478
- },
1479
- {
1480
- "mutation": "G28883C",
1481
- "count": 24848,
1482
- "proportion": 0.999396693882476,
1483
- "sequenceName": null,
1484
- "mutationFrom": "G",
1485
- "mutationTo": "C",
1486
- "position": 28883
1487
- },
1488
- {
1489
- "mutation": "C28958A",
1490
- "count": 24797,
1491
- "proportion": 0.9989123428939736,
1492
- "sequenceName": null,
1493
- "mutationFrom": "C",
1494
- "mutationTo": "A",
1495
- "position": 28958
1496
- },
1497
- {
1498
- "mutation": "A29510C",
1499
- "count": 24836,
1500
- "proportion": 0.9997182304874612,
1501
- "sequenceName": null,
1502
- "mutationFrom": "A",
1503
- "mutationTo": "C",
1504
- "position": 29510
1505
- },
1506
- {
1507
- "mutation": "G29734-",
1508
- "count": 18703,
1509
- "proportion": 0.984472049689441,
1510
- "sequenceName": null,
1511
- "mutationFrom": "G",
1512
- "mutationTo": "-",
1513
- "position": 29734
1514
- },
1515
- {
1516
- "mutation": "A29735-",
1517
- "count": 18694,
1518
- "proportion": 0.9853468269028042,
1519
- "sequenceName": null,
1520
- "mutationFrom": "A",
1521
- "mutationTo": "-",
1522
- "position": 29735
1523
- },
1524
- {
1525
- "mutation": "G29736-",
1526
- "count": 18693,
1527
- "proportion": 0.9872715749445442,
1528
- "sequenceName": null,
1529
- "mutationFrom": "G",
1530
- "mutationTo": "-",
1531
- "position": 29736
1532
- },
1533
- {
1534
- "mutation": "G29737-",
1535
- "count": 18693,
1536
- "proportion": 0.9872715749445442,
1537
- "sequenceName": null,
1538
- "mutationFrom": "G",
1539
- "mutationTo": "-",
1540
- "position": 29737
1541
- },
1542
- {
1543
- "mutation": "C29738-",
1544
- "count": 18693,
1545
- "proportion": 0.9873237204880367,
1546
- "sequenceName": null,
1547
- "mutationFrom": "C",
1548
- "mutationTo": "-",
1549
- "position": 29738
1550
- },
1551
- {
1552
- "mutation": "C29739-",
1553
- "count": 18693,
1554
- "proportion": 0.9873237204880367,
1555
- "sequenceName": null,
1556
- "mutationFrom": "C",
1557
- "mutationTo": "-",
1558
- "position": 29739
1559
- },
1560
- {
1561
- "mutation": "A29740-",
1562
- "count": 18693,
1563
- "proportion": 0.9873237204880367,
1564
- "sequenceName": null,
1565
- "mutationFrom": "A",
1566
- "mutationTo": "-",
1567
- "position": 29740
1568
- },
1569
- {
1570
- "mutation": "C29741-",
1571
- "count": 18693,
1572
- "proportion": 0.9873237204880367,
1573
- "sequenceName": null,
1574
- "mutationFrom": "C",
1575
- "mutationTo": "-",
1576
- "position": 29741
1577
- },
1578
- {
1579
- "mutation": "G29742-",
1580
- "count": 18693,
1581
- "proportion": 0.9873237204880367,
1582
- "sequenceName": null,
1583
- "mutationFrom": "G",
1584
- "mutationTo": "-",
1585
- "position": 29742
1586
- },
1587
- {
1588
- "mutation": "C29743-",
1589
- "count": 18692,
1590
- "proportion": 0.9872709026567369,
1591
- "sequenceName": null,
1592
- "mutationFrom": "C",
1593
- "mutationTo": "-",
1594
- "position": 29743
1595
- },
1596
- {
1597
- "mutation": "G29744-",
1598
- "count": 18692,
1599
- "proportion": 0.9872709026567369,
1600
- "sequenceName": null,
1601
- "mutationFrom": "G",
1602
- "mutationTo": "-",
1603
- "position": 29744
1604
- },
1605
- {
1606
- "mutation": "G29745-",
1607
- "count": 18692,
1608
- "proportion": 0.9872709026567369,
1609
- "sequenceName": null,
1610
- "mutationFrom": "G",
1611
- "mutationTo": "-",
1612
- "position": 29745
1613
- },
1614
- {
1615
- "mutation": "A29746-",
1616
- "count": 18692,
1617
- "proportion": 0.9872709026567369,
1618
- "sequenceName": null,
1619
- "mutationFrom": "A",
1620
- "mutationTo": "-",
1621
- "position": 29746
1622
- },
1623
- {
1624
- "mutation": "G29747-",
1625
- "count": 18692,
1626
- "proportion": 0.9872709026567369,
1627
- "sequenceName": null,
1628
- "mutationFrom": "G",
1629
- "mutationTo": "-",
1630
- "position": 29747
1631
- },
1632
- {
1633
- "mutation": "T29748-",
1634
- "count": 18692,
1635
- "proportion": 0.9872709026567369,
1636
- "sequenceName": null,
1637
- "mutationFrom": "T",
1638
- "mutationTo": "-",
1639
- "position": 29748
1640
- },
1641
- {
1642
- "mutation": "A29749-",
1643
- "count": 18692,
1644
- "proportion": 0.9872709026567369,
1645
- "sequenceName": null,
1646
- "mutationFrom": "A",
1647
- "mutationTo": "-",
1648
- "position": 29749
1649
- },
1650
- {
1651
- "mutation": "C29750-",
1652
- "count": 18692,
1653
- "proportion": 0.9872709026567369,
1654
- "sequenceName": null,
1655
- "mutationFrom": "C",
1656
- "mutationTo": "-",
1657
- "position": 29750
1658
- },
1659
- {
1660
- "mutation": "G29751-",
1661
- "count": 18692,
1662
- "proportion": 0.9872709026567369,
1663
- "sequenceName": null,
1664
- "mutationFrom": "G",
1665
- "mutationTo": "-",
1666
- "position": 29751
1667
- },
1668
- {
1669
- "mutation": "A29752-",
1670
- "count": 18692,
1671
- "proportion": 0.9873230509190788,
1672
- "sequenceName": null,
1673
- "mutationFrom": "A",
1674
- "mutationTo": "-",
1675
- "position": 29752
1676
- },
1677
- {
1678
- "mutation": "T29753-",
1679
- "count": 18692,
1680
- "proportion": 0.9873230509190788,
1681
- "sequenceName": null,
1682
- "mutationFrom": "T",
1683
- "mutationTo": "-",
1684
- "position": 29753
1685
- },
1686
- {
1687
- "mutation": "C29754-",
1688
- "count": 18692,
1689
- "proportion": 0.9872709026567369,
1690
- "sequenceName": null,
1691
- "mutationFrom": "C",
1692
- "mutationTo": "-",
1693
- "position": 29754
1694
- },
1695
- {
1696
- "mutation": "G29755-",
1697
- "count": 18692,
1698
- "proportion": 0.9872709026567369,
1699
- "sequenceName": null,
1700
- "mutationFrom": "G",
1701
- "mutationTo": "-",
1702
- "position": 29755
1703
- },
1704
- {
1705
- "mutation": "A29756-",
1706
- "count": 18692,
1707
- "proportion": 0.9872709026567369,
1708
- "sequenceName": null,
1709
- "mutationFrom": "A",
1710
- "mutationTo": "-",
1711
- "position": 29756
1712
- },
1713
- {
1714
- "mutation": "G29757-",
1715
- "count": 18693,
1716
- "proportion": 0.9873237204880367,
1717
- "sequenceName": null,
1718
- "mutationFrom": "G",
1719
- "mutationTo": "-",
1720
- "position": 29757
1721
- },
1722
- {
1723
- "mutation": "T29758-",
1724
- "count": 18691,
1725
- "proportion": 0.987218084825437,
1726
- "sequenceName": null,
1727
- "mutationFrom": "T",
1728
- "mutationTo": "-",
1729
- "position": 29758
1730
- },
1731
- {
1732
- "mutation": "G29759-",
1733
- "count": 18679,
1734
- "proportion": 0.9866363828438622,
1735
- "sequenceName": null,
1736
- "mutationFrom": "G",
1737
- "mutationTo": "-",
1738
- "position": 29759
1739
- }
1740
- ],
1741
- "info": {
1742
- "dataVersion": "1720033519",
1743
- "requestId": "3068ab30-5f52-4082-946d-8921ce8cc298",
1744
- "requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-07-17T14:53:28.640121896",
1745
- "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."
1746
- }
1747
- }