From 095734d0d65f511c78520220196740d99a5c62fb Mon Sep 17 00:00:00 2001 From: Parashar Date: Wed, 24 Jan 2024 16:17:04 +0100 Subject: [PATCH] bug fix for hto demulitplexing this bug was causing mark_hto_identities to fail. No impact where results were delivered. --- VERSION | 2 +- scarf/datastore/datastore.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index a4b9c5a..fd0a688 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.28.8 +0.28.9 diff --git a/scarf/datastore/datastore.py b/scarf/datastore/datastore.py index 0cc65dc..033fed5 100644 --- a/scarf/datastore/datastore.py +++ b/scarf/datastore/datastore.py @@ -195,7 +195,7 @@ def mark_hto_identities( assay.rawData[self.cells.fetch_all(cell_key)], self.nthreads ) hto_idents = hto_demux( - pd.DataFrame(counts, columns=assay.feats.fetch("ids", key=cell_key)) + pd.DataFrame(counts, columns=assay.feats.fetch_all("ids")) ) self.cells.insert( column_name=label,