Skip to content

Commit

Permalink
fix(browser): update gencode version on gene page header
Browse files Browse the repository at this point in the history
  • Loading branch information
rileyhgrant committed Jan 15, 2025
1 parent e9acd8d commit 0c8134e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browser/src/GenePage/GeneInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const GeneInfo = ({ gene }: GeneInfoProps) => {
: null

const ucscReferenceGenomeId = gene.reference_genome === 'GRCh37' ? 'hg19' : 'hg38'
const gencodeVersion = gene.reference_genome === 'GRCh37' ? '19' : '35'
const gencodeVersion = gene.reference_genome === 'GRCh37' ? '19' : '39'

const otherTranscripts = gene.transcripts.filter(
(transcript) =>
Expand Down

0 comments on commit 0c8134e

Please sign in to comment.