@genspectrum/dashboard-components 0.11.5 → 0.11.7
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/custom-elements.json +92 -6
- package/dist/assets/{mutationOverTimeWorker-CWneD7i5.js.map → mutationOverTimeWorker-DTv93Ere.js.map} +1 -1
- package/dist/components.d.ts +67 -19
- package/dist/components.js +301 -90
- package/dist/components.js.map +1 -1
- package/dist/style.css +3 -0
- package/dist/util.d.ts +53 -22
- package/package.json +1 -1
- package/src/preact/aggregatedData/__mockData__/aggregatedWith1Field.json +399 -0
- package/src/preact/aggregatedData/__mockData__/aggregatedWith2Fields.json +1771 -0
- package/src/preact/aggregatedData/aggregate-bar-chart.tsx +177 -0
- package/src/preact/aggregatedData/aggregate-table.tsx +24 -2
- package/src/preact/aggregatedData/aggregate.stories.tsx +61 -2
- package/src/preact/aggregatedData/aggregate.tsx +18 -6
- package/src/preact/mutations/__mockData__/baselineNucleotideMutations.json +337412 -0
- package/src/preact/mutations/__mockData__/overallVariantCount.json +14 -0
- package/src/preact/mutations/getMutationsTableData.spec.ts +20 -3
- package/src/preact/mutations/getMutationsTableData.ts +37 -2
- package/src/preact/mutations/mutations-table.tsx +47 -27
- package/src/preact/mutations/mutations.stories.tsx +41 -9
- package/src/preact/mutations/mutations.tsx +22 -6
- package/src/preact/mutations/queryMutations.ts +28 -8
- package/src/preact/mutationsOverTime/__mockData__/aminoAcidMutationsByDay.ts +11077 -3062
- package/src/preact/mutationsOverTime/__mockData__/byWeek.ts +3883 -6606
- package/src/preact/mutationsOverTime/__mockData__/defaultMockData.ts +17624 -2203
- package/src/preact/mutationsOverTime/mutations-over-time-grid.tsx +1 -1
- package/src/preact/mutationsOverTime/mutations-over-time.tsx +1 -1
- package/src/preact/shared/charts/colors.ts +1 -1
- package/src/query/queryAggregateData.spec.ts +16 -109
- package/src/query/queryAggregateData.ts +2 -12
- package/src/query/queryGeneralStatistics.ts +2 -2
- package/src/query/queryMutationsOverTime.spec.ts +144 -4
- package/src/query/queryMutationsOverTime.ts +17 -1
- package/src/web-components/visualization/gs-aggregate.stories.ts +90 -20
- package/src/web-components/visualization/gs-aggregate.tsx +20 -0
- package/src/web-components/visualization/gs-mutations.stories.ts +62 -4
- package/src/web-components/visualization/gs-mutations.tsx +44 -0
- package/standalone-bundle/assets/{mutationOverTimeWorker-x1ipPFL0.js.map → mutationOverTimeWorker-DEybsZ5r.js.map} +1 -1
- package/standalone-bundle/dashboard-components.js +4136 -3956
- package/standalone-bundle/dashboard-components.js.map +1 -1
- package/standalone-bundle/style.css +1 -1
package/dist/style.css
CHANGED
package/dist/util.d.ts
CHANGED
|
@@ -20,12 +20,13 @@ declare const aggregatePropsSchema: default_2.ZodObject<{
|
|
|
20
20
|
aminoAcidInsertions?: string[] | undefined;
|
|
21
21
|
}>>;
|
|
22
22
|
fields: default_2.ZodArray<default_2.ZodString, "many">;
|
|
23
|
-
views: default_2.ZodArray<default_2.ZodLiteral<"table">, "many">;
|
|
23
|
+
views: default_2.ZodArray<default_2.ZodUnion<[default_2.ZodLiteral<"table">, default_2.ZodLiteral<"bar">]>, "many">;
|
|
24
24
|
initialSortField: default_2.ZodString;
|
|
25
25
|
initialSortDirection: default_2.ZodUnion<[default_2.ZodLiteral<"ascending">, default_2.ZodLiteral<"descending">]>;
|
|
26
26
|
pageSize: default_2.ZodUnion<[default_2.ZodBoolean, default_2.ZodNumber]>;
|
|
27
27
|
width: default_2.ZodString;
|
|
28
28
|
height: default_2.ZodString;
|
|
29
|
+
maxNumberOfBars: default_2.ZodNumber;
|
|
29
30
|
}, "strip", default_2.ZodTypeAny, {
|
|
30
31
|
lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
|
|
31
32
|
nucleotideMutations?: string[] | undefined;
|
|
@@ -37,9 +38,10 @@ declare const aggregatePropsSchema: default_2.ZodObject<{
|
|
|
37
38
|
height: string;
|
|
38
39
|
width: string;
|
|
39
40
|
pageSize: number | boolean;
|
|
40
|
-
views: "table"[];
|
|
41
|
+
views: ("table" | "bar")[];
|
|
41
42
|
initialSortField: string;
|
|
42
43
|
initialSortDirection: "ascending" | "descending";
|
|
44
|
+
maxNumberOfBars: number;
|
|
43
45
|
}, {
|
|
44
46
|
lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
|
|
45
47
|
nucleotideMutations?: string[] | undefined;
|
|
@@ -51,14 +53,15 @@ declare const aggregatePropsSchema: default_2.ZodObject<{
|
|
|
51
53
|
height: string;
|
|
52
54
|
width: string;
|
|
53
55
|
pageSize: number | boolean;
|
|
54
|
-
views: "table"[];
|
|
56
|
+
views: ("table" | "bar")[];
|
|
55
57
|
initialSortField: string;
|
|
56
58
|
initialSortDirection: "ascending" | "descending";
|
|
59
|
+
maxNumberOfBars: number;
|
|
57
60
|
}>;
|
|
58
61
|
|
|
59
62
|
export declare type AggregateView = default_2.infer<typeof aggregateViewSchema>;
|
|
60
63
|
|
|
61
|
-
declare const aggregateViewSchema: default_2.ZodLiteral<"table">;
|
|
64
|
+
declare const aggregateViewSchema: default_2.ZodUnion<[default_2.ZodLiteral<"table">, default_2.ZodLiteral<"bar">]>;
|
|
62
65
|
|
|
63
66
|
export declare type AxisMax = default_2.infer<typeof axisMaxSchema>;
|
|
64
67
|
|
|
@@ -290,6 +293,22 @@ declare const mutationsPropsSchema: default_2.ZodObject<{
|
|
|
290
293
|
nucleotideInsertions?: string[] | undefined;
|
|
291
294
|
aminoAcidInsertions?: string[] | undefined;
|
|
292
295
|
}>>;
|
|
296
|
+
baselineLapisFilter: default_2.ZodOptional<default_2.ZodIntersection<default_2.ZodRecord<default_2.ZodString, default_2.ZodUnion<[default_2.ZodString, default_2.ZodArray<default_2.ZodString, "many">, default_2.ZodNumber, default_2.ZodNull, default_2.ZodBoolean, default_2.ZodUndefined]>>, default_2.ZodObject<{
|
|
297
|
+
nucleotideMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
|
|
298
|
+
aminoAcidMutations: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
|
|
299
|
+
nucleotideInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
|
|
300
|
+
aminoAcidInsertions: default_2.ZodOptional<default_2.ZodArray<default_2.ZodString, "many">>;
|
|
301
|
+
}, "strip", default_2.ZodTypeAny, {
|
|
302
|
+
nucleotideMutations?: string[] | undefined;
|
|
303
|
+
aminoAcidMutations?: string[] | undefined;
|
|
304
|
+
nucleotideInsertions?: string[] | undefined;
|
|
305
|
+
aminoAcidInsertions?: string[] | undefined;
|
|
306
|
+
}, {
|
|
307
|
+
nucleotideMutations?: string[] | undefined;
|
|
308
|
+
aminoAcidMutations?: string[] | undefined;
|
|
309
|
+
nucleotideInsertions?: string[] | undefined;
|
|
310
|
+
aminoAcidInsertions?: string[] | undefined;
|
|
311
|
+
}>>>;
|
|
293
312
|
sequenceType: default_2.ZodUnion<[default_2.ZodLiteral<"nucleotide">, default_2.ZodLiteral<"amino acid">]>;
|
|
294
313
|
views: default_2.ZodArray<default_2.ZodUnion<[default_2.ZodLiteral<"table">, default_2.ZodLiteral<"grid">, default_2.ZodLiteral<"insertions">]>, "many">;
|
|
295
314
|
pageSize: default_2.ZodUnion<[default_2.ZodBoolean, default_2.ZodNumber]>;
|
|
@@ -307,6 +326,12 @@ declare const mutationsPropsSchema: default_2.ZodObject<{
|
|
|
307
326
|
pageSize: number | boolean;
|
|
308
327
|
sequenceType: "nucleotide" | "amino acid";
|
|
309
328
|
views: ("table" | "grid" | "insertions")[];
|
|
329
|
+
baselineLapisFilter?: (Record<string, string | number | boolean | string[] | null | undefined> & {
|
|
330
|
+
nucleotideMutations?: string[] | undefined;
|
|
331
|
+
aminoAcidMutations?: string[] | undefined;
|
|
332
|
+
nucleotideInsertions?: string[] | undefined;
|
|
333
|
+
aminoAcidInsertions?: string[] | undefined;
|
|
334
|
+
}) | undefined;
|
|
310
335
|
}, {
|
|
311
336
|
lapisFilter: Record<string, string | number | boolean | string[] | null | undefined> & {
|
|
312
337
|
nucleotideMutations?: string[] | undefined;
|
|
@@ -319,6 +344,12 @@ declare const mutationsPropsSchema: default_2.ZodObject<{
|
|
|
319
344
|
pageSize: number | boolean;
|
|
320
345
|
sequenceType: "nucleotide" | "amino acid";
|
|
321
346
|
views: ("table" | "grid" | "insertions")[];
|
|
347
|
+
baselineLapisFilter?: (Record<string, string | number | boolean | string[] | null | undefined> & {
|
|
348
|
+
nucleotideMutations?: string[] | undefined;
|
|
349
|
+
aminoAcidMutations?: string[] | undefined;
|
|
350
|
+
nucleotideInsertions?: string[] | undefined;
|
|
351
|
+
aminoAcidInsertions?: string[] | undefined;
|
|
352
|
+
}) | undefined;
|
|
322
353
|
}>;
|
|
323
354
|
|
|
324
355
|
export declare type MutationsView = default_2.infer<typeof mutationsViewSchema>;
|
|
@@ -867,7 +898,7 @@ declare global {
|
|
|
867
898
|
|
|
868
899
|
declare global {
|
|
869
900
|
interface HTMLElementTagNameMap {
|
|
870
|
-
'gs-
|
|
901
|
+
'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
|
|
871
902
|
}
|
|
872
903
|
}
|
|
873
904
|
|
|
@@ -875,7 +906,7 @@ declare global {
|
|
|
875
906
|
declare global {
|
|
876
907
|
namespace JSX {
|
|
877
908
|
interface IntrinsicElements {
|
|
878
|
-
'gs-
|
|
909
|
+
'gs-number-sequences-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
879
910
|
}
|
|
880
911
|
}
|
|
881
912
|
}
|
|
@@ -883,7 +914,7 @@ declare global {
|
|
|
883
914
|
|
|
884
915
|
declare global {
|
|
885
916
|
interface HTMLElementTagNameMap {
|
|
886
|
-
'gs-
|
|
917
|
+
'gs-sequences-by-location': SequencesByLocationComponent;
|
|
887
918
|
}
|
|
888
919
|
}
|
|
889
920
|
|
|
@@ -891,7 +922,7 @@ declare global {
|
|
|
891
922
|
declare global {
|
|
892
923
|
namespace JSX {
|
|
893
924
|
interface IntrinsicElements {
|
|
894
|
-
'gs-
|
|
925
|
+
'gs-sequences-by-location': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
895
926
|
}
|
|
896
927
|
}
|
|
897
928
|
}
|
|
@@ -899,7 +930,7 @@ declare global {
|
|
|
899
930
|
|
|
900
931
|
declare global {
|
|
901
932
|
interface HTMLElementTagNameMap {
|
|
902
|
-
'gs-
|
|
933
|
+
'gs-statistics': StatisticsComponent;
|
|
903
934
|
}
|
|
904
935
|
}
|
|
905
936
|
|
|
@@ -907,7 +938,7 @@ declare global {
|
|
|
907
938
|
declare global {
|
|
908
939
|
namespace JSX {
|
|
909
940
|
interface IntrinsicElements {
|
|
910
|
-
'gs-
|
|
941
|
+
'gs-statistics': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
911
942
|
}
|
|
912
943
|
}
|
|
913
944
|
}
|
|
@@ -915,7 +946,7 @@ declare global {
|
|
|
915
946
|
|
|
916
947
|
declare global {
|
|
917
948
|
interface HTMLElementTagNameMap {
|
|
918
|
-
'gs-
|
|
949
|
+
'gs-mutations-over-time': MutationsOverTimeComponent;
|
|
919
950
|
}
|
|
920
951
|
}
|
|
921
952
|
|
|
@@ -923,7 +954,7 @@ declare global {
|
|
|
923
954
|
declare global {
|
|
924
955
|
namespace JSX {
|
|
925
956
|
interface IntrinsicElements {
|
|
926
|
-
'gs-
|
|
957
|
+
'gs-mutations-over-time': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
927
958
|
}
|
|
928
959
|
}
|
|
929
960
|
}
|
|
@@ -931,11 +962,10 @@ declare global {
|
|
|
931
962
|
|
|
932
963
|
declare global {
|
|
933
964
|
interface HTMLElementTagNameMap {
|
|
934
|
-
'gs-
|
|
965
|
+
'gs-text-input': TextInputComponent;
|
|
935
966
|
}
|
|
936
967
|
interface HTMLElementEventMap {
|
|
937
|
-
'gs-
|
|
938
|
-
'gs-date-range-option-changed': DateRangeOptionChangedEvent;
|
|
968
|
+
'gs-text-input-changed': CustomEvent<Record<string, string>>;
|
|
939
969
|
}
|
|
940
970
|
}
|
|
941
971
|
|
|
@@ -943,7 +973,7 @@ declare global {
|
|
|
943
973
|
declare global {
|
|
944
974
|
namespace JSX {
|
|
945
975
|
interface IntrinsicElements {
|
|
946
|
-
'gs-
|
|
976
|
+
'gs-text-input': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
947
977
|
}
|
|
948
978
|
}
|
|
949
979
|
}
|
|
@@ -951,10 +981,11 @@ declare global {
|
|
|
951
981
|
|
|
952
982
|
declare global {
|
|
953
983
|
interface HTMLElementTagNameMap {
|
|
954
|
-
'gs-
|
|
984
|
+
'gs-date-range-selector': DateRangeSelectorComponent;
|
|
955
985
|
}
|
|
956
986
|
interface HTMLElementEventMap {
|
|
957
|
-
'gs-
|
|
987
|
+
'gs-date-range-filter-changed': CustomEvent<Record<string, string>>;
|
|
988
|
+
'gs-date-range-option-changed': DateRangeOptionChangedEvent;
|
|
958
989
|
}
|
|
959
990
|
}
|
|
960
991
|
|
|
@@ -962,7 +993,7 @@ declare global {
|
|
|
962
993
|
declare global {
|
|
963
994
|
namespace JSX {
|
|
964
995
|
interface IntrinsicElements {
|
|
965
|
-
'gs-
|
|
996
|
+
'gs-date-range-selector': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
966
997
|
}
|
|
967
998
|
}
|
|
968
999
|
}
|
|
@@ -970,10 +1001,10 @@ declare global {
|
|
|
970
1001
|
|
|
971
1002
|
declare global {
|
|
972
1003
|
interface HTMLElementTagNameMap {
|
|
973
|
-
'gs-
|
|
1004
|
+
'gs-location-filter': LocationFilterComponent;
|
|
974
1005
|
}
|
|
975
1006
|
interface HTMLElementEventMap {
|
|
976
|
-
'gs-
|
|
1007
|
+
'gs-location-changed': CustomEvent<Record<string, string>>;
|
|
977
1008
|
}
|
|
978
1009
|
}
|
|
979
1010
|
|
|
@@ -981,7 +1012,7 @@ declare global {
|
|
|
981
1012
|
declare global {
|
|
982
1013
|
namespace JSX {
|
|
983
1014
|
interface IntrinsicElements {
|
|
984
|
-
'gs-
|
|
1015
|
+
'gs-location-filter': DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
985
1016
|
}
|
|
986
1017
|
}
|
|
987
1018
|
}
|
package/package.json
CHANGED
|
@@ -0,0 +1,399 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 1793,
|
|
5
|
+
"division": "Virgin Islands"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"count": 80581,
|
|
9
|
+
"division": "Colorado"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"count": 5,
|
|
13
|
+
"division": "American Samoa"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"count": 3462,
|
|
17
|
+
"division": "Northern Mariana Islands"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"count": 29845,
|
|
21
|
+
"division": "Oklahoma"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"count": 2582,
|
|
25
|
+
"division": "Wyoming"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"count": 18733,
|
|
29
|
+
"division": "Kentucky"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"count": 88,
|
|
33
|
+
"division": "New York City"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"count": 30814,
|
|
37
|
+
"division": "Arkansas"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"count": 8932,
|
|
41
|
+
"division": "Maine"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"count": 10710,
|
|
45
|
+
"division": "Puerto Rico"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"count": 11354,
|
|
49
|
+
"division": "Kansas"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"count": 15336,
|
|
53
|
+
"division": "Alaska"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"count": 1,
|
|
57
|
+
"division": "Sp"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"count": 12017,
|
|
61
|
+
"division": "Washington DC"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"count": 27043,
|
|
65
|
+
"division": "Vermont"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"count": 30166,
|
|
69
|
+
"division": "Nevada"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"count": 22443,
|
|
73
|
+
"division": "Utah"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"count": 85817,
|
|
77
|
+
"division": "Pennsylvania"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"count": 892,
|
|
81
|
+
"division": "Guam"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"count": 2,
|
|
85
|
+
"division": "Virginia Beach"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"count": 13808,
|
|
89
|
+
"division": "New Hampshire"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"count": 9,
|
|
93
|
+
"division": "Fairfax"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"count": 22914,
|
|
97
|
+
"division": "Rhode Island"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"count": 78889,
|
|
101
|
+
"division": "Illinois"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"count": 23674,
|
|
105
|
+
"division": "Nebraska"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"count": 1,
|
|
109
|
+
"division": "Beltsville"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"count": 141180,
|
|
113
|
+
"division": "Minnesota"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"count": 35292,
|
|
117
|
+
"division": "Indiana"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"count": 8949,
|
|
121
|
+
"division": "Montana"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"count": 88026,
|
|
125
|
+
"division": "Virginia"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"count": 199883,
|
|
129
|
+
"division": "Florida"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"count": 9733,
|
|
133
|
+
"division": "Delaware"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"count": 1,
|
|
137
|
+
"division": "Fishersville"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"count": 22250,
|
|
141
|
+
"division": "Louisiana"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"count": 6,
|
|
145
|
+
"division": "Springfield"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"count": 2,
|
|
149
|
+
"division": "Afton"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"count": 1,
|
|
153
|
+
"division": "Mt Solon"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"count": 27784,
|
|
157
|
+
"division": "Iowa"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"count": 30026,
|
|
161
|
+
"division": "Connecticut"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"count": 9255,
|
|
165
|
+
"division": "South Dakota"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"count": 14,
|
|
169
|
+
"division": "Annandale"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"count": 2,
|
|
173
|
+
"division": "Burke"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"count": 124361,
|
|
177
|
+
"division": "New York"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"count": 36230,
|
|
181
|
+
"division": "West Virginia"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"count": 11,
|
|
185
|
+
"division": "Falls Church"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"count": 3,
|
|
189
|
+
"division": "Arlington"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"count": 3,
|
|
193
|
+
"division": "Louisana"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"count": 13,
|
|
197
|
+
"division": "Temple"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"count": 10,
|
|
201
|
+
"division": "Louisiana/Caddo Parish"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"count": 6,
|
|
205
|
+
"division": "Alexandria"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"count": 1,
|
|
209
|
+
"division": "Louisiana/Bossier Parish"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"count": 45448,
|
|
213
|
+
"division": "Wisconsin"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"count": 2,
|
|
217
|
+
"division": "Un"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"count": 3,
|
|
221
|
+
"division": "Mclean"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"count": 6192,
|
|
225
|
+
"division": "Hawaii"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"count": 142321,
|
|
229
|
+
"division": "Washington"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"count": 1,
|
|
233
|
+
"division": "Chantilly"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"count": 2,
|
|
237
|
+
"division": "Crozet"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"count": 51468,
|
|
241
|
+
"division": "Tennessee"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"count": 1,
|
|
245
|
+
"division": "Chilhowie"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"count": 10,
|
|
249
|
+
"division": "Saipan"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"count": 176243,
|
|
253
|
+
"division": "Massachusetts"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"count": 1,
|
|
257
|
+
"division": "Fairfax Station"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"count": 1,
|
|
261
|
+
"division": "Paeonian Springs"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"count": 7,
|
|
265
|
+
"division": "Waynesboro"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"count": 765924,
|
|
269
|
+
"division": "USA"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"count": 5,
|
|
273
|
+
"division": "Louisiana/Webster Parish"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"count": 1,
|
|
277
|
+
"division": "Harrisonburg"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"count": 1,
|
|
281
|
+
"division": "Stafford"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"count": 1,
|
|
285
|
+
"division": "Grottoes"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"count": 144151,
|
|
289
|
+
"division": "Texas"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"count": 92995,
|
|
293
|
+
"division": "North Carolina"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"count": 1,
|
|
297
|
+
"division": "Severn"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"count": 1,
|
|
301
|
+
"division": "Great Falls"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"count": 1,
|
|
305
|
+
"division": "Temple Hills"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"count": 98998,
|
|
309
|
+
"division": "Michigan"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"count": 1,
|
|
313
|
+
"division": "Chesapeake"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"count": 386575,
|
|
317
|
+
"division": "California"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"count": 1,
|
|
321
|
+
"division": "Yap"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"count": 12380,
|
|
325
|
+
"division": "Mississippi"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"count": 17575,
|
|
329
|
+
"division": "Alabama"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"count": 48541,
|
|
333
|
+
"division": "Maryland"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"count": 1,
|
|
337
|
+
"division": "North America"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"count": 16034,
|
|
341
|
+
"division": "Idaho"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"count": 50896,
|
|
345
|
+
"division": "Ohio"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"count": 75921,
|
|
349
|
+
"division": "Arizona"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"count": 2394,
|
|
353
|
+
"division": "North Dakota"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"count": 2,
|
|
357
|
+
"division": "Deleware"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"count": 47723,
|
|
361
|
+
"division": "New Mexico"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"count": 35425,
|
|
365
|
+
"division": "South Carolina"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"count": 26192,
|
|
369
|
+
"division": "Missouri"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"count": 5,
|
|
373
|
+
"division": "Vienna"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"count": 1,
|
|
377
|
+
"division": "Woodbridge"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"count": 104569,
|
|
381
|
+
"division": "New Jersey"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"count": 70288,
|
|
385
|
+
"division": "Georgia"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"count": 27269,
|
|
389
|
+
"division": "Oregon"
|
|
390
|
+
}
|
|
391
|
+
],
|
|
392
|
+
"info": {
|
|
393
|
+
"dataVersion": "1736095391",
|
|
394
|
+
"requestId": "dd98582e-c486-4a0f-9341-d9c4ce78bc9d",
|
|
395
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2025-01-08T10:56:47.562437009",
|
|
396
|
+
"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.",
|
|
397
|
+
"lapisVersion": "0.3.10"
|
|
398
|
+
}
|
|
399
|
+
}
|