@genspectrum/dashboard-components 0.13.6 → 0.13.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.
Files changed (36) hide show
  1. package/custom-elements.json +28 -28
  2. package/dist/components.d.ts +19 -21
  3. package/dist/components.js +348 -231
  4. package/dist/components.js.map +1 -1
  5. package/dist/style.css +20 -5
  6. package/dist/util.d.ts +18 -18
  7. package/package.json +1 -1
  8. package/src/preact/components/tabs.tsx +3 -5
  9. package/src/preact/mutationFilter/ExampleMutation.tsx +68 -0
  10. package/src/preact/mutationFilter/mutation-filter-info.tsx +179 -112
  11. package/src/preact/mutationFilter/mutation-filter.tsx +10 -5
  12. package/src/preact/mutationsOverTime/mutations-over-time-grid.tsx +26 -4
  13. package/src/preact/wastewater/mutationsOverTime/wastewater-mutations-over-time.stories.tsx +2 -6
  14. package/src/preact/wastewater/mutationsOverTime/wastewater-mutations-over-time.tsx +1 -1
  15. package/src/web-components/{app.stories.ts → gs-app.stories.ts} +1 -1
  16. package/src/web-components/{app.ts → gs-app.ts} +2 -2
  17. package/src/web-components/index.ts +1 -1
  18. package/src/web-components/input/gs-date-range-selector.stories.ts +1 -1
  19. package/src/web-components/input/gs-lineage-filter.stories.ts +1 -1
  20. package/src/web-components/input/gs-location-filter.stories.ts +1 -1
  21. package/src/web-components/input/gs-mutation-filter.stories.ts +2 -2
  22. package/src/web-components/input/gs-text-input.stories.ts +1 -1
  23. package/src/web-components/visualization/gs-aggregate.stories.ts +1 -1
  24. package/src/web-components/visualization/gs-mutation-comparison.stories.ts +1 -1
  25. package/src/web-components/visualization/gs-mutations-over-time.stories.ts +1 -1
  26. package/src/web-components/visualization/gs-mutations.stories.ts +1 -1
  27. package/src/web-components/visualization/gs-number-sequences-over-time.stories.ts +1 -1
  28. package/src/web-components/visualization/gs-prevalence-over-time.stories.ts +1 -1
  29. package/src/web-components/visualization/gs-relative-growth-advantage.stories.ts +1 -1
  30. package/src/web-components/visualization/gs-sequences-by-location.stories.ts +1 -1
  31. package/src/web-components/visualization/gs-statistics.stories.ts +1 -1
  32. package/src/web-components/wastewaterVisualization/gs-wastewater-mutations-over-time.stories.ts +4 -1
  33. package/src/web-components/wastewaterVisualization/gs-wastewater-mutations-over-time.tsx +6 -2
  34. package/standalone-bundle/dashboard-components.js +5073 -5014
  35. package/standalone-bundle/dashboard-components.js.map +1 -1
  36. package/standalone-bundle/style.css +1 -1
@@ -1,58 +1,140 @@
1
1
  import { useContext } from 'preact/hooks';
2
- import { type FC } from 'react';
3
2
 
4
- import { isSingleSegmented } from '../../lapisApi/ReferenceGenome';
5
- import { type SequenceType } from '../../types';
3
+ import { isSingleSegmented, type ReferenceGenome } from '../../lapisApi/ReferenceGenome';
6
4
  import { ReferenceGenomeContext } from '../ReferenceGenomeContext';
5
+ import { ExampleMutation } from './ExampleMutation';
7
6
  import Info, { InfoHeadline1, InfoHeadline2, InfoParagraph } from '../components/info';
8
7
 
