diff --git a/CHANGELOG.md b/CHANGELOG.md index dff327936..9abdbd53e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,7 @@ * Fixed available versions for gnomAD v2 `coverage` and `liftover` resources [(#352)](https://github.com/broadinstitute/gnomad_methods/pull/352) * Removed side effect of accessing gnomAD v2 `coverage` and `liftover` exome resources that would edit available versions for other resources [(#352)](https://github.com/broadinstitute/gnomad_methods/pull/352) * Use `overwrite` argument for importing a BlockMatrixResource [(#342)](https://github.com/broadinstitute/gnomad_methods/pull/342) +* Add resource for v3.1.1 release [(#364)](https://github.com/broadinstitute/gnomad_methods/pull/364) ## Version 0.4.0 - July 9th, 2020 diff --git a/gnomad/resources/grch38/gnomad.py b/gnomad/resources/grch38/gnomad.py index 18b91aa94..095158bf2 100644 --- a/gnomad/resources/grch38/gnomad.py +++ b/gnomad/resources/grch38/gnomad.py @@ -8,10 +8,10 @@ from typing import Optional CURRENT_EXOME_RELEASE = "" -CURRENT_GENOME_RELEASE = "3.1" +CURRENT_GENOME_RELEASE = "3.1.1" CURRENT_GENOME_COVERAGE_RELEASE = "3.0.1" EXOME_RELEASES = [] -GENOME_RELEASES = ["3.0", "3.1"] +GENOME_RELEASES = ["3.0", "3.1", "3.1.1"] GENOME_COVERAGE_RELEASES = GENOME_RELEASES + ["3.0.1"] DATA_TYPES = ["genomes"]