From f01859800f1e10257211af6908a4182dd1fcaad4 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Thu, 19 Oct 2023 08:17:56 +0200 Subject: [PATCH] https://github.com/monarch-initiative/genophenocorr/issues/81 --- src/genophenocorr/preprocessing/_vep.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/genophenocorr/preprocessing/_vep.py b/src/genophenocorr/preprocessing/_vep.py index af254762a..51a023eb2 100644 --- a/src/genophenocorr/preprocessing/_vep.py +++ b/src/genophenocorr/preprocessing/_vep.py @@ -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):