Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update downloads page to say v4.1.0 #1552

Merged
merged 2 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion browser/src/DownloadsPage/GnomadV4Downloads.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const GnomadV4Downloads = () => {
v4 Downloads
</SectionTitle>
<StyledParagraph>
The gnomAD v4.0.0 data set contains data from 730,947 exomes and 76,215 whole genomes, all
The gnomAD v4.1.0 data set contains data from 730,947 exomes and 76,215 whole genomes, all
mapped to the GRCh38 reference sequence.
</StyledParagraph>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ exports[`Downloads Page has no unexpected changes 1`] = `
<p
className="c11"
>
The gnomAD v4.0.0 data set contains data from 730,947 exomes and 76,215 whole genomes, all mapped to the GRCh38 reference sequence.
The gnomAD v4.1.0 data set contains data from 730,947 exomes and 76,215 whole genomes, all mapped to the GRCh38 reference sequence.
</p>
<span
className="c6"
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/GenePage.playwright.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test.describe('Gene page', () => {
await expect(page.getByText('Loading gene')).toHaveCount(0)

await expect(
page.getByText('PCSK9 proprotein convertase subtilisin/kexin type 9DatasetgnomAD v4.0.')
page.getByText('PCSK9 proprotein convertase subtilisin/kexin type 9DatasetgnomAD v4.1.')
).toBeVisible({ timeout: 10_000 })
})

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/RegionPage.playwright.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test.describe('Region page', () => {
test('region query', async () => {
await expect(page.getByText('Loading region')).toHaveCount(0)
await expect(
page.getByText('1-55050934-55053465ChangeDatasetgnomAD v4.0.0GRCh38gnomAD v4.0.0807,162')
page.getByText('1-55050934-55053465ChangeDatasetgnomAD v4.1.0GRCh38gnomAD v4.1.0807,162')
).toBeVisible({ timeout: 20_000 })
})

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/TranscriptPage.playwright.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ test.describe('Transcript page', () => {
test('transcript query', async () => {
await expect(page.getByText('Loading transcript')).toHaveCount(0)

await expect(page.getByText('Transcript: ENST00000302118.5DatasetgnomAD v4.0.')).toBeVisible({
await expect(page.getByText('Transcript: ENST00000302118.5DatasetgnomAD v4.1.')).toBeVisible({
timeout: 10_000,
})
})
Expand Down
Loading