Skip to content

Commit 63a819a

Browse files
authored
Merge pull request #802 from broadinstitute/jg/add_vep_115_gencode_resource
Add GENCODE 49 GTF HT (used in VEP 115) to resources
2 parents 7a749c6 + 238d5da commit 63a819a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

gnomad/resources/grch38/reference_data.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -426,8 +426,20 @@ def get_truth_ht() -> Table:
426426
)
427427

428428
gencode = VersionedTableResource(
429+
# The default version is v39, which is the version of gencode used by VEP 105, which
430+
# is the version used to annotate gnomAD v4.
429431
default_version="v39",
430432
versions={
433+
"v49": GnomadPublicTableResource(
434+
path="gs://gnomad-public-requester-pays/resources/grch38/gencode/gencode.v49.annotation.ht",
435+
import_func=import_gencode,
436+
import_args={
437+
"gtf_path": "gs://gcp-public-data--gnomad/resources/grch38/gencode/gencode.v49.annotation.gtf.gz",
438+
"reference_genome": "GRCh38",
439+
"force": True,
440+
"min_partitions": 100,
441+
},
442+
),
431443
"v39": GnomadPublicTableResource(
432444
path="gs://gnomad-public-requester-pays/resources/grch38/gencode/gencode.v39.annotation.ht",
433445
import_func=import_gencode,

0 commit comments

Comments
 (0)