@genspectrum/dashboard-components 0.6.12 → 0.6.14
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/README.md +29 -0
- package/custom-elements.json +11 -11
- package/dist/dashboard-components.js +8219 -37937
- package/dist/dashboard-components.js.map +1 -1
- package/dist/genspectrum-components.d.ts +11 -11
- package/dist/style.css +5 -25
- package/package.json +7 -6
- package/src/operator/FetchAggregatedOperator.ts +2 -7
- package/src/preact/components/info.tsx +1 -1
- package/src/preact/components/loading-display.tsx +8 -1
- package/src/preact/components/percent-intput.tsx +7 -2
- package/src/preact/components/proportion-selector.tsx +12 -2
- package/src/preact/dateRangeSelector/date-range-selector.tsx +4 -4
- package/src/preact/lineageFilter/lineage-filter.tsx +2 -2
- package/src/preact/locationFilter/location-filter.tsx +2 -2
- package/src/preact/mutationsOverTime/__mockData__/aggregated_2024_01.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_2024_02.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_2024_03.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_2024_04.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_2024_05.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_2024_06.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_2024_07.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_20_01_2024.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_21_01_2024.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_22_01_2024.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_23_01_2024.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_24_01_2024.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_25_01_2024.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_26_01_2024.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_tooManyMutations_total.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_week3_2024.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_week4_2024.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_week5_2024.json +13 -0
- package/src/preact/mutationsOverTime/__mockData__/aggregated_week6_2024.json +13 -0
- package/src/preact/mutationsOverTime/getFilteredMutationsOverTime.spec.ts +56 -8
- package/src/preact/mutationsOverTime/mutations-over-time-grid.tsx +4 -2
- package/src/preact/mutationsOverTime/mutations-over-time.stories.tsx +135 -0
- package/src/preact/prevalenceOverTime/prevalence-over-time.tsx +2 -2
- package/src/preact/textInput/text-input.tsx +2 -2
- package/src/query/queryMutationsOverTime.spec.ts +210 -64
- package/src/query/queryMutationsOverTime.ts +10 -2
- package/src/web-components/input/gs-date-range-selector.tsx +24 -4
- package/src/web-components/input/gs-lineage-filter.tsx +15 -1
- package/src/web-components/input/gs-location-filter.tsx +13 -1
- package/src/web-components/input/gs-mutation-filter.tsx +1 -0
- package/src/web-components/input/gs-text-input.tsx +13 -1
- package/src/web-components/visualization/gs-aggregate.tsx +17 -1
- package/src/web-components/visualization/gs-mutation-comparison.tsx +9 -0
- package/src/web-components/visualization/gs-mutations-over-time.stories.ts +271 -0
- package/src/web-components/visualization/gs-mutations-over-time.tsx +7 -0
- package/src/web-components/visualization/gs-mutations.tsx +11 -5
- package/src/web-components/visualization/gs-number-sequences-over-time.tsx +15 -0
- package/src/web-components/visualization/gs-prevalence-over-time.stories.ts +8 -9
- package/src/web-components/visualization/gs-prevalence-over-time.tsx +26 -8
- package/src/web-components/visualization/gs-relative-growth-advantage.tsx +43 -5
- package/standalone-bundle/dashboard-components.js +30887 -0
- package/standalone-bundle/dashboard-components.js.map +1 -0
|
@@ -990,14 +990,14 @@ declare global {
|
|
|
990
990
|
|
|
991
991
|
declare global {
|
|
992
992
|
interface HTMLElementTagNameMap {
|
|
993
|
-
'gs-
|
|
993
|
+
'gs-aggregate-component': AggregateComponent;
|
|
994
994
|
}
|
|
995
995
|
}
|
|
996
996
|
|
|
997
997
|
|
|
998
998
|
declare global {
|
|
999
999
|
interface HTMLElementTagNameMap {
|
|
1000
|
-
'gs-
|
|
1000
|
+
'gs-number-sequences-over-time': NumberSequencesOverTimeComponent;
|
|
1001
1001
|
}
|
|
1002
1002
|
}
|
|
1003
1003
|
|
|
@@ -1021,41 +1021,41 @@ declare global {
|
|
|
1021
1021
|
|
|
1022
1022
|
declare global {
|
|
1023
1023
|
interface HTMLElementTagNameMap {
|
|
1024
|
-
'gs-
|
|
1024
|
+
'gs-text-input': TextInputComponent;
|
|
1025
1025
|
}
|
|
1026
1026
|
interface HTMLElementEventMap {
|
|
1027
|
-
'gs-
|
|
1027
|
+
'gs-text-input-changed': CustomEvent<Record<string, string>>;
|
|
1028
1028
|
}
|
|
1029
1029
|
}
|
|
1030
1030
|
|
|
1031
1031
|
|
|
1032
1032
|
declare global {
|
|
1033
1033
|
interface HTMLElementTagNameMap {
|
|
1034
|
-
'gs-
|
|
1034
|
+
'gs-location-filter': LocationFilterComponent;
|
|
1035
1035
|
}
|
|
1036
1036
|
interface HTMLElementEventMap {
|
|
1037
|
-
'gs-
|
|
1037
|
+
'gs-location-changed': CustomEvent<Record<string, string>>;
|
|
1038
1038
|
}
|
|
1039
1039
|
}
|
|
1040
1040
|
|
|
1041
1041
|
|
|
1042
1042
|
declare global {
|
|
1043
1043
|
interface HTMLElementTagNameMap {
|
|
1044
|
-
'gs-
|
|
1044
|
+
'gs-mutation-filter': MutationFilterComponent;
|
|
1045
1045
|
}
|
|
1046
1046
|
interface HTMLElementEventMap {
|
|
1047
|
-
'gs-
|
|
1047
|
+
'gs-mutation-filter-changed': CustomEvent<SelectedMutationFilterStrings>;
|
|
1048
|
+
'gs-mutation-filter-on-blur': CustomEvent<SelectedMutationFilterStrings>;
|
|
1048
1049
|
}
|
|
1049
1050
|
}
|
|
1050
1051
|
|
|
1051
1052
|
|
|
1052
1053
|
declare global {
|
|
1053
1054
|
interface HTMLElementTagNameMap {
|
|
1054
|
-
'gs-
|
|
1055
|
+
'gs-lineage-filter': LineageFilterComponent;
|
|
1055
1056
|
}
|
|
1056
1057
|
interface HTMLElementEventMap {
|
|
1057
|
-
'gs-
|
|
1058
|
-
'gs-mutation-filter-on-blur': CustomEvent<SelectedMutationFilterStrings>;
|
|
1058
|
+
'gs-lineage-filter-changed': CustomEvent<Record<string, string>>;
|
|
1059
1059
|
}
|
|
1060
1060
|
}
|
|
1061
1061
|
|
package/dist/style.css
CHANGED
|
@@ -376,7 +376,7 @@ input[type="range"] {
|
|
|
376
376
|
background-color: #C6C6C6;
|
|
377
377
|
pointer-events: none;
|
|
378
378
|
}/*
|
|
379
|
-
! tailwindcss v3.4.
|
|
379
|
+
! tailwindcss v3.4.10 | MIT License | https://tailwindcss.com
|
|
380
380
|
*//*
|
|
381
381
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
382
382
|
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
@@ -2212,30 +2212,6 @@ input.tab:checked + .tab-content,
|
|
|
2212
2212
|
background-position: calc(0% + 12px) calc(1px + 50%),
|
|
2213
2213
|
calc(0% + 16px) calc(1px + 50%);
|
|
2214
2214
|
}
|
|
2215
|
-
.skeleton {
|
|
2216
|
-
border-radius: var(--rounded-box, 1rem);
|
|
2217
|
-
--tw-bg-opacity: 1;
|
|
2218
|
-
background-color: var(--fallback-b3,oklch(var(--b3)/var(--tw-bg-opacity)));
|
|
2219
|
-
will-change: background-position;
|
|
2220
|
-
animation: skeleton 1.8s ease-in-out infinite;
|
|
2221
|
-
background-image: linear-gradient(
|
|
2222
|
-
105deg,
|
|
2223
|
-
transparent 0%,
|
|
2224
|
-
transparent 40%,
|
|
2225
|
-
var(--fallback-b1,oklch(var(--b1)/1)) 50%,
|
|
2226
|
-
transparent 60%,
|
|
2227
|
-
transparent 100%
|
|
2228
|
-
);
|
|
2229
|
-
background-size: 200% auto;
|
|
2230
|
-
background-repeat: no-repeat;
|
|
2231
|
-
background-position-x: -50%;
|
|
2232
|
-
}
|
|
2233
|
-
@media (prefers-reduced-motion) {
|
|
2234
|
-
|
|
2235
|
-
.skeleton {
|
|
2236
|
-
animation-duration: 15s;
|
|
2237
|
-
}
|
|
2238
|
-
}
|
|
2239
2215
|
@keyframes skeleton {
|
|
2240
2216
|
|
|
2241
2217
|
from {
|
|
@@ -3306,6 +3282,10 @@ input.tab:checked + .tab-content,
|
|
|
3306
3282
|
--tw-text-opacity: 1;
|
|
3307
3283
|
color: rgb(75 85 99 / var(--tw-text-opacity));
|
|
3308
3284
|
}
|
|
3285
|
+
.text-neutral-500 {
|
|
3286
|
+
--tw-text-opacity: 1;
|
|
3287
|
+
color: rgb(115 115 115 / var(--tw-text-opacity));
|
|
3288
|
+
}
|
|
3309
3289
|
.text-red-700 {
|
|
3310
3290
|
--tw-text-opacity: 1;
|
|
3311
3291
|
color: rgb(185 28 28 / var(--tw-text-opacity));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genspectrum/dashboard-components",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.14",
|
|
4
4
|
"description": "GenSpectrum web components for building dashboards",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "AGPL-3.0-only",
|
|
@@ -16,18 +16,19 @@
|
|
|
16
16
|
"require": "./dist/dashboard-components.js",
|
|
17
17
|
"types": "./dist/genspectrum-components.d.ts"
|
|
18
18
|
},
|
|
19
|
-
"./custom-elements.json": "./custom
|
|
19
|
+
"./custom-elements.json": "./custom-elements.json",
|
|
20
20
|
"./package.json": "./package.json",
|
|
21
21
|
"./style.css": "./dist/style.css"
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
24
24
|
"dist",
|
|
25
|
+
"standalone-bundle",
|
|
25
26
|
"src",
|
|
26
27
|
"custom-elements.json",
|
|
27
28
|
"package.json"
|
|
28
29
|
],
|
|
29
30
|
"scripts": {
|
|
30
|
-
"build": "vite --config vite.release.config.ts build && npm run generate-manifest",
|
|
31
|
+
"build": "vite --config vite.release.config.ts build && npm run generate-manifest && vite --config vite.release-standalone.config.ts build",
|
|
31
32
|
"build-and-pack": "npm run build && npm pack | xargs -I {} cp {} genspectrum-dashboard-components.tgz",
|
|
32
33
|
"test": "vitest",
|
|
33
34
|
"lint": "npm run lint:lit-analyzer && npm run lint:eslint",
|
|
@@ -67,9 +68,6 @@
|
|
|
67
68
|
"dayjs": "^1.11.10",
|
|
68
69
|
"flatpickr": "^4.6.13",
|
|
69
70
|
"gridjs": "^6.2.0",
|
|
70
|
-
"@iconify-json/mdi": "^1.1.67",
|
|
71
|
-
"@iconify-json/mdi-light": "^1.1.10",
|
|
72
|
-
"@iconify/tailwind": "^1.1.1",
|
|
73
71
|
"lit": "^3.1.3",
|
|
74
72
|
"object-hash": "^3.0.0",
|
|
75
73
|
"preact": "^10.20.1",
|
|
@@ -77,6 +75,9 @@
|
|
|
77
75
|
},
|
|
78
76
|
"devDependencies": {
|
|
79
77
|
"@custom-elements-manifest/analyzer": "^0.10.2",
|
|
78
|
+
"@iconify-json/mdi": "^1.1.67",
|
|
79
|
+
"@iconify-json/mdi-light": "^1.1.10",
|
|
80
|
+
"@iconify/tailwind": "^1.1.2",
|
|
80
81
|
"@playwright/test": "^1.43.1",
|
|
81
82
|
"@storybook/addon-actions": "^8.0.9",
|
|
82
83
|
"@storybook/addon-essentials": "^8.0.9",
|
|
@@ -5,16 +5,11 @@ import { type AggregatedItem } from '../lapisApi/lapisTypes';
|
|
|
5
5
|
import { type LapisFilter } from '../types';
|
|
6
6
|
|
|
7
7
|
export class FetchAggregatedOperator<Fields extends Record<string, unknown>>
|
|
8
|
-
implements
|
|
9
|
-
Operator<
|
|
10
|
-
Fields & {
|
|
11
|
-
count: number;
|
|
12
|
-
}
|
|
13
|
-
>
|
|
8
|
+
implements Operator<Fields & { count: number }>
|
|
14
9
|
{
|
|
15
10
|
constructor(
|
|
16
11
|
private filter: LapisFilter,
|
|
17
|
-
private fields: string[],
|
|
12
|
+
private fields: string[] = [],
|
|
18
13
|
) {}
|
|
19
14
|
|
|
20
15
|
async evaluate(lapisUrl: string, signal?: AbortSignal): Promise<Dataset<Fields & { count: number }>> {
|
|
@@ -124,7 +124,7 @@ function generateFullExampleCode(componentCode: string, componentName: string) {
|
|
|
124
124
|
const storyBookPath = `/docs/visualization-${componentName}--docs`;
|
|
125
125
|
return `<html>
|
|
126
126
|
<head>
|
|
127
|
-
<script type="module" src="https://unpkg.com/@genspectrum/dashboard-components@latest/
|
|
127
|
+
<script type="module" src="https://unpkg.com/@genspectrum/dashboard-components@latest/standalone-bundle/dashboard-components.js"></script>
|
|
128
128
|
<link rel="stylesheet" href="https://unpkg.com/@genspectrum/dashboard-components@latest/dist/style.css" />
|
|
129
129
|
</head>
|
|
130
130
|
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import { type FunctionComponent } from 'preact';
|
|
2
2
|
|
|
3
3
|
export const LoadingDisplay: FunctionComponent = () => {
|
|
4
|
-
return
|
|
4
|
+
return (
|
|
5
|
+
<div
|
|
6
|
+
aria-label={'Loading'}
|
|
7
|
+
className='h-full w-full border-2 border-gray-100 rounded-md flex justify-center items-center'
|
|
8
|
+
>
|
|
9
|
+
<div className='loading loading-spinner loading-md text-neutral-500' />
|
|
10
|
+
</div>
|
|
11
|
+
);
|
|
5
12
|
};
|
|
@@ -4,13 +4,18 @@ import { useEffect, useState } from 'preact/hooks';
|
|
|
4
4
|
export type PercentInputProps = {
|
|
5
5
|
percentage: number;
|
|
6
6
|
setPercentage: (percentage: number) => void;
|
|
7
|
+
indicateError?: boolean;
|
|
7
8
|
};
|
|
8
9
|
|
|
9
10
|
const percentageInRange = (percentage: number) => {
|
|
10
11
|
return percentage <= 100 && percentage >= 0;
|
|
11
12
|
};
|
|
12
13
|
|
|
13
|
-
export const PercentInput: FunctionComponent<PercentInputProps> = ({
|
|
14
|
+
export const PercentInput: FunctionComponent<PercentInputProps> = ({
|
|
15
|
+
percentage,
|
|
16
|
+
setPercentage,
|
|
17
|
+
indicateError = false,
|
|
18
|
+
}) => {
|
|
14
19
|
const [internalPercentage, setInternalPercentage] = useState(percentage);
|
|
15
20
|
|
|
16
21
|
useEffect(() => {
|
|
@@ -33,7 +38,7 @@ export const PercentInput: FunctionComponent<PercentInputProps> = ({ percentage,
|
|
|
33
38
|
setInternalPercentage(value);
|
|
34
39
|
};
|
|
35
40
|
|
|
36
|
-
const isError = !percentageInRange(internalPercentage);
|
|
41
|
+
const isError = indicateError || !percentageInRange(internalPercentage);
|
|
37
42
|
return (
|
|
38
43
|
<label className={`input input-bordered flex items-center gap-2 w-32 ${isError ? 'input-error' : ''}`}>
|
|
39
44
|
<input
|
|
@@ -57,12 +57,22 @@ export const ProportionSelector: FunctionComponent<ProportionSelectorProps> = ({
|
|
|
57
57
|
setInternalMaxProportion(newMaxProportion);
|
|
58
58
|
};
|
|
59
59
|
|
|
60
|
+
const indicateError = internalMinProportion > internalMaxProportion;
|
|
61
|
+
|
|
60
62
|
return (
|
|
61
63
|
<div class='flex flex-col w-64 mb-2'>
|
|
62
64
|
<div class='flex items-center '>
|
|
63
|
-
<PercentInput
|
|
65
|
+
<PercentInput
|
|
66
|
+
percentage={internalMinProportion * 100}
|
|
67
|
+
setPercentage={updateMinPercentage}
|
|
68
|
+
indicateError={indicateError}
|
|
69
|
+
/>
|
|
64
70
|
<div class='m-2'>-</div>
|
|
65
|
-
<PercentInput
|
|
71
|
+
<PercentInput
|
|
72
|
+
percentage={internalMaxProportion * 100}
|
|
73
|
+
setPercentage={updateMaxPercentage}
|
|
74
|
+
indicateError={indicateError}
|
|
75
|
+
/>
|
|
66
76
|
</div>
|
|
67
77
|
<div class='my-1'>
|
|
68
78
|
<MinMaxRangeSlider
|
|
@@ -20,10 +20,10 @@ export interface DateRangeSelectorProps<CustomLabel extends string> extends Date
|
|
|
20
20
|
|
|
21
21
|
export interface DateRangeSelectorPropsInner<CustomLabel extends string> {
|
|
22
22
|
customSelectOptions: CustomSelectOption<CustomLabel>[];
|
|
23
|
-
earliestDate
|
|
24
|
-
initialValue
|
|
25
|
-
initialDateFrom
|
|
26
|
-
initialDateTo
|
|
23
|
+
earliestDate: string;
|
|
24
|
+
initialValue: PresetOptionValues | CustomLabel;
|
|
25
|
+
initialDateFrom: string;
|
|
26
|
+
initialDateTo: string;
|
|
27
27
|
dateColumn: string;
|
|
28
28
|
}
|
|
29
29
|
|
|
@@ -12,8 +12,8 @@ import { useQuery } from '../useQuery';
|
|
|
12
12
|
|
|
13
13
|
export interface LineageFilterInnerProps {
|
|
14
14
|
lapisField: string;
|
|
15
|
-
placeholderText
|
|
16
|
-
initialValue
|
|
15
|
+
placeholderText: string;
|
|
16
|
+
initialValue: string;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
export interface LineageFilterProps extends LineageFilterInnerProps {
|
|
@@ -11,8 +11,8 @@ import { ResizeContainer } from '../components/resize-container';
|
|
|
11
11
|
import { useQuery } from '../useQuery';
|
|
12
12
|
|
|
13
13
|
export interface LocationFilterInnerProps {
|
|
14
|
-
initialValue
|
|
15
|
-
placeholderText
|
|
14
|
+
initialValue: string;
|
|
15
|
+
placeholderText: string;
|
|
16
16
|
fields: string[];
|
|
17
17
|
}
|
|
18
18
|
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 25800
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 16673
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 7931
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 2947
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 2424
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 2890
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 0
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 456
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 533
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 1107
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 1020
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 880
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 832
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 635
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 503198
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 5213
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 5311
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 5264
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data": [
|
|
3
|
+
{
|
|
4
|
+
"count": 4954
|
|
5
|
+
}
|
|
6
|
+
],
|
|
7
|
+
"info": {
|
|
8
|
+
"dataVersion": "1722452937",
|
|
9
|
+
"requestId": "aede768e-d9d1-4273-9a74-992986554995",
|
|
10
|
+
"requestInfo": "sars_cov-2_nextstrain_open on lapis.cov-spectrum.org at 2024-08-02T06:57:09.319474043",
|
|
11
|
+
"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."
|
|
12
|
+
}
|
|
13
|
+
}
|