@genspectrum/dashboard-components 0.1.1
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.
- package/LICENSE +661 -0
- package/README.md +109 -0
- package/custom-elements.json +1587 -0
- package/dist/dashboard-components.js +7322 -0
- package/dist/dashboard-components.js.map +1 -0
- package/dist/genspectrum-components.d.ts +298 -0
- package/dist/style.css +2930 -0
- package/package.json +109 -0
- package/src/constants.ts +6 -0
- package/src/index.ts +1 -0
- package/src/lapisApi/ReferenceGenome.ts +30 -0
- package/src/lapisApi/__mockData__/referenceGenome.json +58 -0
- package/src/lapisApi/lapisApi.ts +99 -0
- package/src/lapisApi/lapisTypes.ts +51 -0
- package/src/operator/Dataset.ts +3 -0
- package/src/operator/DivisionOperator.spec.ts +27 -0
- package/src/operator/DivisionOperator.ts +60 -0
- package/src/operator/FetchAggregatedOperator.ts +44 -0
- package/src/operator/FetchInsertionsOperator.ts +24 -0
- package/src/operator/FetchSubstitutionsOrDeletionsOperator.ts +49 -0
- package/src/operator/FillMissingOperator.spec.ts +26 -0
- package/src/operator/FillMissingOperator.ts +30 -0
- package/src/operator/GroupByAndSumOperator.spec.ts +26 -0
- package/src/operator/GroupByAndSumOperator.ts +26 -0
- package/src/operator/GroupByOperator.spec.ts +43 -0
- package/src/operator/GroupByOperator.ts +32 -0
- package/src/operator/MapOperator.spec.ts +13 -0
- package/src/operator/MapOperator.ts +16 -0
- package/src/operator/MockOperator.spec.ts +11 -0
- package/src/operator/MockOperator.ts +12 -0
- package/src/operator/Operator.ts +5 -0
- package/src/operator/SlidingOperator.spec.ts +52 -0
- package/src/operator/SlidingOperator.ts +23 -0
- package/src/operator/SortOperator.spec.ts +13 -0
- package/src/operator/SortOperator.ts +16 -0
- package/src/preact/LapisUrlContext.ts +3 -0
- package/src/preact/ReferenceGenomeContext.ts +5 -0
- package/src/preact/components/SegmentSelector.tsx +62 -0
- package/src/preact/components/chart.stories.tsx +42 -0
- package/src/preact/components/chart.tsx +32 -0
- package/src/preact/components/checkbox-selector.stories.tsx +56 -0
- package/src/preact/components/checkbox-selector.tsx +46 -0
- package/src/preact/components/confidence-interval-selector.tsx +45 -0
- package/src/preact/components/csv-download-button.stories.tsx +25 -0
- package/src/preact/components/csv-download-button.tsx +51 -0
- package/src/preact/components/error-display.stories.tsx +22 -0
- package/src/preact/components/error-display.tsx +5 -0
- package/src/preact/components/headline.stories.tsx +29 -0
- package/src/preact/components/headline.tsx +16 -0
- package/src/preact/components/info.stories.tsx +22 -0
- package/src/preact/components/info.tsx +16 -0
- package/src/preact/components/loading-display.stories.tsx +20 -0
- package/src/preact/components/loading-display.tsx +5 -0
- package/src/preact/components/min-max-percent-slider.css +40 -0
- package/src/preact/components/min-max-range-slider.tsx +95 -0
- package/src/preact/components/mutation-type-selector.tsx +30 -0
- package/src/preact/components/no-data-display.stories.tsx +20 -0
- package/src/preact/components/no-data-display.tsx +5 -0
- package/src/preact/components/percent-intput.tsx +49 -0
- package/src/preact/components/proportion-selector-dropdown.stories.tsx +66 -0
- package/src/preact/components/proportion-selector-dropdown.tsx +33 -0
- package/src/preact/components/proportion-selector.stories.tsx +81 -0
- package/src/preact/components/proportion-selector.tsx +43 -0
- package/src/preact/components/scaling-selector.stories.tsx +25 -0
- package/src/preact/components/scaling-selector.tsx +36 -0
- package/src/preact/components/select.stories.tsx +42 -0
- package/src/preact/components/select.tsx +21 -0
- package/src/preact/components/table.stories.tsx +24 -0
- package/src/preact/components/table.tsx +51 -0
- package/src/preact/components/tabs.stories.tsx +60 -0
- package/src/preact/components/tabs.tsx +49 -0
- package/src/preact/dateRangeSelector/date-range-selector.stories.tsx +32 -0
- package/src/preact/dateRangeSelector/date-range-selector.tsx +228 -0
- package/src/preact/dateRangeSelector/dateConversion.ts +8 -0
- package/src/preact/locationFilter/__mockData__/aggregated.json +775 -0
- package/src/preact/locationFilter/fetchAutocompletionList.spec.ts +36 -0
- package/src/preact/locationFilter/fetchAutocompletionList.ts +43 -0
- package/src/preact/locationFilter/location-filter.stories.tsx +50 -0
- package/src/preact/locationFilter/location-filter.tsx +112 -0
- package/src/preact/mutationComparison/__mockData__/nucleotideMutationsOtherVariant.json +295 -0
- package/src/preact/mutationComparison/__mockData__/nucleotideMutationsSomeVariant.json +304 -0
- package/src/preact/mutationComparison/fetchMutationData.spec.ts +118 -0
- package/src/preact/mutationComparison/getMutationComparisonTableData.spec.ts +125 -0
- package/src/preact/mutationComparison/getMutationComparisonTableData.ts +40 -0
- package/src/preact/mutationComparison/mutation-comparison-table.tsx +43 -0
- package/src/preact/mutationComparison/mutation-comparison-venn.tsx +122 -0
- package/src/preact/mutationComparison/mutation-comparison.stories.tsx +152 -0
- package/src/preact/mutationComparison/mutation-comparison.tsx +179 -0
- package/src/preact/mutationComparison/queryMutationData.ts +53 -0
- package/src/preact/mutationFilter/mutation-filter.stories.tsx +164 -0
- package/src/preact/mutationFilter/mutation-filter.tsx +268 -0
- package/src/preact/mutationFilter/parseAndValidateMutation.ts +54 -0
- package/src/preact/mutationFilter/parseMutation.spec.ts +150 -0
- package/src/preact/mutationFilter/sequenceTypeFromSegment.spec.ts +66 -0
- package/src/preact/mutationFilter/sequenceTypeFromSegment.ts +20 -0
- package/src/preact/mutations/__mockData__/nucleotideInsertions.json +252 -0
- package/src/preact/mutations/__mockData__/nucleotideMutations.json +880 -0
- package/src/preact/mutations/getInsertionsTableData.spec.ts +36 -0
- package/src/preact/mutations/getInsertionsTableData.ts +10 -0
- package/src/preact/mutations/getMutationsGridData.spec.ts +135 -0
- package/src/preact/mutations/getMutationsGridData.ts +92 -0
- package/src/preact/mutations/getMutationsTableData.spec.ts +94 -0
- package/src/preact/mutations/getMutationsTableData.ts +17 -0
- package/src/preact/mutations/mutations-grid.tsx +84 -0
- package/src/preact/mutations/mutations-insertions-table.tsx +33 -0
- package/src/preact/mutations/mutations-table.tsx +47 -0
- package/src/preact/mutations/mutations.stories.tsx +95 -0
- package/src/preact/mutations/mutations.tsx +192 -0
- package/src/preact/mutations/queryMutations.ts +55 -0
- package/src/preact/prevalenceOverTime/__mockData__/denominator.json +1700 -0
- package/src/preact/prevalenceOverTime/__mockData__/denominatorOneVariant.json +608 -0
- package/src/preact/prevalenceOverTime/__mockData__/numeratorEG.json +1560 -0
- package/src/preact/prevalenceOverTime/__mockData__/numeratorJN1.json +592 -0
- package/src/preact/prevalenceOverTime/__mockData__/numeratorOneVariant.json +604 -0
- package/src/preact/prevalenceOverTime/getPrevalenceOverTimeTableData.spec.ts +67 -0
- package/src/preact/prevalenceOverTime/getPrevalenceOverTimeTableData.ts +18 -0
- package/src/preact/prevalenceOverTime/prevalence-over-time-bar-chart.tsx +105 -0
- package/src/preact/prevalenceOverTime/prevalence-over-time-bubble-chart.tsx +86 -0
- package/src/preact/prevalenceOverTime/prevalence-over-time-line-chart.tsx +141 -0
- package/src/preact/prevalenceOverTime/prevalence-over-time-table.tsx +46 -0
- package/src/preact/prevalenceOverTime/prevalence-over-time.stories.tsx +165 -0
- package/src/preact/prevalenceOverTime/prevalence-over-time.tsx +202 -0
- package/src/preact/relativeGrowthAdvantage/__mockData__/denominator.json +376 -0
- package/src/preact/relativeGrowthAdvantage/__mockData__/numerator.json +332 -0
- package/src/preact/relativeGrowthAdvantage/relative-growth-advantage-chart.tsx +138 -0
- package/src/preact/relativeGrowthAdvantage/relative-growth-advantage.stories.tsx +71 -0
- package/src/preact/relativeGrowthAdvantage/relative-growth-advantage.tsx +136 -0
- package/src/preact/shared/charts/LogitScale.ts +48 -0
- package/src/preact/shared/charts/colors.ts +26 -0
- package/src/preact/shared/charts/confideceInterval.ts +29 -0
- package/src/preact/shared/charts/getYAxisScale.ts +16 -0
- package/src/preact/shared/charts/scales.ts +16 -0
- package/src/preact/shared/icons/DeleteIcon.tsx +17 -0
- package/src/preact/shared/sort/sortInsertions.spec.ts +47 -0
- package/src/preact/shared/sort/sortInsertions.ts +21 -0
- package/src/preact/shared/sort/sortMutationPositions.spec.ts +31 -0
- package/src/preact/shared/sort/sortMutationPositions.ts +14 -0
- package/src/preact/shared/sort/sortSubstitutionsAndDeletions.spec.ts +47 -0
- package/src/preact/shared/sort/sortSubstitutionsAndDeletions.ts +17 -0
- package/src/preact/shared/table/formatProportion.ts +3 -0
- package/src/preact/textInput/__mockData__/aggregated_hosts.json +24 -0
- package/src/preact/textInput/fetchAutocompleteList.ts +9 -0
- package/src/preact/textInput/text-input.stories.tsx +49 -0
- package/src/preact/textInput/text-input.tsx +73 -0
- package/src/preact/useQuery.ts +27 -0
- package/src/query/queryInsertions.ts +14 -0
- package/src/query/queryPrevalenceOverTime.ts +126 -0
- package/src/query/queryRelativeGrowthAdvantage.ts +131 -0
- package/src/query/querySubstitutionsOrDeletions.ts +19 -0
- package/src/styles/tailwind.css +3 -0
- package/src/styles/tailwind.d.ts +3 -0
- package/src/types.ts +23 -0
- package/src/utils/mutations.spec.ts +64 -0
- package/src/utils/mutations.ts +165 -0
- package/src/utils/temporal.spec.ts +97 -0
- package/src/utils/temporal.ts +348 -0
- package/src/utils/test-utils.ts +5 -0
- package/src/utils/type-utils.ts +15 -0
- package/src/utils/utils.spec.ts +16 -0
- package/src/utils/utils.ts +38 -0
- package/src/web-components/PreactLitAdapter.tsx +62 -0
- package/src/web-components/PreactLitAdapterWithGridJsStyles.tsx +12 -0
- package/src/web-components/app.ts +51 -0
- package/src/web-components/display/index.ts +4 -0
- package/src/web-components/display/mutation-comparison-component.stories.ts +138 -0
- package/src/web-components/display/mutation-comparison-component.tsx +31 -0
- package/src/web-components/display/mutations-component.stories.ts +107 -0
- package/src/web-components/display/mutations-component.tsx +27 -0
- package/src/web-components/display/prevalence-over-time-component.stories.ts +205 -0
- package/src/web-components/display/prevalence-over-time-component.tsx +46 -0
- package/src/web-components/display/relative-growth-advantage-component.stories.ts +89 -0
- package/src/web-components/display/relative-growth-advantage-component.tsx +37 -0
- package/src/web-components/index.ts +3 -0
- package/src/web-components/input/date-range-selector-component.stories.ts +53 -0
- package/src/web-components/input/date-range-selector-component.tsx +33 -0
- package/src/web-components/input/index.ts +4 -0
- package/src/web-components/input/location-filter-component.stories.ts +184 -0
- package/src/web-components/input/location-filter-component.tsx +68 -0
- package/src/web-components/input/location-filter.mdx +25 -0
- package/src/web-components/input/mutation-filter-component.stories.ts +97 -0
- package/src/web-components/input/mutation-filter-component.tsx +27 -0
- package/src/web-components/input/text-input-component.stories.ts +92 -0
- package/src/web-components/input/text-input-component.tsx +30 -0
- package/src/web-components/lapis-context.ts +3 -0
- package/src/web-components/reference-genome-context.ts +5 -0
- package/src/web-components/withinShadowRoot.story.ts +34 -0
|
@@ -0,0 +1,880 @@
|
|
|
1
|
+
{
|
|
2
|
+
"info": {
|
|
3
|
+
"dataVersion": 1709685650
|
|
4
|
+
},
|
|
5
|
+
"data": [
|
|
6
|
+
{
|
|
7
|
+
"mutation": "C29400T",
|
|
8
|
+
"proportion": 3.0892801977139327e-4,
|
|
9
|
+
"count": 5,
|
|
10
|
+
"sequenceName": null,
|
|
11
|
+
"mutationFrom": "C",
|
|
12
|
+
"mutationTo": "T",
|
|
13
|
+
"position": 29400
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"mutation": "G210T",
|
|
17
|
+
"proportion": 0.014548332115899683,
|
|
18
|
+
"count": 239,
|
|
19
|
+
"sequenceName": null,
|
|
20
|
+
"mutationFrom": "G",
|
|
21
|
+
"mutationTo": "T",
|
|
22
|
+
"position": 210
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"mutation": "C241T",
|
|
26
|
+
"proportion": 0.9940932894897089,
|
|
27
|
+
"count": 16325,
|
|
28
|
+
"sequenceName": null,
|
|
29
|
+
"mutationFrom": "C",
|
|
30
|
+
"mutationTo": "T",
|
|
31
|
+
"position": 241
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"mutation": "C3037T",
|
|
35
|
+
"proportion": 0.9993348249380177,
|
|
36
|
+
"count": 16526,
|
|
37
|
+
"sequenceName": null,
|
|
38
|
+
"mutationFrom": "C",
|
|
39
|
+
"mutationTo": "T",
|
|
40
|
+
"position": 3037
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"mutation": "C12876T",
|
|
44
|
+
"proportion": 1.8133462282398453e-4,
|
|
45
|
+
"count": 3,
|
|
46
|
+
"sequenceName": null,
|
|
47
|
+
"mutationFrom": "C",
|
|
48
|
+
"mutationTo": "T",
|
|
49
|
+
"position": 12876
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"mutation": "G4181T",
|
|
53
|
+
"proportion": 4.8443744701465424e-4,
|
|
54
|
+
"count": 8,
|
|
55
|
+
"sequenceName": null,
|
|
56
|
+
"mutationFrom": "G",
|
|
57
|
+
"mutationTo": "T",
|
|
58
|
+
"position": 4181
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"mutation": "C15495T",
|
|
62
|
+
"proportion": 6.0240963855421684e-5,
|
|
63
|
+
"count": 1,
|
|
64
|
+
"sequenceName": null,
|
|
65
|
+
"mutationFrom": "C",
|
|
66
|
+
"mutationTo": "T",
|
|
67
|
+
"position": 15495
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"mutation": "C6402T",
|
|
71
|
+
"proportion": 0.005873448380260369,
|
|
72
|
+
"count": 97,
|
|
73
|
+
"sequenceName": null,
|
|
74
|
+
"mutationFrom": "C",
|
|
75
|
+
"mutationTo": "T",
|
|
76
|
+
"position": 6402
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"mutation": "C18664T",
|
|
80
|
+
"proportion": 1.2061998673180146e-4,
|
|
81
|
+
"count": 2,
|
|
82
|
+
"sequenceName": null,
|
|
83
|
+
"mutationFrom": "C",
|
|
84
|
+
"mutationTo": "T",
|
|
85
|
+
"position": 18664
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"mutation": "C7124T",
|
|
89
|
+
"proportion": 4.30530782950981e-4,
|
|
90
|
+
"count": 7,
|
|
91
|
+
"sequenceName": null,
|
|
92
|
+
"mutationFrom": "C",
|
|
93
|
+
"mutationTo": "T",
|
|
94
|
+
"position": 7124
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"mutation": "T8654C",
|
|
98
|
+
"proportion": 1.2232415902140674e-4,
|
|
99
|
+
"count": 2,
|
|
100
|
+
"sequenceName": null,
|
|
101
|
+
"mutationFrom": "T",
|
|
102
|
+
"mutationTo": "C",
|
|
103
|
+
"position": 8654
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"mutation": "C8986T",
|
|
107
|
+
"proportion": 7.258210851025222e-4,
|
|
108
|
+
"count": 12,
|
|
109
|
+
"sequenceName": null,
|
|
110
|
+
"mutationFrom": "C",
|
|
111
|
+
"mutationTo": "T",
|
|
112
|
+
"position": 8986
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"mutation": "G9053T",
|
|
116
|
+
"proportion": 4.836174585902551e-4,
|
|
117
|
+
"count": 8,
|
|
118
|
+
"sequenceName": null,
|
|
119
|
+
"mutationFrom": "G",
|
|
120
|
+
"mutationTo": "T",
|
|
121
|
+
"position": 9053
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"mutation": "A28030G",
|
|
125
|
+
"proportion": 3.661662394727206e-4,
|
|
126
|
+
"count": 6,
|
|
127
|
+
"sequenceName": null,
|
|
128
|
+
"mutationFrom": "A",
|
|
129
|
+
"mutationTo": "G",
|
|
130
|
+
"position": 28030
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"mutation": "C10029T",
|
|
134
|
+
"proportion": 1.2097749818533752e-4,
|
|
135
|
+
"count": 2,
|
|
136
|
+
"sequenceName": null,
|
|
137
|
+
"mutationFrom": "C",
|
|
138
|
+
"mutationTo": "T",
|
|
139
|
+
"position": 10029
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"mutation": "A11201G",
|
|
143
|
+
"proportion": 1.8129079042784627e-4,
|
|
144
|
+
"count": 3,
|
|
145
|
+
"sequenceName": null,
|
|
146
|
+
"mutationFrom": "A",
|
|
147
|
+
"mutationTo": "G",
|
|
148
|
+
"position": 11201
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"mutation": "A11332G",
|
|
152
|
+
"proportion": 1.8144429660094352e-4,
|
|
153
|
+
"count": 3,
|
|
154
|
+
"sequenceName": null,
|
|
155
|
+
"mutationFrom": "A",
|
|
156
|
+
"mutationTo": "G",
|
|
157
|
+
"position": 11332
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"mutation": "C14408T",
|
|
161
|
+
"proportion": 0.9990330573517858,
|
|
162
|
+
"count": 16531,
|
|
163
|
+
"sequenceName": null,
|
|
164
|
+
"mutationFrom": "C",
|
|
165
|
+
"mutationTo": "T",
|
|
166
|
+
"position": 14408
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"mutation": "G15451A",
|
|
170
|
+
"proportion": 9.048681908668637e-4,
|
|
171
|
+
"count": 15,
|
|
172
|
+
"sequenceName": null,
|
|
173
|
+
"mutationFrom": "G",
|
|
174
|
+
"mutationTo": "A",
|
|
175
|
+
"position": 15451
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"mutation": "C16466T",
|
|
179
|
+
"proportion": 3.6175087423127937e-4,
|
|
180
|
+
"count": 6,
|
|
181
|
+
"sequenceName": null,
|
|
182
|
+
"mutationFrom": "C",
|
|
183
|
+
"mutationTo": "T",
|
|
184
|
+
"position": 16466
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"mutation": "C21618G",
|
|
188
|
+
"proportion": 3.059975520195838e-4,
|
|
189
|
+
"count": 5,
|
|
190
|
+
"sequenceName": null,
|
|
191
|
+
"mutationFrom": "C",
|
|
192
|
+
"mutationTo": "G",
|
|
193
|
+
"position": 21618
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"mutation": "T22917G",
|
|
197
|
+
"proportion": 6.888346170705743e-4,
|
|
198
|
+
"count": 11,
|
|
199
|
+
"sequenceName": null,
|
|
200
|
+
"mutationFrom": "T",
|
|
201
|
+
"mutationTo": "G",
|
|
202
|
+
"position": 22917
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"mutation": "C22995A",
|
|
206
|
+
"proportion": 3.73366521468575e-4,
|
|
207
|
+
"count": 6,
|
|
208
|
+
"sequenceName": null,
|
|
209
|
+
"mutationFrom": "C",
|
|
210
|
+
"mutationTo": "A",
|
|
211
|
+
"position": 22995
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"mutation": "A23403G",
|
|
215
|
+
"proportion": 0.9993967909277356,
|
|
216
|
+
"count": 16568,
|
|
217
|
+
"sequenceName": null,
|
|
218
|
+
"mutationFrom": "A",
|
|
219
|
+
"mutationTo": "G",
|
|
220
|
+
"position": 23403
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"mutation": "C23604G",
|
|
224
|
+
"proportion": 0.001029616619223548,
|
|
225
|
+
"count": 17,
|
|
226
|
+
"sequenceName": null,
|
|
227
|
+
"mutationFrom": "C",
|
|
228
|
+
"mutationTo": "G",
|
|
229
|
+
"position": 23604
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"mutation": "A25983T",
|
|
233
|
+
"proportion": 6.0379181258302136e-5,
|
|
234
|
+
"count": 1,
|
|
235
|
+
"sequenceName": null,
|
|
236
|
+
"mutationFrom": "A",
|
|
237
|
+
"mutationTo": "T",
|
|
238
|
+
"position": 25983
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"mutation": "A17725C",
|
|
242
|
+
"proportion": 2.409058058299205e-4,
|
|
243
|
+
"count": 4,
|
|
244
|
+
"sequenceName": null,
|
|
245
|
+
"mutationFrom": "A",
|
|
246
|
+
"mutationTo": "C",
|
|
247
|
+
"position": 17725
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"mutation": "G24410A",
|
|
251
|
+
"proportion": 6.027727546714888e-4,
|
|
252
|
+
"count": 10,
|
|
253
|
+
"sequenceName": null,
|
|
254
|
+
"mutationFrom": "G",
|
|
255
|
+
"mutationTo": "A",
|
|
256
|
+
"position": 24410
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"mutation": "C25469T",
|
|
260
|
+
"proportion": 0.001087087812537746,
|
|
261
|
+
"count": 18,
|
|
262
|
+
"sequenceName": null,
|
|
263
|
+
"mutationFrom": "C",
|
|
264
|
+
"mutationTo": "T",
|
|
265
|
+
"position": 25469
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"mutation": "C14214T",
|
|
269
|
+
"proportion": 2.414875633904854e-4,
|
|
270
|
+
"count": 4,
|
|
271
|
+
"sequenceName": null,
|
|
272
|
+
"mutationFrom": "C",
|
|
273
|
+
"mutationTo": "T",
|
|
274
|
+
"position": 14214
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"mutation": "T26767C",
|
|
278
|
+
"proportion": 0.0013264198721813579,
|
|
279
|
+
"count": 22,
|
|
280
|
+
"sequenceName": null,
|
|
281
|
+
"mutationFrom": "T",
|
|
282
|
+
"mutationTo": "C",
|
|
283
|
+
"position": 26767
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"mutation": "C11031T",
|
|
287
|
+
"proportion": 6.028817748839453e-5,
|
|
288
|
+
"count": 1,
|
|
289
|
+
"sequenceName": null,
|
|
290
|
+
"mutationFrom": "C",
|
|
291
|
+
"mutationTo": "T",
|
|
292
|
+
"position": 11031
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"mutation": "T27638C",
|
|
296
|
+
"proportion": 3.1474254060178774e-4,
|
|
297
|
+
"count": 5,
|
|
298
|
+
"sequenceName": null,
|
|
299
|
+
"mutationFrom": "T",
|
|
300
|
+
"mutationTo": "C",
|
|
301
|
+
"position": 27638
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"mutation": "C27752T",
|
|
305
|
+
"proportion": 4.990953896063385e-4,
|
|
306
|
+
"count": 8,
|
|
307
|
+
"sequenceName": null,
|
|
308
|
+
"mutationFrom": "C",
|
|
309
|
+
"mutationTo": "T",
|
|
310
|
+
"position": 27752
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"mutation": "A13222G",
|
|
314
|
+
"proportion": 3.0389594602808e-4,
|
|
315
|
+
"count": 5,
|
|
316
|
+
"sequenceName": null,
|
|
317
|
+
"mutationFrom": "A",
|
|
318
|
+
"mutationTo": "G",
|
|
319
|
+
"position": 13222
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"mutation": "C27874T",
|
|
323
|
+
"proportion": 4.867956675185591e-4,
|
|
324
|
+
"count": 8,
|
|
325
|
+
"sequenceName": null,
|
|
326
|
+
"mutationFrom": "C",
|
|
327
|
+
"mutationTo": "T",
|
|
328
|
+
"position": 27874
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"mutation": "T8269C",
|
|
332
|
+
"proportion": 6.030635628995296e-5,
|
|
333
|
+
"count": 1,
|
|
334
|
+
"sequenceName": null,
|
|
335
|
+
"mutationFrom": "T",
|
|
336
|
+
"mutationTo": "C",
|
|
337
|
+
"position": 8269
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"mutation": "A28461G",
|
|
341
|
+
"proportion": 6.024822267743102e-4,
|
|
342
|
+
"count": 10,
|
|
343
|
+
"sequenceName": null,
|
|
344
|
+
"mutationFrom": "A",
|
|
345
|
+
"mutationTo": "G",
|
|
346
|
+
"position": 28461
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"mutation": "G28881T",
|
|
350
|
+
"proportion": 5.452893062708271e-4,
|
|
351
|
+
"count": 9,
|
|
352
|
+
"sequenceName": null,
|
|
353
|
+
"mutationFrom": "G",
|
|
354
|
+
"mutationTo": "T",
|
|
355
|
+
"position": 28881
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"mutation": "T727A",
|
|
359
|
+
"proportion": 6.041565973900435e-5,
|
|
360
|
+
"count": 1,
|
|
361
|
+
"sequenceName": null,
|
|
362
|
+
"mutationFrom": "T",
|
|
363
|
+
"mutationTo": "A",
|
|
364
|
+
"position": 727
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"mutation": "G28916T",
|
|
368
|
+
"proportion": 6.049240820277055e-5,
|
|
369
|
+
"count": 1,
|
|
370
|
+
"sequenceName": null,
|
|
371
|
+
"mutationFrom": "G",
|
|
372
|
+
"mutationTo": "T",
|
|
373
|
+
"position": 28916
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"mutation": "G29402T",
|
|
377
|
+
"proportion": 8.031136096867857e-4,
|
|
378
|
+
"count": 13,
|
|
379
|
+
"sequenceName": null,
|
|
380
|
+
"mutationFrom": "G",
|
|
381
|
+
"mutationTo": "T",
|
|
382
|
+
"position": 29402
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"mutation": "G29742T",
|
|
386
|
+
"proportion": 0.0022132287846212215,
|
|
387
|
+
"count": 35,
|
|
388
|
+
"sequenceName": null,
|
|
389
|
+
"mutationFrom": "G",
|
|
390
|
+
"mutationTo": "T",
|
|
391
|
+
"position": 29742
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"mutation": "A22029-",
|
|
395
|
+
"proportion": 3.027550711474417e-4,
|
|
396
|
+
"count": 5,
|
|
397
|
+
"sequenceName": null,
|
|
398
|
+
"mutationFrom": "A",
|
|
399
|
+
"mutationTo": "-",
|
|
400
|
+
"position": 22029
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"mutation": "G22030-",
|
|
404
|
+
"proportion": 3.026817603971185e-4,
|
|
405
|
+
"count": 5,
|
|
406
|
+
"sequenceName": null,
|
|
407
|
+
"mutationFrom": "G",
|
|
408
|
+
"mutationTo": "-",
|
|
409
|
+
"position": 22030
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"mutation": "G160A",
|
|
413
|
+
"proportion": 6.093845216331505e-5,
|
|
414
|
+
"count": 1,
|
|
415
|
+
"sequenceName": null,
|
|
416
|
+
"mutationFrom": "G",
|
|
417
|
+
"mutationTo": "A",
|
|
418
|
+
"position": 160
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"mutation": "T22031-",
|
|
422
|
+
"proportion": 3.027550711474417e-4,
|
|
423
|
+
"count": 5,
|
|
424
|
+
"sequenceName": null,
|
|
425
|
+
"mutationFrom": "T",
|
|
426
|
+
"mutationTo": "-",
|
|
427
|
+
"position": 22031
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"mutation": "T22032-",
|
|
431
|
+
"proportion": 3.0281007751937984e-4,
|
|
432
|
+
"count": 5,
|
|
433
|
+
"sequenceName": null,
|
|
434
|
+
"mutationFrom": "T",
|
|
435
|
+
"mutationTo": "-",
|
|
436
|
+
"position": 22032
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"mutation": "T20372C",
|
|
440
|
+
"proportion": 6.239860227130913e-5,
|
|
441
|
+
"count": 1,
|
|
442
|
+
"sequenceName": null,
|
|
443
|
+
"mutationFrom": "T",
|
|
444
|
+
"mutationTo": "C",
|
|
445
|
+
"position": 20372
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"mutation": "C22033-",
|
|
449
|
+
"proportion": 3.0286510388273063e-4,
|
|
450
|
+
"count": 5,
|
|
451
|
+
"sequenceName": null,
|
|
452
|
+
"mutationFrom": "C",
|
|
453
|
+
"mutationTo": "-",
|
|
454
|
+
"position": 22033
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"mutation": "G11048T",
|
|
458
|
+
"proportion": 6.028090903610827e-5,
|
|
459
|
+
"count": 1,
|
|
460
|
+
"sequenceName": null,
|
|
461
|
+
"mutationFrom": "G",
|
|
462
|
+
"mutationTo": "T",
|
|
463
|
+
"position": 11048
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"mutation": "A22034-",
|
|
467
|
+
"proportion": 3.0315891590371673e-4,
|
|
468
|
+
"count": 5,
|
|
469
|
+
"sequenceName": null,
|
|
470
|
+
"mutationFrom": "A",
|
|
471
|
+
"mutationTo": "-",
|
|
472
|
+
"position": 22034
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"mutation": "T17033C",
|
|
476
|
+
"proportion": 3.618599601954044e-4,
|
|
477
|
+
"count": 6,
|
|
478
|
+
"sequenceName": null,
|
|
479
|
+
"mutationFrom": "T",
|
|
480
|
+
"mutationTo": "C",
|
|
481
|
+
"position": 17033
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"mutation": "G28248-",
|
|
485
|
+
"proportion": 0.001267886252490491,
|
|
486
|
+
"count": 21,
|
|
487
|
+
"sequenceName": null,
|
|
488
|
+
"mutationFrom": "G",
|
|
489
|
+
"mutationTo": "-",
|
|
490
|
+
"position": 28248
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"mutation": "G21839T",
|
|
494
|
+
"proportion": 5.44464609800363e-4,
|
|
495
|
+
"count": 9,
|
|
496
|
+
"sequenceName": null,
|
|
497
|
+
"mutationFrom": "G",
|
|
498
|
+
"mutationTo": "T",
|
|
499
|
+
"position": 21839
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"mutation": "A28249-",
|
|
503
|
+
"proportion": 0.001267886252490491,
|
|
504
|
+
"count": 21,
|
|
505
|
+
"sequenceName": null,
|
|
506
|
+
"mutationFrom": "A",
|
|
507
|
+
"mutationTo": "-",
|
|
508
|
+
"position": 28249
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"mutation": "T28250-",
|
|
512
|
+
"proportion": 0.001267733172351343,
|
|
513
|
+
"count": 21,
|
|
514
|
+
"sequenceName": null,
|
|
515
|
+
"mutationFrom": "T",
|
|
516
|
+
"mutationTo": "-",
|
|
517
|
+
"position": 28250
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"mutation": "C27864A",
|
|
521
|
+
"proportion": 0.004928806133625411,
|
|
522
|
+
"count": 81,
|
|
523
|
+
"sequenceName": null,
|
|
524
|
+
"mutationFrom": "C",
|
|
525
|
+
"mutationTo": "A",
|
|
526
|
+
"position": 27864
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"mutation": "T28251-",
|
|
530
|
+
"proportion": 9.054690329590728e-4,
|
|
531
|
+
"count": 15,
|
|
532
|
+
"sequenceName": null,
|
|
533
|
+
"mutationFrom": "T",
|
|
534
|
+
"mutationTo": "-",
|
|
535
|
+
"position": 28251
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"mutation": "T28252-",
|
|
539
|
+
"proportion": 0.0019315506730246876,
|
|
540
|
+
"count": 32,
|
|
541
|
+
"sequenceName": null,
|
|
542
|
+
"mutationFrom": "T",
|
|
543
|
+
"mutationTo": "-",
|
|
544
|
+
"position": 28252
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"mutation": "C28253-",
|
|
548
|
+
"proportion": 0.001509115054931788,
|
|
549
|
+
"count": 25,
|
|
550
|
+
"sequenceName": null,
|
|
551
|
+
"mutationFrom": "C",
|
|
552
|
+
"mutationTo": "-",
|
|
553
|
+
"position": 28253
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"mutation": "A28271-",
|
|
557
|
+
"proportion": 0.9529079060617238,
|
|
558
|
+
"count": 15500,
|
|
559
|
+
"sequenceName": null,
|
|
560
|
+
"mutationFrom": "A",
|
|
561
|
+
"mutationTo": "-",
|
|
562
|
+
"position": 28271
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"mutation": "C2790T",
|
|
566
|
+
"proportion": 1.825372680255552e-4,
|
|
567
|
+
"count": 3,
|
|
568
|
+
"sequenceName": null,
|
|
569
|
+
"mutationFrom": "C",
|
|
570
|
+
"mutationTo": "T",
|
|
571
|
+
"position": 2790
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
"mutation": "T26593C",
|
|
575
|
+
"proportion": 5.483792347063124e-4,
|
|
576
|
+
"count": 9,
|
|
577
|
+
"sequenceName": null,
|
|
578
|
+
"mutationFrom": "T",
|
|
579
|
+
"mutationTo": "C",
|
|
580
|
+
"position": 26593
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"mutation": "A15788G",
|
|
584
|
+
"proportion": 6.02918123718799e-5,
|
|
585
|
+
"count": 1,
|
|
586
|
+
"sequenceName": null,
|
|
587
|
+
"mutationFrom": "A",
|
|
588
|
+
"mutationTo": "G",
|
|
589
|
+
"position": 15788
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"mutation": "C3927T",
|
|
593
|
+
"proportion": 1.8334046324023712e-4,
|
|
594
|
+
"count": 3,
|
|
595
|
+
"sequenceName": null,
|
|
596
|
+
"mutationFrom": "C",
|
|
597
|
+
"mutationTo": "T",
|
|
598
|
+
"position": 3927
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"mutation": "G4184A",
|
|
602
|
+
"proportion": 1.2110936175366356e-4,
|
|
603
|
+
"count": 2,
|
|
604
|
+
"sequenceName": null,
|
|
605
|
+
"mutationFrom": "G",
|
|
606
|
+
"mutationTo": "A",
|
|
607
|
+
"position": 4184
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"mutation": "C632T",
|
|
611
|
+
"proportion": 1.2178784557301182e-4,
|
|
612
|
+
"count": 2,
|
|
613
|
+
"sequenceName": null,
|
|
614
|
+
"mutationFrom": "C",
|
|
615
|
+
"mutationTo": "T",
|
|
616
|
+
"position": 632
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"mutation": "C4321T",
|
|
620
|
+
"proportion": 4.8306261699172754e-4,
|
|
621
|
+
"count": 8,
|
|
622
|
+
"sequenceName": null,
|
|
623
|
+
"mutationFrom": "C",
|
|
624
|
+
"mutationTo": "T",
|
|
625
|
+
"position": 4321
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"mutation": "C25308T",
|
|
629
|
+
"proportion": 6.020469596628537e-5,
|
|
630
|
+
"count": 1,
|
|
631
|
+
"sequenceName": null,
|
|
632
|
+
"mutationFrom": "C",
|
|
633
|
+
"mutationTo": "T",
|
|
634
|
+
"position": 25308
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"mutation": "G1280A",
|
|
638
|
+
"proportion": 4.216105523098235e-4,
|
|
639
|
+
"count": 7,
|
|
640
|
+
"sequenceName": null,
|
|
641
|
+
"mutationFrom": "G",
|
|
642
|
+
"mutationTo": "A",
|
|
643
|
+
"position": 1280
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
"mutation": "C4586T",
|
|
647
|
+
"proportion": 0.0012117540139351712,
|
|
648
|
+
"count": 20,
|
|
649
|
+
"sequenceName": null,
|
|
650
|
+
"mutationFrom": "C",
|
|
651
|
+
"mutationTo": "T",
|
|
652
|
+
"position": 4586
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"mutation": "T27811G",
|
|
656
|
+
"proportion": 1.81422351233672e-4,
|
|
657
|
+
"count": 3,
|
|
658
|
+
"sequenceName": null,
|
|
659
|
+
"mutationFrom": "T",
|
|
660
|
+
"mutationTo": "G",
|
|
661
|
+
"position": 27811
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
"mutation": "C5183T",
|
|
665
|
+
"proportion": 7.391438250692947e-4,
|
|
666
|
+
"count": 12,
|
|
667
|
+
"sequenceName": null,
|
|
668
|
+
"mutationFrom": "C",
|
|
669
|
+
"mutationTo": "T",
|
|
670
|
+
"position": 5183
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"mutation": "C7006T",
|
|
674
|
+
"proportion": 9.975684269592868e-4,
|
|
675
|
+
"count": 16,
|
|
676
|
+
"sequenceName": null,
|
|
677
|
+
"mutationFrom": "C",
|
|
678
|
+
"mutationTo": "T",
|
|
679
|
+
"position": 7006
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"mutation": "T28110C",
|
|
683
|
+
"proportion": 6.031363088057901e-5,
|
|
684
|
+
"count": 1,
|
|
685
|
+
"sequenceName": null,
|
|
686
|
+
"mutationFrom": "T",
|
|
687
|
+
"mutationTo": "C",
|
|
688
|
+
"position": 28110
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"mutation": "T25210G",
|
|
692
|
+
"proportion": 1.8167504390480228e-4,
|
|
693
|
+
"count": 3,
|
|
694
|
+
"sequenceName": null,
|
|
695
|
+
"mutationFrom": "T",
|
|
696
|
+
"mutationTo": "G",
|
|
697
|
+
"position": 25210
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"mutation": "C9344T",
|
|
701
|
+
"proportion": 0.00396124078249741,
|
|
702
|
+
"count": 65,
|
|
703
|
+
"sequenceName": null,
|
|
704
|
+
"mutationFrom": "C",
|
|
705
|
+
"mutationTo": "T",
|
|
706
|
+
"position": 9344
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"mutation": "C9534T",
|
|
710
|
+
"proportion": 1.2162490878131841e-4,
|
|
711
|
+
"count": 2,
|
|
712
|
+
"sequenceName": null,
|
|
713
|
+
"mutationFrom": "C",
|
|
714
|
+
"mutationTo": "T",
|
|
715
|
+
"position": 9534
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"mutation": "A7219G",
|
|
719
|
+
"proportion": 0.0011079650375477041,
|
|
720
|
+
"count": 18,
|
|
721
|
+
"sequenceName": null,
|
|
722
|
+
"mutationFrom": "A",
|
|
723
|
+
"mutationTo": "G",
|
|
724
|
+
"position": 7219
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"mutation": "C9866T",
|
|
728
|
+
"proportion": 1.2111669593653485e-4,
|
|
729
|
+
"count": 2,
|
|
730
|
+
"sequenceName": null,
|
|
731
|
+
"mutationFrom": "C",
|
|
732
|
+
"mutationTo": "T",
|
|
733
|
+
"position": 9866
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"mutation": "C10078T",
|
|
737
|
+
"proportion": 4.226287508301636e-4,
|
|
738
|
+
"count": 7,
|
|
739
|
+
"sequenceName": null,
|
|
740
|
+
"mutationFrom": "C",
|
|
741
|
+
"mutationTo": "T",
|
|
742
|
+
"position": 10078
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"mutation": "C10198T",
|
|
746
|
+
"proportion": 7.24812756704518e-4,
|
|
747
|
+
"count": 12,
|
|
748
|
+
"sequenceName": null,
|
|
749
|
+
"mutationFrom": "C",
|
|
750
|
+
"mutationTo": "T",
|
|
751
|
+
"position": 10198
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
"mutation": "T26488G",
|
|
755
|
+
"proportion": 6.103515625e-5,
|
|
756
|
+
"count": 1,
|
|
757
|
+
"sequenceName": null,
|
|
758
|
+
"mutationFrom": "T",
|
|
759
|
+
"mutationTo": "G",
|
|
760
|
+
"position": 26488
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"mutation": "C11750T",
|
|
764
|
+
"proportion": 0.05428190198932557,
|
|
765
|
+
"count": 895,
|
|
766
|
+
"sequenceName": null,
|
|
767
|
+
"mutationFrom": "C",
|
|
768
|
+
"mutationTo": "T",
|
|
769
|
+
"position": 11750
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"mutation": "A24568C",
|
|
773
|
+
"proportion": 6.03974149906384e-5,
|
|
774
|
+
"count": 1,
|
|
775
|
+
"sequenceName": null,
|
|
776
|
+
"mutationFrom": "A",
|
|
777
|
+
"mutationTo": "C",
|
|
778
|
+
"position": 24568
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"mutation": "G29711A",
|
|
782
|
+
"proportion": 3.6458649814668533e-4,
|
|
783
|
+
"count": 6,
|
|
784
|
+
"sequenceName": null,
|
|
785
|
+
"mutationFrom": "G",
|
|
786
|
+
"mutationTo": "A",
|
|
787
|
+
"position": 29711
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
"mutation": "C12880T",
|
|
791
|
+
"proportion": 0.004594088133953938,
|
|
792
|
+
"count": 76,
|
|
793
|
+
"sequenceName": null,
|
|
794
|
+
"mutationFrom": "C",
|
|
795
|
+
"mutationTo": "T",
|
|
796
|
+
"position": 12880
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
"mutation": "C15714T",
|
|
800
|
+
"proportion": 6.02918123718799e-4,
|
|
801
|
+
"count": 10,
|
|
802
|
+
"sequenceName": null,
|
|
803
|
+
"mutationFrom": "C",
|
|
804
|
+
"mutationTo": "T",
|
|
805
|
+
"position": 15714
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
"mutation": "C17410T",
|
|
809
|
+
"proportion": 0.005659922928709056,
|
|
810
|
+
"count": 94,
|
|
811
|
+
"sequenceName": null,
|
|
812
|
+
"mutationFrom": "C",
|
|
813
|
+
"mutationTo": "T",
|
|
814
|
+
"position": 17410
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"mutation": "G18583A",
|
|
818
|
+
"proportion": 1.2113136696747623e-4,
|
|
819
|
+
"count": 2,
|
|
820
|
+
"sequenceName": null,
|
|
821
|
+
"mutationFrom": "G",
|
|
822
|
+
"mutationTo": "A",
|
|
823
|
+
"position": 18583
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"mutation": "C18657T",
|
|
827
|
+
"proportion": 0.00741812918400579,
|
|
828
|
+
"count": 123,
|
|
829
|
+
"sequenceName": null,
|
|
830
|
+
"mutationFrom": "C",
|
|
831
|
+
"mutationTo": "T",
|
|
832
|
+
"position": 18657
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
"mutation": "C19955T",
|
|
836
|
+
"proportion": 5.600149337315662e-4,
|
|
837
|
+
"count": 9,
|
|
838
|
+
"sequenceName": null,
|
|
839
|
+
"mutationFrom": "C",
|
|
840
|
+
"mutationTo": "T",
|
|
841
|
+
"position": 19955
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"mutation": "A20055G",
|
|
845
|
+
"proportion": 2.4775472282440383e-4,
|
|
846
|
+
"count": 4,
|
|
847
|
+
"sequenceName": null,
|
|
848
|
+
"mutationFrom": "A",
|
|
849
|
+
"mutationTo": "G",
|
|
850
|
+
"position": 20055
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"mutation": "C21618T",
|
|
854
|
+
"proportion": 6.119951040391676e-4,
|
|
855
|
+
"count": 10,
|
|
856
|
+
"sequenceName": null,
|
|
857
|
+
"mutationFrom": "C",
|
|
858
|
+
"mutationTo": "T",
|
|
859
|
+
"position": 21618
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"mutation": "T29867A",
|
|
863
|
+
"proportion": 0.5103399929898352,
|
|
864
|
+
"count": 1456,
|
|
865
|
+
"sequenceName": null,
|
|
866
|
+
"mutationFrom": "T",
|
|
867
|
+
"mutationTo": "A",
|
|
868
|
+
"position": 29867
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"mutation": "T29867G",
|
|
872
|
+
"proportion": 0.03505082369435682,
|
|
873
|
+
"count": 1,
|
|
874
|
+
"sequenceName": null,
|
|
875
|
+
"mutationFrom": "T",
|
|
876
|
+
"mutationTo": "G",
|
|
877
|
+
"position": 29867
|
|
878
|
+
}
|
|
879
|
+
]
|
|
880
|
+
}
|