Skip to content
Snippets Groups Projects
Commit cc3a3f65 authored by pswain's avatar pswain
Browse files

fixed bug where code unfinished

parent 914eae97
No related branches found
No related tags found
No related merge requests found
......@@ -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_cell_ids.any(axis=1)
ind_intermediate = valid_association.any(axis=1)
# make True comparisons match for at least one row in association
valid_indices = ind_intermediate.any(axis=0)
# OLD
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment