Skip to content

Commit

Permalink
Update variant consequences from Ensembl VEP (#68):
Browse files Browse the repository at this point in the history
* :issue:`68`: Refresh the variant consequences database from Ensembl VEP. The database's latest update was on May 31, 2021.
  • Loading branch information
sbslee committed Sep 3, 2023
1 parent ba8dc74 commit dda26c8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Changelog
* Add new submodule ``pychip``.
* Add new method :meth:`common.reverse_complement`.
* Fix bug in :meth:`common.extract_sequence` where a long DNA sequence output was truncated.
* :issue:`68`: Refresh the variant consequences database from Ensembl VEP. The database's latest update was on May 31, 2021.

0.36.0 (2022-08-12)
-------------------
Expand Down
7 changes: 6 additions & 1 deletion fuc/api/pymaf.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@

# Below is the list of calculated variant consequences from Ensembl VEP:
# https://m.ensembl.org/info/genome/variation/prediction/predicted_data.html
# (accessed on 2021-05-31)
# (accessed on 2023-09-03)
#
# Note that both frameshift_variant and protein_altering_variant require
# additional information to find their correct Variant_Classification.
Expand Down Expand Up @@ -139,6 +139,11 @@
'regulatory_region_variant': 'IGR',
'feature_truncation': 'Targeted_Region',
'intergenic_variant': 'IGR',
'splice_donor_5th_base_variant': 'AMBIGUOUS',
'splice_donor_region_variant': 'AMBIGUOUS',
'splice_polypyrimidine_tract_variant': 'AMBIGUOUS',
'coding_transcript_variant': 'AMBIGUOUS',
'sequence_variant': 'AMBIGUOUS',
}

VARCLS_LIST = [
Expand Down

0 comments on commit dda26c8

Please sign in to comment.