From 84651d7c0ca0500af87bf41bce74af4adeb683ec Mon Sep 17 00:00:00 2001 From: Fabian Engelniederhammer Date: Tue, 21 Jan 2025 11:36:54 +0100 Subject: [PATCH] the reference is superfluous --- components/src/query/queryWastewaterMutationsOverTime.ts | 1 - .../gs-wastewater-mutations-over-time.tsx | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/components/src/query/queryWastewaterMutationsOverTime.ts b/components/src/query/queryWastewaterMutationsOverTime.ts index 4dfefe22..74385812 100644 --- a/components/src/query/queryWastewaterMutationsOverTime.ts +++ b/components/src/query/queryWastewaterMutationsOverTime.ts @@ -20,7 +20,6 @@ export async function queryWastewaterMutationsOverTime( const fetchData = new FetchDetailsOperator(lapisFilter, [ 'date', 'location', - 'reference', 'nucleotideMutationFrequency', 'aminoAcidMutationFrequency', ]); diff --git a/components/src/web-components/wastewaterVisualization/gs-wastewater-mutations-over-time.tsx b/components/src/web-components/wastewaterVisualization/gs-wastewater-mutations-over-time.tsx index a831b9fa..4d33e90d 100644 --- a/components/src/web-components/wastewaterVisualization/gs-wastewater-mutations-over-time.tsx +++ b/components/src/web-components/wastewaterVisualization/gs-wastewater-mutations-over-time.tsx @@ -22,8 +22,7 @@ import { PreactLitAdapterWithGridJsStyles } from '../PreactLitAdapterWithGridJsS * Every location will be rendered in a separate tab. * The content of the tab is a "mutations over time" grid, similar to the one used in the `gs-mutations-over-time` component. * - * This component also assumes that the LAPIS instance has the field `date` which can be used for the time axis - * and a field `reference` which holds information about which subtype of the organism (e.g. RSA-A or RSV-B) the data is about. + * This component also assumes that the LAPIS instance has the field `date` which can be used for the time axis. */ @customElement('gs-wastewater-mutations-over-time') export class WastewaterMutationsOverTimeComponent extends PreactLitAdapterWithGridJsStyles {