Skip to content

Commit

Permalink
SAP-11534 : improve clnghvs handling by fallback to MeasureSet.name
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-dunnicliffe committed Nov 1, 2019
1 parent 89d3d28 commit 60b0e7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parse_clinvar_xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ def parse_clinvar_tree(handle, dest=sys.stdout, multi=None, verbose=True, genome
# find hgvs_c
if (attribute_type == 'HGVS, coding, RefSeq' and "c." in attribute_value):
current_row['clnhgvs'] = attribute_value
else:
elif "c." in var_name:
current_row['clnhgvs'] = var_name

# find hgvs_p
Expand Down

0 comments on commit 60b0e7f

Please sign in to comment.