Skip to content

Commit

Permalink
Show all short variant datasets in variant page dataset selector
Browse files Browse the repository at this point in the history
  • Loading branch information
phildarnowsky-broad committed Nov 22, 2023
1 parent c1f34dd commit a9a5fb7
Show file tree
Hide file tree
Showing 2 changed files with 1,166 additions and 3 deletions.
5 changes: 2 additions & 3 deletions browser/src/VariantPage/VariantPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import {
isLiftoverSource,
isLiftoverTarget,
usesGrch37,
usesGrch38,
isV3,
isV3Subset,
isV4,
Expand Down Expand Up @@ -868,8 +867,8 @@ const VariantPage = ({ datasetId, variantId }: VariantPageProps) => {
// Include ExAC for GRCh37 datasets
includeExac: usesGrch37(datasetId),
// Include gnomAD versions based on the same reference genome as the current dataset
includeGnomad2: usesGrch37(datasetId),
includeGnomad3: usesGrch38(datasetId),
includeGnomad2: true,
includeGnomad3: true,
// Variant ID not valid for SVs
includeStructuralVariants: false,
includeCopyNumberVariants: false,
Expand Down
Loading

0 comments on commit a9a5fb7

Please sign in to comment.