9
8
  export const MutationFilterInfo = () => {
10
- const referenceGenome = useContext(ReferenceGenomeContext);
11
-
12
- const firstGene = referenceGenome.genes[0].name;
13
9
  return (
14
10
  <Info>
15
11
  <InfoHeadline1> Mutation Filter</InfoHeadline1>
16
12
  <InfoParagraph>This component allows you to filter for mutations at specific positions.</InfoParagraph>
17
13
 
14
+ <QuickStart />
15
+ <NucleotideMutationsInfo />
16
+ <AminoAcidMutationsInfo />
17
+ <InsertionWildcards />
18
+ <MultipleMutations />
19
+ <AnyMutation />
20
+ <NoMutation />
21
+ </Info>
22
+ );
23
+ };
24
+
25
+ const QuickStart = () => {
26
+ const referenceGenome = useContext(ReferenceGenomeContext);
27
+ return (
28
+ <>
18
29
  <InfoHeadline2>Quickstart</InfoHeadline2>
19
30
  <InfoParagraph>
20
31
  <ul className='list-disc list-inside'>
21
- <li>
22
- Filter for nucleotide mutations:{' '}
23
- <ExampleMutation mutationType='substitution' sequenceType='nucleotide' />
24
- </li>
25
- <li>
26
- Filter for amino acid mutations:{' '}
27
- <ExampleMutation mutationType='insertion' sequenceType='nucleotide' />
28
- </li>
29
- <li>
30
- Filter for nucleotide insertions:{' '}
31
- <ExampleMutation mutationType='substitution' sequenceType='amino acid' />
32
- </li>
33
- <li>
34
- Filter for amino acid insertions:{' '}
35
- <ExampleMutation mutationType='insertion' sequenceType='amino acid' />
36
- </li>
32
+ {referenceGenome.nucleotideSequences.length > 0 && (
33
+ <li>
34
+ Filter for nucleotide mutations:{' '}
35
+ <ExampleMutation mutationType='substitution' sequenceType='nucleotide' />
36
+ </li>
37
+ )}
38
+ {referenceGenome.genes.length > 0 && (
39
+ <li>
40
+ Filter for amino acid mutations:{' '}
41
+ <ExampleMutation mutationType='substitution' sequenceType='amino acid' />
42
+ </li>
43
+ )}
44
+ {referenceGenome.nucleotideSequences.length > 0 && (
45
+ <li>
46
+ Filter for nucleotide insertions:{' '}
47
+ <ExampleMutation mutationType='insertion' sequenceType='nucleotide' />
48
+ </li>
49
+ )}
50
+ {referenceGenome.genes.length > 0 && (
51
+ <li>
52
+ Filter for amino acid insertions:{' '}
53
+ <ExampleMutation mutationType='insertion' sequenceType='amino acid' />
54
+ </li>
55
+ )}
37
56
  </ul>
38
57
  </InfoParagraph>
39
- {!isSingleSegmented(referenceGenome) && (
58
+
59
+ {referenceGenome.nucleotideSequences.length > 1 ? (
40
60
  <InfoParagraph>
41
61
  This organism has the following segments:{' '}
42
62
  {referenceGenome.nucleotideSequences.map((gene) => gene.name).join(', ')}.
43
63
  </InfoParagraph>
64
+ ) : (
65
+ <InfoParagraph>This organism doesn't support nucleotide sequences.</InfoParagraph>
66
+ )}
67
+ {referenceGenome.genes.length !== 0 ? (
68
+ <InfoParagraph>
69
+ This organism has the following genes: {referenceGenome.genes.map((gene) => gene.name).join(', ')}.
70
+ </InfoParagraph>
71
+ ) : (
72
+ <InfoParagraph>This organism doesn't support amino acid sequences.</InfoParagraph>
44
73
  )}
74
+ </>
75
+ );
76
+ };
77
+
78
+ const NucleotideMutationsInfo = () => {
79
+ const referenceGenome = useContext(ReferenceGenomeContext);
80
+
81
+ if (referenceGenome.nucleotideSequences.length === 0) {
82
+ return null;
83
+ }
84
+
85
+ if (isSingleSegmented(referenceGenome)) {
86
+ return (
87
+ <>
88
+ <InfoHeadline2>Nucleotide Mutations and Insertions</InfoHeadline2>
89
+ <InfoParagraph>
90
+ This organism is single-segmented. Thus, nucleotide mutations have the format{' '}
91
+ <b>&lt;position&gt;&lt;base&gt;</b> or <b>&lt;base_ref&gt;&lt;position&gt;&lt;base&gt;</b>. The{' '}
92
+ <b>&lt;base_ref&gt;</b> is the reference base at the position. It is optional. A <b>&lt;base&gt;</b>{' '}
93
+ can be one of the four nucleotides <b>A</b>, <b>T</b>, <b>C</b>, and <b>G</b>. It can also be{' '}
94
+ <b>-</b> for deletion and <b>N</b> for unknown. For example if the reference sequence is <b>A</b> at
95
+ position <b>23</b> both: <b>23T</b> and <b>A23T</b> will yield the same results.
96
+ </InfoParagraph>
97
+ <InfoParagraph>
98
+ Insertions can be searched for in the same manner, they just need to have <b>ins_</b> appended to
99
+ the start of the mutation. Example: <b>ins_1046:A</b> would filter for sequences with an insertion
100
+ of A between the positions 1046 and 1047 in the nucleotide sequence.
101
+ </InfoParagraph>
102
+ </>
103
+ );
104
+ }
105
+
106
+ const firstSegment = referenceGenome.nucleotideSequences[0].name;
107
+ return (
108
+ <>
109
+ <InfoHeadline2>Nucleotide Mutations and Insertions</InfoHeadline2>
45
110
  <InfoParagraph>
46
- This organism has the following genes: {referenceGenome.genes.map((gene) => gene.name).join(', ')}.
111
+ This organism is multi-segmented. Thus, nucleotide mutations have the format{' '}
112
+ <b>&lt;segment&gt;:&lt;position&gt;&lt;base&gt;</b> or{' '}
113
+ <b>&lt;segment&gt;:&lt;base_ref&gt;&lt;position&gt;&lt;base&gt;</b>. <b>&lt;base_ref&gt;</b> is the
114
+ reference base at the position. It is optional. A <b>&lt;base&gt;</b> can be one of the four nucleotides{' '}
115
+ <b>A</b>, <b>T</b>, <b>C</b>, and <b>G</b>. It can also be <b>-</b> for deletion and <b>N</b> for
116
+ unknown. For example if the reference sequence is <b>A</b> at position <b>23</b> both:{' '}
117
+ <b>{firstSegment}:23T</b> and <b>{firstSegment}:A23T</b> will yield the same results.
47
118
  </InfoParagraph>
119
+ <InfoParagraph>
120
+ Insertions can be searched for in the same manner, they just need to have <b>ins_</b> appended to the
121
+ start of the mutation. Example: <ExampleMutation mutationType='insertion' sequenceType='nucleotide' />.
122
+ </InfoParagraph>
123
+ </>
124
+ );
125
+ };
48
126
 
49
- <InfoHeadline2>Nucleotide Mutations and Insertions</InfoHeadline2>
50
- {isSingleSegmented(referenceGenome) ? (
51
- <SingleSegmentedNucleotideMutationsInfo />
52
- ) : (
53
- <MultiSegmentedNucleotideMutationsInfo />
54
- )}
127
+ const AminoAcidMutationsInfo = () => {
128
+ const referenceGenome = useContext(ReferenceGenomeContext);
55
129
 
130
+ if (referenceGenome.genes.length === 0) {
131
+ return null;
132
+ }
133
+
134
+ const firstGene = referenceGenome.genes[0].name;
135
+
136
+ return (
137
+ <>
56
138
  <InfoHeadline2>Amino Acid Mutations and Insertions</InfoHeadline2>
57
139
  <InfoParagraph>
58
140
  An amino acid mutation has the format <b>&lt;gene&gt;:&lt;position&gt;&lt;base&gt;</b> or
@@ -65,116 +147,101 @@ export const MutationFilterInfo = () => {
65
147
  start of the mutation. Example: <b>ins_{firstGene}:31:N</b> would filter for sequences with an insertion
66
148
  of N between positions 31 and 32 in the gene {firstGene}.
67
149
  </InfoParagraph>
150
+ </>
151
+ );
152
+ };
153
+
154
+ const InsertionWildcards = () => {
155
+ const referenceGenome = useContext(ReferenceGenomeContext);
68
156
 
157
+ if (referenceGenome.nucleotideSequences.length === 0 && referenceGenome.genes.length === 0) {
158
+ return null;
159
+ }
160
+
161
+ return (
162
+ <>
69
163
  <InfoHeadline2>Insertion Wildcards</InfoHeadline2>
70
164
  <InfoParagraph>
71
- This component supports insertion queries that contain wildcards <b>?</b>. For example{' '}
72
- <b>ins_{firstGene}:214:?EP?</b> will match all cases where segment <b>{firstGene}</b> has an insertion
73
- of <b>EP</b> between the positions <b>214</b> and <b>215</b> but also an insertion of other amino acids
74
- which include the <b>EP</b>, e.g. the insertion <b>EPE</b> will be matched.
165
+ This component supports nucleotide and amino acid insertion queries that contain wildcards <b>?</b>. For
166
+ example{' '}
167
+ <b>
168
+ ins_{exampleSegmentString(referenceGenome)}214:?{exampleWildcardInsertion(referenceGenome)}?
169
+ </b>{' '}
170
+ will match all cases where segment <b>{exampleSegment(referenceGenome)}</b> has an insertion of{' '}
171
+ <b>{exampleWildcardInsertion(referenceGenome)}</b> between the positions <b>214</b> and <b>215</b> but
172
+ also an insertion of other amino acids which include the <b>EP</b>, e.g. the insertion{' '}
173
+ <b>{exampleWildcardInsertion(referenceGenome)}T</b> will be matched.
75
174
  </InfoParagraph>
76
175
  <InfoParagraph>
77
176
  You can also use wildcards to match any insertion at a given position. For example{' '}
78
- <b>ins_{firstGene}:214:?</b> match any (but at least one) insertion between the positions 214 and 215.
177
+ <b>ins_{exampleSegmentString(referenceGenome)}214:?</b> match any (but at least one) insertion between
178
+ the positions 214 and 215.
79
179
  </InfoParagraph>
180
+ </>
181
+ );
182
+ };
80
183
 
81
- <InfoHeadline2>Multiple Mutations</InfoHeadline2>
82
- <InfoParagraph>
83
- Multiple mutation filters can be provided by adding one mutation after the other.
84
- </InfoParagraph>
184
+ const exampleSegmentString = (referenceGenome: ReferenceGenome) => {
185
+ const segment = exampleSegment(referenceGenome);
186
+ if (segment === '') {
187
+ return '';
188
+ }
189
+ return `${segment}:`;
190
+ };
85
191
 
86
- <InfoHeadline2>Any Mutation</InfoHeadline2>
87
- <InfoParagraph>
88
- To filter for any mutation at a given position you can omit the <b>&lt;base&gt;</b>. Example:{' '}
89
- <b>{firstGene}:20</b>.
90
- </InfoParagraph>
192
+ const exampleSegment = (referenceGenome: ReferenceGenome) => {
193
+ if (referenceGenome.genes.length > 0) {
194
+ return `${referenceGenome.genes[0].name}`;
195
+ }
196
+ if (referenceGenome.nucleotideSequences.length > 1) {
197
+ return `${referenceGenome.nucleotideSequences[0].name}`;
198
+ }
199
+ return '';
200
+ };
91
201
 
92
- <InfoHeadline2>No Mutation</InfoHeadline2>
93
- <InfoParagraph>
94
- You can write a <b>.</b> for the <b>&lt;base&gt;</b> to filter for sequences for which it is confirmed
95
- that no mutation occurred, i.e. has the same base as the reference genome at the specified position.
96
- </InfoParagraph>
97
- </Info>
98
- );
202
+ const exampleWildcardInsertion = (referenceGenome: ReferenceGenome) => {
203
+ if (referenceGenome.genes.length > 0) {
204
+ return 'EP';
205
+ }
206
+ if (referenceGenome.nucleotideSequences.length > 0) {
207
+ return 'CG';
208
+ }
209
+ return '';
99
210
  };
100
211
 
101
- const SingleSegmentedNucleotideMutationsInfo = () => {
212
+ const MultipleMutations = () => {
102
213
  return (
103
214
  <>
215
+ <InfoHeadline2>Multiple Mutations</InfoHeadline2>
104
216
  <InfoParagraph>
105
- This organism is single-segmented. Thus, nucleotide mutations have the format{' '}
106
- <b>&lt;position&gt;&lt;base&gt;</b> or <b>&lt;base_ref&gt;&lt;position&gt;&lt;base&gt;</b>. The{' '}
107
- <b>&lt;base_ref&gt;</b> is the reference base at the position. It is optional. A <b>&lt;base&gt;</b> can
108
- be one of the four nucleotides <b>A</b>, <b>T</b>, <b>C</b>, and <b>G</b>. It can also be <b>-</b> for
109
- deletion and <b>N</b> for unknown. For example if the reference sequence is <b>A</b> at position{' '}
110
- <b>23</b> both: <b>23T</b> and <b>A23T</b> will yield the same results.
111
- </InfoParagraph>
112
- <InfoParagraph>
113
- Insertions can be searched for in the same manner, they just need to have <b>ins_</b> appended to the
114
- start of the mutation. Example: <b>ins_1046:A</b> would filter for sequences with an insertion of A
115
- between the positions 1046 and 1047 in the nucleotide sequence.
217
+ Multiple mutation filters can be provided by adding one mutation after the other.
116
218
  </InfoParagraph>
117
219
  </>
118
220
  );
119
221
  };
120
222
 
121
- const MultiSegmentedNucleotideMutationsInfo = () => {
223
+ const AnyMutation = () => {
122
224
  const referenceGenome = useContext(ReferenceGenomeContext);
123
225
 
124
- const firstSegment = referenceGenome.nucleotideSequences[0].name;
125
-
126
226
  return (
127
227
  <>
228
+ <InfoHeadline2>Any Mutation</InfoHeadline2>
128
229
  <InfoParagraph>
129
- This organism is multi-segmented. Thus, nucleotide mutations have the format{' '}
130
- <b>&lt;segment&gt;:&lt;position&gt;&lt;base&gt;</b> or{' '}
131
- <b>&lt;segment&gt;:&lt;base_ref&gt;&lt;position&gt;&lt;base&gt;</b>. <b>&lt;base_ref&gt;</b> is the
132
- reference base at the position. It is optional. A <b>&lt;base&gt;</b> can be one of the four nucleotides{' '}
133
- <b>A</b>, <b>T</b>, <b>C</b>, and <b>G</b>. It can also be <b>-</b> for deletion and <b>N</b> for
134
- unknown. For example if the reference sequence is <b>A</b> at position <b>23</b> both:{' '}
135
- <b>{firstSegment}:23T</b> and <b>{firstSegment}:A23T</b> will yield the same results.
136
- </InfoParagraph>
137
- <InfoParagraph>
138
- Insertions can be searched for in the same manner, they just need to have <b>ins_</b> appended to the
139
- start of the mutation. Example: <ExampleMutation mutationType='insertion' sequenceType='nucleotide' />.
230
+ To filter for any mutation at a given position you can omit the <b>&lt;base&gt;</b>. Example:{' '}
231
+ <b>{exampleSegmentString(referenceGenome)}20</b>.
140
232
  </InfoParagraph>
141
233
  </>
142
234
  );
143
235
  };
144
236
 
145
- type ExampleMutationProps = {
146
- sequenceType: SequenceType;
147
- mutationType: 'substitution' | 'insertion';
148
- };
149
-
150
- const ExampleMutation: FC<ExampleMutationProps> = ({ sequenceType, mutationType }) => {
151
- const referenceGenome = useContext(ReferenceGenomeContext);
152
-
153
- const firstSegment = referenceGenome.nucleotideSequences[0].name;
154
- const firstGene = referenceGenome.genes[0].name;
155
-
156
- if (sequenceType === 'amino acid') {
157
- switch (mutationType) {
158
- case 'substitution':
159
- return <b>{firstGene}:57Q</b>;
160
- case 'insertion':
161
- return <b>ins_{firstGene}:31:N</b>;
162
- }
163
- }
164
-
165
- if (isSingleSegmented(referenceGenome)) {
166
- switch (mutationType) {
167
- case 'substitution':
168
- return <b>23T</b>;
169
- case 'insertion':
170
- return <b>ins_1046:A</b>;
171
- }
172
- }
173
-
174
- switch (mutationType) {
175
- case 'substitution':
176
- return <b>{firstSegment}:23T</b>;
177
- case 'insertion':
178
- return <b>ins_{firstSegment}:10462:A</b>;
179
- }
237
+ const NoMutation = () => {
238
+ return (
239
+ <>
240
+ <InfoHeadline2>No Mutation</InfoHeadline2>
241
+ <InfoParagraph>
242
+ You can write a <b>.</b> for the <b>&lt;base&gt;</b> to filter for sequences for which it is confirmed
243
+ that no mutation occurred, i.e. has the same base as the reference genome at the specified position.
244
+ </InfoParagraph>
245
+ </>
246
+ );
180
247
  };
@@ -2,6 +2,7 @@ import { type FunctionComponent } from 'preact';
2
2
  import { useContext, useRef, useState } from 'preact/hooks';
3
3
  import z from 'zod';
4
4
 
5
+ import { getExampleMutation } from './ExampleMutation';
5
6
  import { MutationFilterInfo } from './mutation-filter-info';
6
7
  import { parseAndValidateMutation, type ParsedMutationFilter } from './parseAndValidateMutation';
7
8
  import { type ReferenceGenome } from '../../lapisApi/ReferenceGenome';
@@ -208,7 +209,6 @@ const MutationFilterSelector: FunctionComponent<{
208
209
  };
209
210
 
210
211
  const handleBlur = (event: FocusEvent) => {
211
- // Check if click was inside the selector
212
212
  if (!selectorRef.current?.contains(event.relatedTarget as Node)) {
213
213
  setOption(null);
214
214
  }
@@ -242,11 +242,16 @@ const MutationFilterSelector: FunctionComponent<{
242
242
  };
243
243
 
244
244
  function getPlaceholder(referenceGenome: ReferenceGenome) {
245
- const segmentPrefix =
246
- referenceGenome.nucleotideSequences.length > 1 ? `${referenceGenome.nucleotideSequences[0].name}:` : '';
247
- const firstGene = referenceGenome.genes[0].name;
245
+ const nucleotideSubstitution = getExampleMutation(referenceGenome, 'nucleotide', 'substitution');
246
+ const nucleotideInsertion = getExampleMutation(referenceGenome, 'nucleotide', 'insertion');
247
+ const aminoAcidSubstitution = getExampleMutation(referenceGenome, 'amino acid', 'substitution');
248
+ const aminoAcidInsertion = getExampleMutation(referenceGenome, 'amino acid', 'insertion');
248
249
 
249
- return `Enter a mutation (e.g. ${segmentPrefix}A123T, ins_${segmentPrefix}123:AT, ${firstGene}:M123E, ins_${firstGene}:123:ME)`;
250
+ const exampleMutations = [nucleotideSubstitution, nucleotideInsertion, aminoAcidSubstitution, aminoAcidInsertion]
251
+ .filter((example) => example !== '')
252
+ .join(', ');
253
+
254
+ return `Enter a mutation (e.g. ${exampleMutations})`;
250
255
  }
251
256
 
252
257
  const backgroundColor: { [key in keyof SelectedFilters]: string } = {
@@ -49,13 +49,23 @@ const MutationsOverTimeGrid: FunctionComponent<MutationsOverTimeGridProps> = ({
49
49
  gridTemplateRows: `repeat(${shownMutations.length}, 24px)`,
50
50
  gridTemplateColumns: `${MUTATION_CELL_WIDTH_REM}rem repeat(${dates.length}, minmax(0.05rem, 1fr))`,
51
51
  }}
52
+ className='text-center'
52
53
  >
54
+ {dates.map((date, columnIndex) => (
55
+ <div
56
+ className='@container font-semibold'
57
+ style={{ gridRowStart: 1, gridColumnStart: columnIndex + 2 }}
58
+ key={date.dateString}
59
+ >
60
+ <p {...styleGridHeader(columnIndex, dates)}>{date.dateString}</p>
61
+ </div>
62
+ ))}
53
63
  {shownMutations.map((mutation, rowIndex) => {
54
64
  return (
55
65
  <Fragment key={`fragment-${mutation.toString()}`}>
56
66
  <div
57
67
  key={`mutation-${mutation.toString()}`}
58
- style={{ gridRowStart: rowIndex + 1, gridColumnStart: 1 }}
68
+ style={{ gridRowStart: rowIndex + 2, gridColumnStart: 1 }}
59
69
  >
60
70
  <MutationCell mutation={mutation} />
61
71
  </div>
@@ -69,7 +79,7 @@ const MutationsOverTimeGrid: FunctionComponent<MutationsOverTimeGridProps> = ({
69
79
  );
70
80
  return (
71
81
  <div
72
- style={{ gridRowStart: rowIndex + 1, gridColumnStart: columnIndex + 2 }}
82
+ style={{ gridRowStart: rowIndex + 2, gridColumnStart: columnIndex + 2 }}
73
83
  key={`${mutation.toString()}-${date.toString()}`}
74
84
  >
75
85
  <ProportionCell
@@ -90,6 +100,18 @@ const MutationsOverTimeGrid: FunctionComponent<MutationsOverTimeGridProps> = ({
90
100
  );
91
101
  };
92
102
 
103
+ function styleGridHeader(columnIndex: number, dates: Temporal[]) {
104
+ if (columnIndex === 0) {
105
+ return { className: 'overflow-visible text-nowrap' };
106
+ }
107
+
108
+ if (columnIndex === dates.length - 1) {
109
+ return { className: 'overflow-visible text-nowrap', style: { direction: 'rtl' } };
110
+ }
111
+
112
+ return { className: 'invisible @[6rem]:visible' };
113
+ }
114
+
93
115
  function getTooltipPosition(rowIndex: number, rows: number, columnIndex: number, columns: number) {
94
116
  const tooltipX = rowIndex < rows / 2 || rowIndex < 6 ? 'bottom' : 'top';
95
117
  const tooltipY = columnIndex < columns / 2 ? 'start' : 'end';
@@ -135,7 +157,7 @@ const ProportionCell: FunctionComponent<{
135
157
  backgroundColor: getColorWithingScale(value?.proportion, colorScale),
136
158
  color: getTextColorForScale(value?.proportion, colorScale),
137
159
  }}
138
- className={`w-full h-full text-center hover:font-bold text-xs group @container`}
160
+ className={`w-full h-full hover:font-bold text-xs group @container`}
139
161
  >
140
162
  <span className='invisible @[2rem]:visible'>
141
163
  {value === null ? '' : formatProportion(value.proportion, 0)}
@@ -155,7 +177,7 @@ const timeIntervalDisplay = (date: TemporalClass) => {
155
177
  };
156
178
 
157
179
  const MutationCell: FunctionComponent<{ mutation: Substitution | Deletion }> = ({ mutation }) => {
158
- return <div className='text-center'>{mutation.code}</div>;
180
+ return <div>{mutation.code}</div>;
159
181
  };
160
182
 
161
183
  export default MutationsOverTimeGrid;
@@ -30,12 +30,7 @@ const Template = {
30
30
  render: (args: WastewaterMutationsOverTimeProps) => (
31
31
  <LapisUrlContext.Provider value={WISE_LAPIS_URL}>
32
32
  <ReferenceGenomeContext.Provider value={referenceGenome}>
33
- <WastewaterMutationsOverTime
34
- width={args.width}
35
- height={args.height}
36
- lapisFilter={args.lapisFilter}
37
- sequenceType={args.sequenceType}
38
- />
33
+ <WastewaterMutationsOverTime {...args} />
39
34
  </ReferenceGenomeContext.Provider>
40
35
  </LapisUrlContext.Provider>
41
36
  ),
@@ -48,6 +43,7 @@ export const Default: StoryObj<WastewaterMutationsOverTimeProps> = {
48
43
  height: '700px',
49
44
  lapisFilter: {},
50
45
  sequenceType: 'nucleotide',
46
+ maxNumberOfGridRows: 100,
51
47
  },
52
48
  parameters: {
53
49
  fetchMock: {
@@ -23,7 +23,7 @@ const wastewaterMutationOverTimeSchema = z.object({
23
23
  sequenceType: sequenceTypeSchema,
24
24
  width: z.string(),
25
25
  height: z.string(),
26
- maxNumberOfGridRows: z.number().optional(),
26
+ maxNumberOfGridRows: z.number(),
27
27
  });
28
28
 
29
29
  export type WastewaterMutationsOverTimeProps = z.infer<typeof wastewaterMutationOverTimeSchema>;
@@ -4,7 +4,7 @@ import type { Meta, StoryObj } from '@storybook/web-components';
4
4
  import { html, LitElement } from 'lit';
5
5
  import { customElement } from 'lit/decorators.js';
6
6
 
7
- import './app';
7
+ import './gs-app';
8
8
 
9
9
  import { lapisContext } from './lapis-context';
10
10
  import { referenceGenomeContext } from './reference-genome-context';
@@ -29,7 +29,7 @@ const lapisUrlSchema = z.string().url();
29
29
  * This component does __not__ use a shadow DOM. Children of this component will be rendered directly in the light DOM.
30
30
  */
31
31
  @customElement('gs-app')
32
- export class App extends LitElement {
32
+ export class AppComponent extends LitElement {
33
33
  /**
34
34
  * Required.
35
35
  *
@@ -84,7 +84,7 @@ function GsAppError(error: string) {
84
84
 
85
85
  declare global {
86
86
  interface HTMLElementTagNameMap {
87
- 'gs-app': App;
87
+ 'gs-app': AppComponent;
88
88
  }
89
89
  }
90
90
 
@@ -1,4 +1,4 @@
1
- export { App } from './app.js';
1
+ export { AppComponent } from './gs-app';
2
2
  export * from './visualization';
3
3
  export * from './wastewaterVisualization';
4
4
  export * from './input';
@@ -7,7 +7,7 @@ import { previewHandles } from '../../../.storybook/preview';
7
7
  import { LAPIS_URL } from '../../constants';
8
8
  import { type DateRangeSelectorProps } from '../../preact/dateRangeSelector/date-range-selector';
9
9
  import './gs-date-range-selector';
10
- import '../app';
10
+ import '../gs-app';
11
11
  import { toYYYYMMDD } from '../../preact/dateRangeSelector/dateConversion';
12
12
  import { dateRangeOptionPresets } from '../../preact/dateRangeSelector/dateRangeOption';
13
13
  import { withinShadowRoot } from '../withinShadowRoot.story';
@@ -5,7 +5,7 @@ import { html } from 'lit';
5
5
  import { withComponentDocs } from '../../../.storybook/ComponentDocsBlock';
6
6
  import { previewHandles } from '../../../.storybook/preview';
7
7
  import { AGGREGATED_ENDPOINT, LAPIS_URL } from '../../constants';
8
- import '../app';
8
+ import '../gs-app';
9
9
  import './gs-lineage-filter';
10
10
  import aggregatedData from '../../preact/lineageFilter/__mockData__/aggregated.json';
11
11
  import { type LineageFilterProps } from '../../preact/lineageFilter/lineage-filter';
@@ -6,7 +6,7 @@ import { ifDefined } from 'lit/directives/if-defined.js';
6
6
  import { withComponentDocs } from '../../../.storybook/ComponentDocsBlock';
7
7
  import { previewHandles } from '../../../.storybook/preview';
8
8
  import { AGGREGATED_ENDPOINT, LAPIS_URL } from '../../constants';
9
- import '../app';
9
+ import '../gs-app';
10
10
  import './gs-location-filter';
11
11
  import data from '../../preact/locationFilter/__mockData__/aggregated.json';
12
12
  import { type LocationFilterProps } from '../../preact/locationFilter/location-filter';
@@ -5,7 +5,7 @@ import { html } from 'lit';
5
5
  import { withComponentDocs } from '../../../.storybook/ComponentDocsBlock';
6
6
  import { previewHandles } from '../../../.storybook/preview';
7
7
  import { LAPIS_URL, REFERENCE_GENOME_ENDPOINT } from '../../constants';
8
- import '../app';
8
+ import '../gs-app';
9
9
  import { type MutationFilterProps } from '../../preact/mutationFilter/mutation-filter';
10
10
  import { withinShadowRoot } from '../withinShadowRoot.story';
11
11
  import './gs-mutation-filter';
@@ -158,7 +158,7 @@ export const MultiSegmentedReferenceGenomes: StoryObj<MutationFilterProps> = {
158
158
  const placeholderText = inputField().getAttribute('placeholder');
159
159
 
160
160
  expect(placeholderText).toEqual(
161
- 'Enter a mutation (e.g. seg1:A123T, ins_seg1:123:AT, gene1:M123E, ins_gene1:123:ME)',
161
+ 'Enter a mutation (e.g. seg1:23T, ins_seg1:10462:A, gene1:57Q, ins_gene1:31:N)',
162
162
  );
163
163
  });
164
164
 
@@ -5,7 +5,7 @@ import { html } from 'lit';
5
5
  import { withComponentDocs } from '../../../.storybook/ComponentDocsBlock';
6
6
  import { previewHandles } from '../../../.storybook/preview';
7
7
  import { AGGREGATED_ENDPOINT, LAPIS_URL } from '../../constants';
8
- import '../app';
8
+ import '../gs-app';
9
9
  import './gs-text-input';
10
10
  import data from '../../preact/textInput/__mockData__/aggregated_hosts.json';
11
11
  import type { TextInputProps } from '../../preact/textInput/text-input';
@@ -9,7 +9,7 @@ import aggregatedDataWith2Fields from '../../preact/aggregatedData/__mockData__/
9
9
  import type { AggregateProps } from '../../preact/aggregatedData/aggregate';
10
10
 
11
11
  import './gs-aggregate';
12
- import '../app';
12
+ import '../gs-app';
13
13
 
14
14
  const codeExample = `
15
15
  <gs-aggregate
@@ -3,7 +3,7 @@ import type { Meta, StoryObj } from '@storybook/web-components';
3
3
  import { html } from 'lit';
4
4
 
5
5
  import './gs-mutation-comparison';
6
- import '../app';
6
+ import '../gs-app';
7
7
  import { withComponentDocs } from '../../../.storybook/ComponentDocsBlock';
8
8
  import { LAPIS_URL, NUCLEOTIDE_MUTATIONS_ENDPOINT } from '../../constants';
9
9
  import nucleotideMutationsOtherDataset from '../../preact/mutationComparison/__mockData__/nucleotideMutationsOtherDataset.json';
@@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/web-components';
2
2
  import { html } from 'lit';
3
3
 
4
4
  import './gs-mutations-over-time';
5
- import '../app';
5
+ import '../gs-app';
6
6
  import { withComponentDocs } from '../../../.storybook/ComponentDocsBlock';
7
7
  import { LAPIS_URL } from '../../constants';
8
8
  import { type MutationsOverTimeProps } from '../../preact/mutationsOverTime/mutations-over-time';
@@ -17,7 +17,7 @@ import { type MutationsProps } from '../../preact/mutations/mutations';
17
17
  import { withinShadowRoot } from '../withinShadowRoot.story';
18
18
 
19
19
  import './gs-mutations';
20
- import '../app';
20
+ import '../gs-app';
21
21
 
22
22
  const codeExample = String.raw`
23
23
  <gs-mutations