Skip to content

Commit

Permalink
Merge pull request #14 from MannLabs/fix_bug_filtering
Browse files Browse the repository at this point in the history
fix small bug in filtering workflow
  • Loading branch information
sophiamaedler authored Jun 5, 2024
2 parents 0416a51 + 29837aa commit 65e6001
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 65e6001

Please sign in to comment.