Skip to content

Commit

Permalink
fix small bug in filtering workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Sophia Maedler committed Jun 5, 2024
1 parent 0416a51 commit 29837aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sparcscore/processing/filtering.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ def filter(self, input_mask):
"""
if self.ids_to_remove is None:
self._get_ids_to_remove(input_mask)
return self.update_mask(input_mask, self.ids_to_remove)
return self.get_updated_mask(input_mask, self.ids_to_remove)


class MatchNucleusCytosolIds(BaseFilter):
Expand Down

0 comments on commit 29837aa

Please sign in to comment.