@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,1819 +0,0 @@
1
- {
2
- "data": [
3
- {
4
- "mutation": "C21T",
5
- "count": 314,
6
- "proportion": 0.8532608695652174,
7
- "sequenceName": null,
8
- "mutationFrom": "C",
9
- "mutationTo": "T",
10
- "position": 21
11
- },
12
- {
13
- "mutation": "C44T",
14
- "count": 530,
15
- "proportion": 0.47790802524797116,
16
- "sequenceName": null,
17
- "mutationFrom": "C",
18
- "mutationTo": "T",
19
- "position": 44
20
- },
21
- {
22
- "mutation": "C241T",
23
- "count": 5588,
24
- "proportion": 0.9983919957119886,
25
- "sequenceName": null,
26
- "mutationFrom": "C",
27
- "mutationTo": "T",
28
- "position": 241
29
- },
30
- {
31
- "mutation": "G515-",
32
- "count": 285,
33
- "proportion": 0.054639570552147236,
34
- "sequenceName": null,
35
- "mutationFrom": "G",
36
- "mutationTo": "-",
37
- "position": 515
38
- },
39
- {
40
- "mutation": "T516-",
41
- "count": 321,
42
- "proportion": 0.061541411042944784,
43
- "sequenceName": null,
44
- "mutationFrom": "T",
45
- "mutationTo": "-",
46
- "position": 516
47
- },
48
- {
49
- "mutation": "T517-",
50
- "count": 321,
51
- "proportion": 0.061541411042944784,
52
- "sequenceName": null,
53
- "mutationFrom": "T",
54
- "mutationTo": "-",
55
- "position": 517
56
- },
57
- {
58
- "mutation": "A518-",
59
- "count": 358,
60
- "proportion": 0.06868764389869532,
61
- "sequenceName": null,
62
- "mutationFrom": "A",
63
- "mutationTo": "-",
64
- "position": 518
65
- },
66
- {
67
- "mutation": "T670G",
68
- "count": 5720,
69
- "proportion": 0.9901332871732733,
70
- "sequenceName": null,
71
- "mutationFrom": "T",
72
- "mutationTo": "G",
73
- "position": 670
74
- },
75
- {
76
- "mutation": "C774T",
77
- "count": 1553,
78
- "proportion": 0.2704632532218739,
79
- "sequenceName": null,
80
- "mutationFrom": "C",
81
- "mutationTo": "T",
82
- "position": 774
83
- },
84
- {
85
- "mutation": "C897A",
86
- "count": 5704,
87
- "proportion": 0.9883902269970543,
88
- "sequenceName": null,
89
- "mutationFrom": "C",
90
- "mutationTo": "A",
91
- "position": 897
92
- },
93
- {
94
- "mutation": "C2790T",
95
- "count": 5531,
96
- "proportion": 0.9974752028854824,
97
- "sequenceName": null,
98
- "mutationFrom": "C",
99
- "mutationTo": "T",
100
- "position": 2790
101
- },
102
- {
103
- "mutation": "C3037T",
104
- "count": 5895,
105
- "proportion": 1.0,
106
- "sequenceName": null,
107
- "mutationFrom": "C",
108
- "mutationTo": "T",
109
- "position": 3037
110
- },
111
- {
112
- "mutation": "G3431T",
113
- "count": 5362,
114
- "proportion": 0.9986962190352021,
115
- "sequenceName": null,
116
- "mutationFrom": "G",
117
- "mutationTo": "T",
118
- "position": 3431
119
- },
120
- {
121
- "mutation": "T3565C",
122
- "count": 5774,
123
- "proportion": 0.9970644102918321,
124
- "sequenceName": null,
125
- "mutationFrom": "T",
126
- "mutationTo": "C",
127
- "position": 3565
128
- },
129
- {
130
- "mutation": "G4184A",
131
- "count": 5876,
132
- "proportion": 0.9998298451590948,
133
- "sequenceName": null,
134
- "mutationFrom": "G",
135
- "mutationTo": "A",
136
- "position": 4184
137
- },
138
- {
139
- "mutation": "C4321T",
140
- "count": 5695,
141
- "proportion": 0.9738372093023255,
142
- "sequenceName": null,
143
- "mutationFrom": "C",
144
- "mutationTo": "T",
145
- "position": 4321
146
- },
147
- {
148
- "mutation": "A6183G",
149
- "count": 5760,
150
- "proportion": 0.9893507385778083,
151
- "sequenceName": null,
152
- "mutationFrom": "A",
153
- "mutationTo": "G",
154
- "position": 6183
155
- },
156
- {
157
- "mutation": "A7842G",
158
- "count": 5877,
159
- "proportion": 0.997792869269949,
160
- "sequenceName": null,
161
- "mutationFrom": "A",
162
- "mutationTo": "G",
163
- "position": 7842
164
- },
165
- {
166
- "mutation": "C8293T",
167
- "count": 5870,
168
- "proportion": 0.9971122812977747,
169
- "sequenceName": null,
170
- "mutationFrom": "C",
171
- "mutationTo": "T",
172
- "position": 8293
173
- },
174
- {
175
- "mutation": "G8393A",
176
- "count": 5869,
177
- "proportion": 0.997450713800136,
178
- "sequenceName": null,
179
- "mutationFrom": "G",
180
- "mutationTo": "A",
181
- "position": 8393
182
- },
183
- {
184
- "mutation": "C9344T",
185
- "count": 5889,
186
- "proportion": 1.0,
187
- "sequenceName": null,
188
- "mutationFrom": "C",
189
- "mutationTo": "T",
190
- "position": 9344
191
- },
192
- {
193
- "mutation": "A9424G",
194
- "count": 5829,
195
- "proportion": 0.9996570056594066,
196
- "sequenceName": null,
197
- "mutationFrom": "A",
198
- "mutationTo": "G",
199
- "position": 9424
200
- },
201
- {
202
- "mutation": "C9534T",
203
- "count": 5819,
204
- "proportion": 0.9994847131569907,
205
- "sequenceName": null,
206
- "mutationFrom": "C",
207
- "mutationTo": "T",
208
- "position": 9534
209
- },
210
- {
211
- "mutation": "C10029T",
212
- "count": 5789,
213
- "proportion": 0.9996546365049215,
214
- "sequenceName": null,
215
- "mutationFrom": "C",
216
- "mutationTo": "T",
217
- "position": 10029
218
- },
219
- {
220
- "mutation": "C10198T",
221
- "count": 5781,
222
- "proportion": 0.9994813278008299,
223
- "sequenceName": null,
224
- "mutationFrom": "C",
225
- "mutationTo": "T",
226
- "position": 10198
227
- },
228
- {
229
- "mutation": "G10447A",
230
- "count": 5885,
231
- "proportion": 1.0,
232
- "sequenceName": null,
233
- "mutationFrom": "G",
234
- "mutationTo": "A",
235
- "position": 10447
236
- },
237
- {
238
- "mutation": "C10449A",
239
- "count": 5885,
240
- "proportion": 1.0,
241
- "sequenceName": null,
242
- "mutationFrom": "C",
243
- "mutationTo": "A",
244
- "position": 10449
245
- },
246
- {
247
- "mutation": "G11042T",
248
- "count": 5882,
249
- "proportion": 0.9977947413061917,
250
- "sequenceName": null,
251
- "mutationFrom": "G",
252
- "mutationTo": "T",
253
- "position": 11042
254
- },
255
- {
256
- "mutation": "T11288-",
257
- "count": 5663,
258
- "proportion": 0.9984132581100141,
259
- "sequenceName": null,
260
- "mutationFrom": "T",
261
- "mutationTo": "-",
262
- "position": 11288
263
- },
264
- {
265
- "mutation": "C11289-",
266
- "count": 5647,
267
- "proportion": 0.9984087694483734,
268
- "sequenceName": null,
269
- "mutationFrom": "C",
270
- "mutationTo": "-",
271
- "position": 11289
272
- },
273
- {
274
- "mutation": "T11290-",
275
- "count": 5636,
276
- "proportion": 0.9984056687333924,
277
- "sequenceName": null,
278
- "mutationFrom": "T",
279
- "mutationTo": "-",
280
- "position": 11290
281
- },
282
- {
283
- "mutation": "G11291-",
284
- "count": 5633,
285
- "proportion": 0.9984048209854661,
286
- "sequenceName": null,
287
- "mutationFrom": "G",
288
- "mutationTo": "-",
289
- "position": 11291
290
- },
291
- {
292
- "mutation": "G11292-",
293
- "count": 5633,
294
- "proportion": 0.9984048209854661,
295
- "sequenceName": null,
296
- "mutationFrom": "G",
297
- "mutationTo": "-",
298
- "position": 11292
299
- },
300
- {
301
- "mutation": "T11293-",
302
- "count": 5633,
303
- "proportion": 0.9984048209854661,
304
- "sequenceName": null,
305
- "mutationFrom": "T",
306
- "mutationTo": "-",
307
- "position": 11293
308
- },
309
- {
310
- "mutation": "T11294-",
311
- "count": 5632,
312
- "proportion": 0.9984045382024463,
313
- "sequenceName": null,
314
- "mutationFrom": "T",
315
- "mutationTo": "-",
316
- "position": 11294
317
- },
318
- {
319
- "mutation": "T11295-",
320
- "count": 5629,
321
- "proportion": 0.9984036892515076,
322
- "sequenceName": null,
323
- "mutationFrom": "T",
324
- "mutationTo": "-",
325
- "position": 11295
326
- },
327
- {
328
- "mutation": "T11296-",
329
- "count": 5629,
330
- "proportion": 0.9984036892515076,
331
- "sequenceName": null,
332
- "mutationFrom": "T",
333
- "mutationTo": "-",
334
- "position": 11296
335
- },
336
- {
337
- "mutation": "G11727A",
338
- "count": 5569,
339
- "proportion": 0.9980286738351255,
340
- "sequenceName": null,
341
- "mutationFrom": "G",
342
- "mutationTo": "A",
343
- "position": 11727
344
- },
345
- {
346
- "mutation": "C12789T",
347
- "count": 5874,
348
- "proportion": 0.9971142420641657,
349
- "sequenceName": null,
350
- "mutationFrom": "C",
351
- "mutationTo": "T",
352
- "position": 12789
353
- },
354
- {
355
- "mutation": "C12815T",
356
- "count": 5884,
357
- "proportion": 0.9986422267481331,
358
- "sequenceName": null,
359
- "mutationFrom": "C",
360
- "mutationTo": "T",
361
- "position": 12815
362
- },
363
- {
364
- "mutation": "C12880T",
365
- "count": 5888,
366
- "proportion": 0.999830191883172,
367
- "sequenceName": null,
368
- "mutationFrom": "C",
369
- "mutationTo": "T",
370
- "position": 12880
371
- },
372
- {
373
- "mutation": "A12928G",
374
- "count": 357,
375
- "proportion": 0.06089032918301211,
376
- "sequenceName": null,
377
- "mutationFrom": "A",
378
- "mutationTo": "G",
379
- "position": 12928
380
- },
381
- {
382
- "mutation": "T13339C",
383
- "count": 5786,
384
- "proportion": 0.9948418156808804,
385
- "sequenceName": null,
386
- "mutationFrom": "T",
387
- "mutationTo": "C",
388
- "position": 13339
389
- },
390
- {
391
- "mutation": "C14408T",
392
- "count": 5896,
393
- "proportion": 1.0,
394
- "sequenceName": null,
395
- "mutationFrom": "C",
396
- "mutationTo": "T",
397
- "position": 14408
398
- },
399
- {
400
- "mutation": "C15714T",
401
- "count": 5895,
402
- "proportion": 0.9996608444972019,
403
- "sequenceName": null,
404
- "mutationFrom": "C",
405
- "mutationTo": "T",
406
- "position": 15714
407
- },
408
- {
409
- "mutation": "T15756A",
410
- "count": 5882,
411
- "proportion": 0.99932042133877,
412
- "sequenceName": null,
413
- "mutationFrom": "T",
414
- "mutationTo": "A",
415
- "position": 15756
416
- },
417
- {
418
- "mutation": "C17410T",
419
- "count": 5876,
420
- "proportion": 1.0,
421
- "sequenceName": null,
422
- "mutationFrom": "C",
423
- "mutationTo": "T",
424
- "position": 17410
425
- },
426
- {
427
- "mutation": "A18163G",
428
- "count": 5854,
429
- "proportion": 0.9996584699453552,
430
- "sequenceName": null,
431
- "mutationFrom": "A",
432
- "mutationTo": "G",
433
- "position": 18163
434
- },
435
- {
436
- "mutation": "T18453C",
437
- "count": 1237,
438
- "proportion": 0.210768444368717,
439
- "sequenceName": null,
440
- "mutationFrom": "T",
441
- "mutationTo": "C",
442
- "position": 18453
443
- },
444
- {
445
- "mutation": "A18492G",
446
- "count": 5886,
447
- "proportion": 0.999320882852292,
448
- "sequenceName": null,
449
- "mutationFrom": "A",
450
- "mutationTo": "G",
451
- "position": 18492
452
- },
453
- {
454
- "mutation": "C18894T",
455
- "count": 5712,
456
- "proportion": 0.9993002099370188,
457
- "sequenceName": null,
458
- "mutationFrom": "C",
459
- "mutationTo": "T",
460
- "position": 18894
461
- },
462
- {
463
- "mutation": "C19955T",
464
- "count": 5717,
465
- "proportion": 0.9998251136761105,
466
- "sequenceName": null,
467
- "mutationFrom": "C",
468
- "mutationTo": "T",
469
- "position": 19955
470
- },
471
- {
472
- "mutation": "A20055G",
473
- "count": 5757,
474
- "proportion": 0.9979199167966719,
475
- "sequenceName": null,
476
- "mutationFrom": "A",
477
- "mutationTo": "G",
478
- "position": 20055
479
- },
480
- {
481
- "mutation": "C21618T",
482
- "count": 5406,
483
- "proportion": 0.9987068169222243,
484
- "sequenceName": null,
485
- "mutationFrom": "C",
486
- "mutationTo": "T",
487
- "position": 21618
488
- },
489
- {
490
- "mutation": "C21622T",
491
- "count": 5402,
492
- "proportion": 0.9987058606026992,
493
- "sequenceName": null,
494
- "mutationFrom": "C",
495
- "mutationTo": "T",
496
- "position": 21622
497
- },
498
- {
499
- "mutation": "G21624C",
500
- "count": 5406,
501
- "proportion": 0.9988913525498891,
502
- "sequenceName": null,
503
- "mutationFrom": "G",
504
- "mutationTo": "C",
505
- "position": 21624
506
- },
507
- {
508
- "mutation": "T21633-",
509
- "count": 4900,
510
- "proportion": 0.9875050382910117,
511
- "sequenceName": null,
512
- "mutationFrom": "T",
513
- "mutationTo": "-",
514
- "position": 21633
515
- },
516
- {
517
- "mutation": "A21634-",
518
- "count": 4901,
519
- "proportion": 0.9973544973544973,
520
- "sequenceName": null,
521
- "mutationFrom": "A",
522
- "mutationTo": "-",
523
- "position": 21634
524
- },
525
- {
526
- "mutation": "C21635-",
527
- "count": 4908,
528
- "proportion": 0.9987789987789988,
529
- "sequenceName": null,
530
- "mutationFrom": "C",
531
- "mutationTo": "-",
532
- "position": 21635
533
- },
534
- {
535
- "mutation": "C21636-",
536
- "count": 4908,
537
- "proportion": 0.9987789987789988,
538
- "sequenceName": null,
539
- "mutationFrom": "C",
540
- "mutationTo": "-",
541
- "position": 21636
542
- },
543
- {
544
- "mutation": "C21637-",
545
- "count": 4908,
546
- "proportion": 0.9981696156192801,
547
- "sequenceName": null,
548
- "mutationFrom": "C",
549
- "mutationTo": "-",
550
- "position": 21637
551
- },
552
- {
553
- "mutation": "C21638-",
554
- "count": 4906,
555
- "proportion": 0.9981688708036622,
556
- "sequenceName": null,
557
- "mutationFrom": "C",
558
- "mutationTo": "-",
559
- "position": 21638
560
- },
561
- {
562
- "mutation": "C21639-",
563
- "count": 4905,
564
- "proportion": 0.9971538930676966,
565
- "sequenceName": null,
566
- "mutationFrom": "C",
567
- "mutationTo": "-",
568
- "position": 21639
569
- },
570
- {
571
- "mutation": "T21640-",
572
- "count": 4904,
573
- "proportion": 0.9923108053419668,
574
- "sequenceName": null,
575
- "mutationFrom": "T",
576
- "mutationTo": "-",
577
- "position": 21640
578
- },
579
- {
580
- "mutation": "G21641-",
581
- "count": 4903,
582
- "proportion": 0.9659180457052797,
583
- "sequenceName": null,
584
- "mutationFrom": "G",
585
- "mutationTo": "-",
586
- "position": 21641
587
- },
588
- {
589
- "mutation": "C21711T",
590
- "count": 5626,
591
- "proportion": 0.9992895204262877,
592
- "sequenceName": null,
593
- "mutationFrom": "C",
594
- "mutationTo": "T",
595
- "position": 21711
596
- },
597
- {
598
- "mutation": "T21765-",
599
- "count": 5104,
600
- "proportion": 0.9899146625290923,
601
- "sequenceName": null,
602
- "mutationFrom": "T",
603
- "mutationTo": "-",
604
- "position": 21765
605
- },
606
- {
607
- "mutation": "A21766-",
608
- "count": 5104,
609
- "proportion": 0.9986304050088045,
610
- "sequenceName": null,
611
- "mutationFrom": "A",
612
- "mutationTo": "-",
613
- "position": 21766
614
- },
615
- {
616
- "mutation": "C21767-",
617
- "count": 5122,
618
- "proportion": 0.9996096799375488,
619
- "sequenceName": null,
620
- "mutationFrom": "C",
621
- "mutationTo": "-",
622
- "position": 21767
623
- },
624
- {
625
- "mutation": "A21768-",
626
- "count": 5103,
627
- "proportion": 0.9957073170731707,
628
- "sequenceName": null,
629
- "mutationFrom": "A",
630
- "mutationTo": "-",
631
- "position": 21768
632
- },
633
- {
634
- "mutation": "T21769-",
635
- "count": 5103,
636
- "proportion": 0.9939618231398519,
637
- "sequenceName": null,
638
- "mutationFrom": "T",
639
- "mutationTo": "-",
640
- "position": 21769
641
- },
642
- {
643
- "mutation": "G21770-",
644
- "count": 5090,
645
- "proportion": 0.9968664316490403,
646
- "sequenceName": null,
647
- "mutationFrom": "G",
648
- "mutationTo": "-",
649
- "position": 21770
650
- },
651
- {
652
- "mutation": "G21941T",
653
- "count": 5673,
654
- "proportion": 0.9977136827295111,
655
- "sequenceName": null,
656
- "mutationFrom": "G",
657
- "mutationTo": "T",
658
- "position": 21941
659
- },
660
- {
661
- "mutation": "G21987A",
662
- "count": 5845,
663
- "proportion": 0.995741056218058,
664
- "sequenceName": null,
665
- "mutationFrom": "G",
666
- "mutationTo": "A",
667
- "position": 21987
668
- },
669
- {
670
- "mutation": "T21992-",
671
- "count": 5662,
672
- "proportion": 0.9964801126363957,
673
- "sequenceName": null,
674
- "mutationFrom": "T",
675
- "mutationTo": "-",
676
- "position": 21992
677
- },
678
- {
679
- "mutation": "A21993-",
680
- "count": 5662,
681
- "proportion": 0.9971821063754843,
682
- "sequenceName": null,
683
- "mutationFrom": "A",
684
- "mutationTo": "-",
685
- "position": 21993
686
- },
687
- {
688
- "mutation": "T21994-",
689
- "count": 5662,
690
- "proportion": 0.9616168478260869,
691
- "sequenceName": null,
692
- "mutationFrom": "T",
693
- "mutationTo": "-",
694
- "position": 21994
695
- },
696
- {
697
- "mutation": "T22032C",
698
- "count": 5861,
699
- "proportion": 0.9981267029972752,
700
- "sequenceName": null,
701
- "mutationFrom": "T",
702
- "mutationTo": "C",
703
- "position": 22032
704
- },
705
- {
706
- "mutation": "C22033A",
707
- "count": 5869,
708
- "proportion": 0.999659342531085,
709
- "sequenceName": null,
710
- "mutationFrom": "C",
711
- "mutationTo": "A",
712
- "position": 22033
713
- },
714
- {
715
- "mutation": "A22034G",
716
- "count": 5870,
717
- "proportion": 0.9998296712655425,
718
- "sequenceName": null,
719
- "mutationFrom": "A",
720
- "mutationTo": "G",
721
- "position": 22034
722
- },
723
- {
724
- "mutation": "A22194-",
725
- "count": 5666,
726
- "proportion": 0.9968332160450387,
727
- "sequenceName": null,
728
- "mutationFrom": "A",
729
- "mutationTo": "-",
730
- "position": 22194
731
- },
732
- {
733
- "mutation": "T22195-",
734
- "count": 5666,
735
- "proportion": 0.9968332160450387,
736
- "sequenceName": null,
737
- "mutationFrom": "T",
738
- "mutationTo": "-",
739
- "position": 22195
740
- },
741
- {
742
- "mutation": "T22196-",
743
- "count": 5670,
744
- "proportion": 0.9970107262176895,
745
- "sequenceName": null,
746
- "mutationFrom": "T",
747
- "mutationTo": "-",
748
- "position": 22196
749
- },
750
- {
751
- "mutation": "T22200G",
752
- "count": 5729,
753
- "proportion": 0.9932385575589459,
754
- "sequenceName": null,
755
- "mutationFrom": "T",
756
- "mutationTo": "G",
757
- "position": 22200
758
- },
759
- {
760
- "mutation": "C22208T",
761
- "count": 5777,
762
- "proportion": 0.998789764868603,
763
- "sequenceName": null,
764
- "mutationFrom": "C",
765
- "mutationTo": "T",
766
- "position": 22208
767
- },
768
- {
769
- "mutation": "C22295A",
770
- "count": 5779,
771
- "proportion": 0.9987901832008296,
772
- "sequenceName": null,
773
- "mutationFrom": "C",
774
- "mutationTo": "A",
775
- "position": 22295
776
- },
777
- {
778
- "mutation": "C22353A",
779
- "count": 5717,
780
- "proportion": 0.9742672119972734,
781
- "sequenceName": null,
782
- "mutationFrom": "C",
783
- "mutationTo": "A",
784
- "position": 22353
785
- },
786
- {
787
- "mutation": "A22556G",
788
- "count": 5812,
789
- "proportion": 0.9960582690659812,
790
- "sequenceName": null,
791
- "mutationFrom": "A",
792
- "mutationTo": "G",
793
- "position": 22556
794
- },
795
- {
796
- "mutation": "G22577C",
797
- "count": 5809,
798
- "proportion": 0.9977670903469598,
799
- "sequenceName": null,
800
- "mutationFrom": "G",
801
- "mutationTo": "C",
802
- "position": 22577
803
- },
804
- {
805
- "mutation": "G22578A",
806
- "count": 5812,
807
- "proportion": 0.998282377189969,
808
- "sequenceName": null,
809
- "mutationFrom": "G",
810
- "mutationTo": "A",
811
- "position": 22578
812
- },
813
- {
814
- "mutation": "G22599C",
815
- "count": 800,
816
- "proportion": 0.13769363166953527,
817
- "sequenceName": null,
818
- "mutationFrom": "G",
819
- "mutationTo": "C",
820
- "position": 22599
821
- },
822
- {
823
- "mutation": "A22629C",
824
- "count": 5712,
825
- "proportion": 0.9975550122249389,
826
- "sequenceName": null,
827
- "mutationFrom": "A",
828
- "mutationTo": "C",
829
- "position": 22629
830
- },
831
- {
832
- "mutation": "C22674T",
833
- "count": 5812,
834
- "proportion": 0.9989687177724303,
835
- "sequenceName": null,
836
- "mutationFrom": "C",
837
- "mutationTo": "T",
838
- "position": 22674
839
- },
840
- {
841
- "mutation": "T22679C",
842
- "count": 5822,
843
- "proportion": 0.9987991079087322,
844
- "sequenceName": null,
845
- "mutationFrom": "T",
846
- "mutationTo": "C",
847
- "position": 22679
848
- },
849
- {
850
- "mutation": "C22686T",
851
- "count": 5816,
852
- "proportion": 0.9982835564709921,
853
- "sequenceName": null,
854
- "mutationFrom": "C",
855
- "mutationTo": "T",
856
- "position": 22686
857
- },
858
- {
859
- "mutation": "A22688G",
860
- "count": 5801,
861
- "proportion": 0.9974209078404401,
862
- "sequenceName": null,
863
- "mutationFrom": "A",
864
- "mutationTo": "G",
865
- "position": 22688
866
- },
867
- {
868
- "mutation": "G22770A",
869
- "count": 5203,
870
- "proportion": 0.9965523846006512,
871
- "sequenceName": null,
872
- "mutationFrom": "G",
873
- "mutationTo": "A",
874
- "position": 22770
875
- },
876
- {
877
- "mutation": "G22775A",
878
- "count": 5811,
879
- "proportion": 0.9984536082474227,
880
- "sequenceName": null,
881
- "mutationFrom": "G",
882
- "mutationTo": "A",
883
- "position": 22775
884
- },
885
- {
886
- "mutation": "A22786C",
887
- "count": 5750,
888
- "proportion": 0.9949818307665687,
889
- "sequenceName": null,
890
- "mutationFrom": "A",
891
- "mutationTo": "C",
892
- "position": 22786
893
- },
894
- {
895
- "mutation": "G22813T",
896
- "count": 5254,
897
- "proportion": 0.9881512130900884,
898
- "sequenceName": null,
899
- "mutationFrom": "G",
900
- "mutationTo": "T",
901
- "position": 22813
902
- },
903
- {
904
- "mutation": "T22882G",
905
- "count": 5588,
906
- "proportion": 0.9991060253888789,
907
- "sequenceName": null,
908
- "mutationFrom": "T",
909
- "mutationTo": "G",
910
- "position": 22882
911
- },
912
- {
913
- "mutation": "G22895C",
914
- "count": 5568,
915
- "proportion": 0.9989235737351991,
916
- "sequenceName": null,
917
- "mutationFrom": "G",
918
- "mutationTo": "C",
919
- "position": 22895
920
- },
921
- {
922
- "mutation": "T22896A",
923
- "count": 5560,
924
- "proportion": 0.9978463747307968,
925
- "sequenceName": null,
926
- "mutationFrom": "T",
927
- "mutationTo": "A",
928
- "position": 22896
929
- },
930
- {
931
- "mutation": "G22898A",
932
- "count": 5573,
933
- "proportion": 0.9998205956225332,
934
- "sequenceName": null,
935
- "mutationFrom": "G",
936
- "mutationTo": "A",
937
- "position": 22898
938
- },
939
- {
940
- "mutation": "A22910G",
941
- "count": 5582,
942
- "proportion": 0.999820884828945,
943
- "sequenceName": null,
944
- "mutationFrom": "A",
945
- "mutationTo": "G",
946
- "position": 22910
947
- },
948
- {
949
- "mutation": "C22916T",
950
- "count": 5575,
951
- "proportion": 0.9996413842567689,
952
- "sequenceName": null,
953
- "mutationFrom": "C",
954
- "mutationTo": "T",
955
- "position": 22916
956
- },
957
- {
958
- "mutation": "T22917G",
959
- "count": 5583,
960
- "proportion": 0.9992840522641847,
961
- "sequenceName": null,
962
- "mutationFrom": "T",
963
- "mutationTo": "G",
964
- "position": 22917
965
- },
966
- {
967
- "mutation": "T22926C",
968
- "count": 5567,
969
- "proportion": 0.9976702508960573,
970
- "sequenceName": null,
971
- "mutationFrom": "T",
972
- "mutationTo": "C",
973
- "position": 22926
974
- },
975
- {
976
- "mutation": "T22928C",
977
- "count": 423,
978
- "proportion": 0.07586083213773315,
979
- "sequenceName": null,
980
- "mutationFrom": "T",
981
- "mutationTo": "C",
982
- "position": 22928
983
- },
984
- {
985
- "mutation": "T22942A",
986
- "count": 5600,
987
- "proportion": 0.9978617248752673,
988
- "sequenceName": null,
989
- "mutationFrom": "T",
990
- "mutationTo": "A",
991
- "position": 22942
992
- },
993
- {
994
- "mutation": "G22992A",
995
- "count": 5683,
996
- "proportion": 0.9987697715289983,
997
- "sequenceName": null,
998
- "mutationFrom": "G",
999
- "mutationTo": "A",
1000
- "position": 22992
1001
- },
1002
- {
1003
- "mutation": "C22995A",
1004
- "count": 5675,
1005
- "proportion": 0.9978899243889573,
1006
- "sequenceName": null,
1007
- "mutationFrom": "C",
1008
- "mutationTo": "A",
1009
- "position": 22995
1010
- },
1011
- {
1012
- "mutation": "T23005A",
1013
- "count": 5626,
1014
- "proportion": 0.9976946267068629,
1015
- "sequenceName": null,
1016
- "mutationFrom": "T",
1017
- "mutationTo": "A",
1018
- "position": 23005
1019
- },
1020
- {
1021
- "mutation": "G23009-",
1022
- "count": 5158,
1023
- "proportion": 0.997678916827853,
1024
- "sequenceName": null,
1025
- "mutationFrom": "G",
1026
- "mutationTo": "-",
1027
- "position": 23009
1028
- },
1029
- {
1030
- "mutation": "T23010-",
1031
- "count": 5157,
1032
- "proportion": 0.9976784677887406,
1033
- "sequenceName": null,
1034
- "mutationFrom": "T",
1035
- "mutationTo": "-",
1036
- "position": 23010
1037
- },
1038
- {
1039
- "mutation": "T23011-",
1040
- "count": 5157,
1041
- "proportion": 0.9095238095238095,
1042
- "sequenceName": null,
1043
- "mutationFrom": "T",
1044
- "mutationTo": "-",
1045
- "position": 23011
1046
- },
1047
- {
1048
- "mutation": "G23012A",
1049
- "count": 5661,
1050
- "proportion": 0.9975330396475771,
1051
- "sequenceName": null,
1052
- "mutationFrom": "G",
1053
- "mutationTo": "A",
1054
- "position": 23012
1055
- },
1056
- {
1057
- "mutation": "T23018C",
1058
- "count": 5666,
1059
- "proportion": 0.9980623568786331,
1060
- "sequenceName": null,
1061
- "mutationFrom": "T",
1062
- "mutationTo": "C",
1063
- "position": 23018
1064
- },
1065
- {
1066
- "mutation": "T23019C",
1067
- "count": 5665,
1068
- "proportion": 0.998062015503876,
1069
- "sequenceName": null,
1070
- "mutationFrom": "T",
1071
- "mutationTo": "C",
1072
- "position": 23019
1073
- },
1074
- {
1075
- "mutation": "A23055G",
1076
- "count": 5673,
1077
- "proportion": 0.9992954025013211,
1078
- "sequenceName": null,
1079
- "mutationFrom": "A",
1080
- "mutationTo": "G",
1081
- "position": 23055
1082
- },
1083
- {
1084
- "mutation": "A23063T",
1085
- "count": 5676,
1086
- "proportion": 0.9994717379820391,
1087
- "sequenceName": null,
1088
- "mutationFrom": "A",
1089
- "mutationTo": "T",
1090
- "position": 23063
1091
- },
1092
- {
1093
- "mutation": "T23075C",
1094
- "count": 5656,
1095
- "proportion": 0.99682763482552,
1096
- "sequenceName": null,
1097
- "mutationFrom": "T",
1098
- "mutationTo": "C",
1099
- "position": 23075
1100
- },
1101
- {
1102
- "mutation": "G23222A",
1103
- "count": 5899,
1104
- "proportion": 0.9998305084745762,
1105
- "sequenceName": null,
1106
- "mutationFrom": "G",
1107
- "mutationTo": "A",
1108
- "position": 23222
1109
- },
1110
- {
1111
- "mutation": "C23271T",
1112
- "count": 5893,
1113
- "proportion": 0.9991522550016955,
1114
- "sequenceName": null,
1115
- "mutationFrom": "C",
1116
- "mutationTo": "T",
1117
- "position": 23271
1118
- },
1119
- {
1120
- "mutation": "C23277T",
1121
- "count": 1508,
1122
- "proportion": 0.25633180350161483,
1123
- "sequenceName": null,
1124
- "mutationFrom": "C",
1125
- "mutationTo": "T",
1126
- "position": 23277
1127
- },
1128
- {
1129
- "mutation": "A23403G",
1130
- "count": 5898,
1131
- "proportion": 1.0,
1132
- "sequenceName": null,
1133
- "mutationFrom": "A",
1134
- "mutationTo": "G",
1135
- "position": 23403
1136
- },
1137
- {
1138
- "mutation": "C23423T",
1139
- "count": 5895,
1140
- "proportion": 0.9994913530010173,
1141
- "sequenceName": null,
1142
- "mutationFrom": "C",
1143
- "mutationTo": "T",
1144
- "position": 23423
1145
- },
1146
- {
1147
- "mutation": "C23525T",
1148
- "count": 5565,
1149
- "proportion": 0.9994612068965517,
1150
- "sequenceName": null,
1151
- "mutationFrom": "C",
1152
- "mutationTo": "T",
1153
- "position": 23525
1154
- },
1155
- {
1156
- "mutation": "T23599G",
1157
- "count": 5774,
1158
- "proportion": 0.993632765444846,
1159
- "sequenceName": null,
1160
- "mutationFrom": "T",
1161
- "mutationTo": "G",
1162
- "position": 23599
1163
- },
1164
- {
1165
- "mutation": "C23604G",
1166
- "count": 5785,
1167
- "proportion": 0.9936447956028857,
1168
- "sequenceName": null,
1169
- "mutationFrom": "C",
1170
- "mutationTo": "G",
1171
- "position": 23604
1172
- },
1173
- {
1174
- "mutation": "C23854A",
1175
- "count": 5798,
1176
- "proportion": 0.9998275564752543,
1177
- "sequenceName": null,
1178
- "mutationFrom": "C",
1179
- "mutationTo": "A",
1180
- "position": 23854
1181
- },
1182
- {
1183
- "mutation": "G23948T",
1184
- "count": 5740,
1185
- "proportion": 0.9994776249347032,
1186
- "sequenceName": null,
1187
- "mutationFrom": "G",
1188
- "mutationTo": "T",
1189
- "position": 23948
1190
- },
1191
- {
1192
- "mutation": "C24378T",
1193
- "count": 5481,
1194
- "proportion": 0.9778768956289028,
1195
- "sequenceName": null,
1196
- "mutationFrom": "C",
1197
- "mutationTo": "T",
1198
- "position": 24378
1199
- },
1200
- {
1201
- "mutation": "A24424T",
1202
- "count": 5610,
1203
- "proportion": 0.9985760056959773,
1204
- "sequenceName": null,
1205
- "mutationFrom": "A",
1206
- "mutationTo": "T",
1207
- "position": 24424
1208
- },
1209
- {
1210
- "mutation": "T24469A",
1211
- "count": 5711,
1212
- "proportion": 0.9986011540479105,
1213
- "sequenceName": null,
1214
- "mutationFrom": "T",
1215
- "mutationTo": "A",
1216
- "position": 24469
1217
- },
1218
- {
1219
- "mutation": "C24990T",
1220
- "count": 5831,
1221
- "proportion": 0.9977754962354551,
1222
- "sequenceName": null,
1223
- "mutationFrom": "C",
1224
- "mutationTo": "T",
1225
- "position": 24990
1226
- },
1227
- {
1228
- "mutation": "C25000T",
1229
- "count": 5838,
1230
- "proportion": 0.997948717948718,
1231
- "sequenceName": null,
1232
- "mutationFrom": "C",
1233
- "mutationTo": "T",
1234
- "position": 25000
1235
- },
1236
- {
1237
- "mutation": "G25012T",
1238
- "count": 616,
1239
- "proportion": 0.10555174777244689,
1240
- "sequenceName": null,
1241
- "mutationFrom": "G",
1242
- "mutationTo": "T",
1243
- "position": 25012
1244
- },
1245
- {
1246
- "mutation": "C25207T",
1247
- "count": 5717,
1248
- "proportion": 0.9998251136761105,
1249
- "sequenceName": null,
1250
- "mutationFrom": "C",
1251
- "mutationTo": "T",
1252
- "position": 25207
1253
- },
1254
- {
1255
- "mutation": "C25566T",
1256
- "count": 647,
1257
- "proportion": 0.11012765957446809,
1258
- "sequenceName": null,
1259
- "mutationFrom": "C",
1260
- "mutationTo": "T",
1261
- "position": 25566
1262
- },
1263
- {
1264
- "mutation": "C25584T",
1265
- "count": 5892,
1266
- "proportion": 0.9998303071440693,
1267
- "sequenceName": null,
1268
- "mutationFrom": "C",
1269
- "mutationTo": "T",
1270
- "position": 25584
1271
- },
1272
- {
1273
- "mutation": "C26060T",
1274
- "count": 5832,
1275
- "proportion": 0.997775876817793,
1276
- "sequenceName": null,
1277
- "mutationFrom": "C",
1278
- "mutationTo": "T",
1279
- "position": 26060
1280
- },
1281
- {
1282
- "mutation": "C26270T",
1283
- "count": 5845,
1284
- "proportion": 0.9993161224140878,
1285
- "sequenceName": null,
1286
- "mutationFrom": "C",
1287
- "mutationTo": "T",
1288
- "position": 26270
1289
- },
1290
- {
1291
- "mutation": "G26529C",
1292
- "count": 5854,
1293
- "proportion": 0.99931717309662,
1294
- "sequenceName": null,
1295
- "mutationFrom": "G",
1296
- "mutationTo": "C",
1297
- "position": 26529
1298
- },
1299
- {
1300
- "mutation": "C26577G",
1301
- "count": 5810,
1302
- "proportion": 0.9970825467650593,
1303
- "sequenceName": null,
1304
- "mutationFrom": "C",
1305
- "mutationTo": "G",
1306
- "position": 26577
1307
- },
1308
- {
1309
- "mutation": "A26610G",
1310
- "count": 5249,
1311
- "proportion": 0.992624810892587,
1312
- "sequenceName": null,
1313
- "mutationFrom": "A",
1314
- "mutationTo": "G",
1315
- "position": 26610
1316
- },
1317
- {
1318
- "mutation": "C26681T",
1319
- "count": 5731,
1320
- "proportion": 0.9996511425082854,
1321
- "sequenceName": null,
1322
- "mutationFrom": "C",
1323
- "mutationTo": "T",
1324
- "position": 26681
1325
- },
1326
- {
1327
- "mutation": "G26709A",
1328
- "count": 5755,
1329
- "proportion": 1.0,
1330
- "sequenceName": null,
1331
- "mutationFrom": "G",
1332
- "mutationTo": "A",
1333
- "position": 26709
1334
- },
1335
- {
1336
- "mutation": "C26833T",
1337
- "count": 5880,
1338
- "proportion": 0.999829960891005,
1339
- "sequenceName": null,
1340
- "mutationFrom": "C",
1341
- "mutationTo": "T",
1342
- "position": 26833
1343
- },
1344
- {
1345
- "mutation": "C26858T",
1346
- "count": 5850,
1347
- "proportion": 0.9998290890446078,
1348
- "sequenceName": null,
1349
- "mutationFrom": "C",
1350
- "mutationTo": "T",
1351
- "position": 26858
1352
- },
1353
- {
1354
- "mutation": "A27259C",
1355
- "count": 5857,
1356
- "proportion": 0.9996586448199352,
1357
- "sequenceName": null,
1358
- "mutationFrom": "A",
1359
- "mutationTo": "C",
1360
- "position": 27259
1361
- },
1362
- {
1363
- "mutation": "G27382C",
1364
- "count": 5857,
1365
- "proportion": 0.998806275579809,
1366
- "sequenceName": null,
1367
- "mutationFrom": "G",
1368
- "mutationTo": "C",
1369
- "position": 27382
1370
- },
1371
- {
1372
- "mutation": "A27383T",
1373
- "count": 5858,
1374
- "proportion": 0.9989768076398363,
1375
- "sequenceName": null,
1376
- "mutationFrom": "A",
1377
- "mutationTo": "T",
1378
- "position": 27383
1379
- },
1380
- {
1381
- "mutation": "T27384C",
1382
- "count": 5850,
1383
- "proportion": 0.997612551159618,
1384
- "sequenceName": null,
1385
- "mutationFrom": "T",
1386
- "mutationTo": "C",
1387
- "position": 27384
1388
- },
1389
- {
1390
- "mutation": "C27476T",
1391
- "count": 417,
1392
- "proportion": 0.07247132429614181,
1393
- "sequenceName": null,
1394
- "mutationFrom": "C",
1395
- "mutationTo": "T",
1396
- "position": 27476
1397
- },
1398
- {
1399
- "mutation": "C27807T",
1400
- "count": 5863,
1401
- "proportion": 0.9998294679399727,
1402
- "sequenceName": null,
1403
- "mutationFrom": "C",
1404
- "mutationTo": "T",
1405
- "position": 27807
1406
- },
1407
- {
1408
- "mutation": "T27810C",
1409
- "count": 5858,
1410
- "proportion": 0.998295841854124,
1411
- "sequenceName": null,
1412
- "mutationFrom": "T",
1413
- "mutationTo": "C",
1414
- "position": 27810
1415
- },
1416
- {
1417
- "mutation": "C28201T",
1418
- "count": 330,
1419
- "proportion": 0.056265984654731455,
1420
- "sequenceName": null,
1421
- "mutationFrom": "C",
1422
- "mutationTo": "T",
1423
- "position": 28201
1424
- },
1425
- {
1426
- "mutation": "A28271T",
1427
- "count": 5863,
1428
- "proportion": 0.9984673024523161,
1429
- "sequenceName": null,
1430
- "mutationFrom": "A",
1431
- "mutationTo": "T",
1432
- "position": 28271
1433
- },
1434
- {
1435
- "mutation": "C28311T",
1436
- "count": 5867,
1437
- "proportion": 0.999488926746167,
1438
- "sequenceName": null,
1439
- "mutationFrom": "C",
1440
- "mutationTo": "T",
1441
- "position": 28311
1442
- },
1443
- {
1444
- "mutation": "G28362-",
1445
- "count": 5271,
1446
- "proportion": 0.9748474200110967,
1447
- "sequenceName": null,
1448
- "mutationFrom": "G",
1449
- "mutationTo": "-",
1450
- "position": 28362
1451
- },
1452
- {
1453
- "mutation": "A28363-",
1454
- "count": 5268,
1455
- "proportion": 0.9771841958820257,
1456
- "sequenceName": null,
1457
- "mutationFrom": "A",
1458
- "mutationTo": "-",
1459
- "position": 28363
1460
- },
1461
- {
1462
- "mutation": "G28364-",
1463
- "count": 5266,
1464
- "proportion": 0.9771757283354983,
1465
- "sequenceName": null,
1466
- "mutationFrom": "G",
1467
- "mutationTo": "-",
1468
- "position": 28364
1469
- },
1470
- {
1471
- "mutation": "A28365-",
1472
- "count": 5265,
1473
- "proportion": 0.9775343483104345,
1474
- "sequenceName": null,
1475
- "mutationFrom": "A",
1476
- "mutationTo": "-",
1477
- "position": 28365
1478
- },
1479
- {
1480
- "mutation": "A28366-",
1481
- "count": 5265,
1482
- "proportion": 0.9775343483104345,
1483
- "sequenceName": null,
1484
- "mutationFrom": "A",
1485
- "mutationTo": "-",
1486
- "position": 28366
1487
- },
1488
- {
1489
- "mutation": "C28367-",
1490
- "count": 5265,
1491
- "proportion": 0.9775343483104345,
1492
- "sequenceName": null,
1493
- "mutationFrom": "C",
1494
- "mutationTo": "-",
1495
- "position": 28367
1496
- },
1497
- {
1498
- "mutation": "G28368-",
1499
- "count": 5265,
1500
- "proportion": 0.9775343483104345,
1501
- "sequenceName": null,
1502
- "mutationFrom": "G",
1503
- "mutationTo": "-",
1504
- "position": 28368
1505
- },
1506
- {
1507
- "mutation": "C28369-",
1508
- "count": 5265,
1509
- "proportion": 0.9775343483104345,
1510
- "sequenceName": null,
1511
- "mutationFrom": "C",
1512
- "mutationTo": "-",
1513
- "position": 28369
1514
- },
1515
- {
1516
- "mutation": "A28370-",
1517
- "count": 5249,
1518
- "proportion": 0.9772854217091789,
1519
- "sequenceName": null,
1520
- "mutationFrom": "A",
1521
- "mutationTo": "-",
1522
- "position": 28370
1523
- },
1524
- {
1525
- "mutation": "G28881A",
1526
- "count": 5880,
1527
- "proportion": 0.9994900560938297,
1528
- "sequenceName": null,
1529
- "mutationFrom": "G",
1530
- "mutationTo": "A",
1531
- "position": 28881
1532
- },
1533
- {
1534
- "mutation": "G28882A",
1535
- "count": 5878,
1536
- "proportion": 0.9991500934897162,
1537
- "sequenceName": null,
1538
- "mutationFrom": "G",
1539
- "mutationTo": "A",
1540
- "position": 28882
1541
- },
1542
- {
1543
- "mutation": "G28883C",
1544
- "count": 5881,
1545
- "proportion": 0.9996600373958865,
1546
- "sequenceName": null,
1547
- "mutationFrom": "G",
1548
- "mutationTo": "C",
1549
- "position": 28883
1550
- },
1551
- {
1552
- "mutation": "C28958A",
1553
- "count": 5884,
1554
- "proportion": 0.9981340118744699,
1555
- "sequenceName": null,
1556
- "mutationFrom": "C",
1557
- "mutationTo": "A",
1558
- "position": 28958
1559
- },
1560
- {
1561
- "mutation": "A29510C",
1562
- "count": 5862,
1563
- "proportion": 1.0,
1564
- "sequenceName": null,
1565
- "mutationFrom": "A",
1566
- "mutationTo": "C",
1567
- "position": 29510
1568
- },
1569
- {
1570
- "mutation": "G29734-",
1571
- "count": 3726,
1572
- "proportion": 0.9517241379310345,
1573
- "sequenceName": null,
1574
- "mutationFrom": "G",
1575
- "mutationTo": "-",
1576
- "position": 29734
1577
- },
1578
- {
1579
- "mutation": "A29735-",
1580
- "count": 3724,
1581
- "proportion": 0.9526733179841391,
1582
- "sequenceName": null,
1583
- "mutationFrom": "A",
1584
- "mutationTo": "-",
1585
- "position": 29735
1586
- },
1587
- {
1588
- "mutation": "G29736-",
1589
- "count": 3724,
1590
- "proportion": 0.9543823680164019,
1591
- "sequenceName": null,
1592
- "mutationFrom": "G",
1593
- "mutationTo": "-",
1594
- "position": 29736
1595
- },
1596
- {
1597
- "mutation": "G29737-",
1598
- "count": 3724,
1599
- "proportion": 0.9546270187131505,
1600
- "sequenceName": null,
1601
- "mutationFrom": "G",
1602
- "mutationTo": "-",
1603
- "position": 29737
1604
- },
1605
- {
1606
- "mutation": "C29738-",
1607
- "count": 3723,
1608
- "proportion": 0.9543706741861061,
1609
- "sequenceName": null,
1610
- "mutationFrom": "C",
1611
- "mutationTo": "-",
1612
- "position": 29738
1613
- },
1614
- {
1615
- "mutation": "C29739-",
1616
- "count": 3723,
1617
- "proportion": 0.9543706741861061,
1618
- "sequenceName": null,
1619
- "mutationFrom": "C",
1620
- "mutationTo": "-",
1621
- "position": 29739
1622
- },
1623
- {
1624
- "mutation": "A29740-",
1625
- "count": 3723,
1626
- "proportion": 0.9543706741861061,
1627
- "sequenceName": null,
1628
- "mutationFrom": "A",
1629
- "mutationTo": "-",
1630
- "position": 29740
1631
- },
1632
- {
1633
- "mutation": "C29741-",
1634
- "count": 3723,
1635
- "proportion": 0.9543706741861061,
1636
- "sequenceName": null,
1637
- "mutationFrom": "C",
1638
- "mutationTo": "-",
1639
- "position": 29741
1640
- },
1641
- {
1642
- "mutation": "G29742-",
1643
- "count": 3723,
1644
- "proportion": 0.9543706741861061,
1645
- "sequenceName": null,
1646
- "mutationFrom": "G",
1647
- "mutationTo": "-",
1648
- "position": 29742
1649
- },
1650
- {
1651
- "mutation": "C29743-",
1652
- "count": 3723,
1653
- "proportion": 0.9543706741861061,
1654
- "sequenceName": null,
1655
- "mutationFrom": "C",
1656
- "mutationTo": "-",
1657
- "position": 29743
1658
- },
1659
- {
1660
- "mutation": "G29744-",
1661
- "count": 3723,
1662
- "proportion": 0.9543706741861061,
1663
- "sequenceName": null,
1664
- "mutationFrom": "G",
1665
- "mutationTo": "-",
1666
- "position": 29744
1667
- },
1668
- {
1669
- "mutation": "G29745-",
1670
- "count": 3723,
1671
- "proportion": 0.9543706741861061,
1672
- "sequenceName": null,
1673
- "mutationFrom": "G",
1674
- "mutationTo": "-",
1675
- "position": 29745
1676
- },
1677
- {
1678
- "mutation": "A29746-",
1679
- "count": 3723,
1680
- "proportion": 0.9543706741861061,
1681
- "sequenceName": null,
1682
- "mutationFrom": "A",
1683
- "mutationTo": "-",
1684
- "position": 29746
1685
- },
1686
- {
1687
- "mutation": "G29747-",
1688
- "count": 3723,
1689
- "proportion": 0.9543706741861061,
1690
- "sequenceName": null,
1691
- "mutationFrom": "G",
1692
- "mutationTo": "-",
1693
- "position": 29747
1694
- },
1695
- {
1696
- "mutation": "T29748-",
1697
- "count": 3723,
1698
- "proportion": 0.9543706741861061,
1699
- "sequenceName": null,
1700
- "mutationFrom": "T",
1701
- "mutationTo": "-",
1702
- "position": 29748
1703
- },
1704
- {
1705
- "mutation": "A29749-",
1706
- "count": 3723,
1707
- "proportion": 0.9543706741861061,
1708
- "sequenceName": null,
1709
- "mutationFrom": "A",
1710
- "mutationTo": "-",
1711
- "position": 29749
1712
- },
1713
- {
1714
- "mutation": "C29750-",
1715
- "count": 3723,
1716
- "proportion": 0.9543706741861061,
1717
- "sequenceName": null,
1718
- "mutationFrom": "C",
1719
- "mutationTo": "-",
1720
- "position": 29750
1721
- },
1722
- {
1723
- "mutation": "G29751-",
1724
- "count": 3723,
1725
- "proportion": 0.9543706741861061,
1726
- "sequenceName": null,
1727
- "mutationFrom": "G",
1728
- "mutationTo": "-",
1729
- "position": 29751
1730
- },
1731
- {
1732
- "mutation": "A29752-",
1733
- "count": 3723,
1734
- "proportion": 0.9543706741861061,
1735
- "sequenceName": null,
1736
- "mutationFrom": "A",
1737
- "mutationTo": "-",
1738
- "position": 29752
1739
- },
1740
- {
1741
- "mutation": "T29753-",
1742
- "count": 3723,
1743
- "proportion": 0.9543706741861061,
1744
- "sequenceName": null,
1745
- "mutationFrom": "T",
1746
- "mutationTo": "-",
1747
- "position": 29753
1748
- },
1749
- {
1750
- "mutation": "C29754-",
1751
- "count": 3723,
1752
- "proportion": 0.9543706741861061,
1753
- "sequenceName": null,
1754
- "mutationFrom": "C",
1755
- "mutationTo": "-",
1756
- "position": 29754
1757
- },
1758
- {
1759
- "mutation": "G29755-",
1760
- "count": 3723,
1761
- "proportion": 0.9543706741861061,
1762
- "sequenceName": null,
1763
- "mutationFrom": "G",
1764
- "mutationTo": "-",
1765
- "position": 29755
1766
- },
1767
- {
1768
- "mutation": "A29756-",
1769
- "count": 3723,
1770
- "proportion": 0.9543706741861061,
1771
- "sequenceName": null,
1772
- "mutationFrom": "A",
1773
- "mutationTo": "-",
1774
- "position": 29756
1775
- },
1776
- {
1777
- "mutation": "G29757-",
1778
- "count": 3723,
1779
- "proportion": 0.9543706741861061,
1780
- "sequenceName": null,
1781
- "mutationFrom": "G",
1782
- "mutationTo": "-",
1783
- "position": 29757
1784
- },
1785
- {
1786
- "mutation": "T29758-",
1787
- "count": 3721,
1788
- "proportion": 0.9538579851320175,
1789
- "sequenceName": null,
1790
- "mutationFrom": "T",
1791
- "mutationTo": "-",
1792
- "position": 29758
1793
- },
1794
- {
1795
- "mutation": "G29759-",
1796
- "count": 3719,
1797
- "proportion": 0.9528567768383295,
1798
- "sequenceName": null,
1799
- "mutationFrom": "G",
1800
- "mutationTo": "-",
1801
- "position": 29759
1802
- },
1803
- {
1804
- "mutation": "C29870A",
1805
- "count": 10,
1806
- "proportion": 0.08928571428571429,
1807
- "sequenceName": null,
1808
- "mutationFrom": "C",
1809
- "mutationTo": "A",
1810
- "position": 29870
1811
- }
1812
- ],
1813
- "info": {
1814
- "dataVersion": "1720033519",
1815
- "requestId": "5e57e1ad-aa1b-49cb-8a2a-c2226ff13493",
1816
- "requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-07-17T14:53:28.677115453",
1817
- "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."
1818
- }
1819
- }