Skip to content

Commit

Permalink
Merge pull request #609 from alliance-genome/HGVSp_unicode_fix
Browse files Browse the repository at this point in the history
HGVSp unicode fix
  • Loading branch information
markquintontulloch authored Aug 10, 2021
2 parents aae6435 + 89491fe commit 60ba8c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/etl/vep_transcript_etl.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def get_generators(self, filepath, data_provider): # noqa Needs simplyfying
if key == 'IMPACT':
impact = value
elif key == 'HGVSp':
hgvs_p = value
hgvs_p = value.replace("%3D", "=")
elif key == 'HGVSc':
hgvs_c = value
elif key == 'HGVSg':
Expand Down

0 comments on commit 60ba8c0

Please sign in to comment.