From 479d315c7f5daec8d09030e5140a99a92c2bdf07 Mon Sep 17 00:00:00 2001 From: "N. Tessa Pierce" Date: Fri, 15 Apr 2022 11:33:12 -0700 Subject: [PATCH] fix introduced err --- src/sourmash/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sourmash/search.py b/src/sourmash/search.py index e59d55179d..ef3925c855 100644 --- a/src/sourmash/search.py +++ b/src/sourmash/search.py @@ -195,7 +195,7 @@ def search_databases_with_flat_query(query, databases, **kwargs): results.sort(key=lambda x: -x[0]) x = [] - ksize = query_mh.ksize + ksize = query.minhash.ksize for (score, match, filename) in results: x.append(SearchResult(similarity=score, match=match,