Skip to content

Commit

Permalink
feat: remove metadata availability plot from landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
chaoran-chen committed Jan 12, 2025
1 parent 5347d56 commit fadc633
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/pages/ExplorePage.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { KnownVariantsList } from '../components/KnownVariantsList/KnownVariantsList';
import { SequencingIntensityChartWidget } from '../widgets/SequencingIntensityChartWidget';
import { ShowMoreButton } from '../helpers/ui';
import { MetadataAvailabilityChartWidget } from '../widgets/MetadataAvailabilityChartWidget';
import { DatelessCountrylessCountSampleData } from '../data/sample/DatelessCountrylessCountSampleDataset';
import React, { useEffect } from 'react';
import { useExploreUrl } from '../helpers/explore-url';
Expand Down Expand Up @@ -90,13 +89,15 @@ export const ExplorePage = ({ isSmallScreen }: Props) => {
height={300}
toolbarChildren={<ShowMoreButton to={exploreUrl.getDeepExplorePageUrl('/sequencing-coverage')} />}
/>
<div>
<MetadataAvailabilityChartWidget.ShareableComponent
title='Metadata Availability'
sampleSet={wholeDatelessDataset.data}
height={300}
/>
</div>
{/*This widget is quite slow (which can be (probably easily) improved but as it is probably not
super useful, it's easier to just disable it.*/}
{/*<div>*/}
{/* <MetadataAvailabilityChartWidget.ShareableComponent*/}
{/* title='Metadata Availability'*/}
{/* sampleSet={wholeDatelessDataset.data}*/}
{/* height={300}*/}
{/* />*/}
{/*</div>*/}
</div>
</div>
</div>
Expand Down

0 comments on commit fadc633

Please sign in to comment.