From 822798773e81ec856bf72f15c128694d5124e2d7 Mon Sep 17 00:00:00 2001 From: pswain <peter.swain@ed.ac.uk> Date: Tue, 16 May 2023 19:54:02 +0100 Subject: [PATCH] reverted previous "fix" --- src/agora/utils/indexing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agora/utils/indexing.py b/src/agora/utils/indexing.py index 95cd5f18..0e50be02 100644 --- a/src/agora/utils/indexing.py +++ b/src/agora/utils/indexing.py @@ -79,7 +79,7 @@ def validate_association( valid_association = va_intermediate.all(axis=1) # 2. find matches in indices # make True comparisons match for at least one mother or daughter in association - ind_intermediate = valid_association.any(axis=1) + ind_intermediate = valid_cell_ids.any(axis=1) # make True comparisons match for at least one row in association valid_indices = ind_intermediate.any(axis=0) # OLD -- GitLab