From 81d299389d3f201db2c3eea82e22b23e0645fa91 Mon Sep 17 00:00:00 2001 From: Theo Sanderson Date: Fri, 13 Dec 2024 22:10:53 +0000 Subject: [PATCH] update --- .../components/SearchPage/DownloadDialog/LinkOutMenu.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/website/src/components/SearchPage/DownloadDialog/LinkOutMenu.tsx b/website/src/components/SearchPage/DownloadDialog/LinkOutMenu.tsx index f5ede7e73..07e4b891e 100644 --- a/website/src/components/SearchPage/DownloadDialog/LinkOutMenu.tsx +++ b/website/src/components/SearchPage/DownloadDialog/LinkOutMenu.tsx @@ -5,6 +5,7 @@ import { type DownloadUrlGenerator, type DownloadOption } from './DownloadUrlGen import { type SequenceFilter } from './SequenceFilters'; import { type ReferenceGenomesSequenceNames } from '../../../types/referencesGenomes'; import { processTemplate } from '../../../utils/templateProcessor'; +import type { DownloadDataType } from './DownloadDataType.ts'; type LinkOut = { name: string; @@ -30,7 +31,10 @@ export const LinkOutMenu: FC = ({ const downloadOption: DownloadOption = { includeOldData: false, includeRestricted: false, - dataType: 'aligned', + dataType : { + type: 'unalignedNucleotideSequences', + segment: 'main' + }, compression: undefined, };