From 99e83b76e27f3a0564bcd4a70caed2588d88fe26 Mon Sep 17 00:00:00 2001 From: karlnyr Date: Thu, 13 Nov 2025 16:26:56 +0100 Subject: [PATCH] function call --- microSALT/utils/referencer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microSALT/utils/referencer.py b/microSALT/utils/referencer.py index 357b4dee..d77b5d6e 100644 --- a/microSALT/utils/referencer.py +++ b/microSALT/utils/referencer.py @@ -268,7 +268,7 @@ def fetch_external(self) -> None: try: for entry in root: # Some species have extra names that are not expected, such as Klebsiella pneumoniae species complex, when we expect just Klebsiella pneumoniae - species = entry.text.strip().lower.split(" ")[:2] + species = entry.text.strip().lower().split(" ")[:2] organ = "_".join(species) if "escherichia_coli" in organ and "#1" in organ: organ = organ[:-2]