Skip to content

Commit

Permalink
Merge pull request #122 from SarkkinenJ/patch-1
Browse files Browse the repository at this point in the history
fix subset bug in addROI_image.py
  • Loading branch information
ajitjohnson authored Dec 4, 2024
2 parents add5fbf + c9ee25b commit b02f707
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scimap/plotting/addROI_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def addROI_image(
if isinstance(subset, str):
subset = [subset]
# subset data
sub_data = data[data['imageid'].isin(subset)]
sub_data = data[data[imageid].isin(subset)]
else:
sub_data = data

Expand Down

0 comments on commit b02f707

Please sign in to comment.