Skip to content

Commit

Permalink
https://github.com/monarch-initiative/genophenocorr/issues/81
Browse files Browse the repository at this point in the history
  • Loading branch information
pnrobinson committed Oct 19, 2023
1 parent 4b7a714 commit f018598
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/genophenocorr/preprocessing/_vep.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def _query_vep(self, variant_coordinates) -> dict:
api_url = self._url % (verify_start_end_coordinates(variant_coordinates))
r = requests.get(api_url, headers={'Content-Type': 'application/json'})
if not r.ok:
self._logging.error(f"Expected a result but got an Error for variant: {variant_coordinates.as_string()}")
self._logging.error(f"Expected a result but got an Error for variant: {variant_coordinates}")
r.raise_for_status()
results = r.json()
if not isinstance(results, list):
Expand Down

0 comments on commit f018598

Please sign in to comment.