Skip to content

Commit

Permalink
fixed one of the ClinVar tests
Browse files Browse the repository at this point in the history
  • Loading branch information
melissacline committed Nov 27, 2024
1 parent 8e32b3a commit 59d14c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipeline/clinvar/test_clinvar.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def test_simple_genomic_coordinate_extraction():
</Location>
"""

measure_el = ET.fromstring(sample_measure)
location_el = ET.fromstring(sample_location)

genomic_coords = clinvar_common.extract_genomic_coordinates_from_location(location_el)

Expand All @@ -34,7 +34,7 @@ def test_genomic_coordinate_extraction_from_NM():
"""
measure_el = ET.fromstring(sample_measure)

genomic_coords = clinvar_common.extract_genomic_coordinates_from_measure(measure_el)
genomic_coords = clinvar_common._extract_genomic_coordinates_from_non_genomic_fields(measure_el)

assert genomic_coords[hgvs_utils.HgvsWrapper.GRCh38_Assem] == variant_utils.VCFVariant(13, 32340945, "CTG", "C")

Expand Down

0 comments on commit 59d14c1

Please sign in to comment.