From 17932ecd710e664c02d1744586aa52e7fd102e74 Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Wed, 26 Feb 2025 06:15:56 +0000 Subject: [PATCH] Alleles IDs obtained from one sequence is named the ID of that sequence Instead of generating a tuple comprised of the one sequence ID repeated --- src/autobigs/engine/analysis/bigsdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/autobigs/engine/analysis/bigsdb.py b/src/autobigs/engine/analysis/bigsdb.py index 1195c30..1322c6b 100644 --- a/src/autobigs/engine/analysis/bigsdb.py +++ b/src/autobigs/engine/analysis/bigsdb.py @@ -127,7 +127,7 @@ class RemoteBIGSdbMLSTProfiler(BIGSdbMLSTProfiler): raise ValueError("Passed in no alleles.") result_mlst_profile = MLSTProfile(allele_set, scheme_fields_returned["ST"], scheme_fields_returned["clonal_complex"]) if len(names_list) > 0: - result_mlst_profile = NamedMLSTProfile(str(tuple(names_list)), result_mlst_profile) + result_mlst_profile = NamedMLSTProfile(str(tuple(names_list)) if len(set(names_list)) > 1 else names_list[0], result_mlst_profile) return result_mlst_profile async def profile_string(self, query_sequence_strings: Iterable[Union[NamedString, str]]) -> Union[NamedMLSTProfile, MLSTProfile]: