Skip to content

Commit

Permalink
Format suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
adelavega committed Jan 9, 2024
1 parent 2a26f09 commit 8ee2c48
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions nimare/meta/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,11 @@ def compute_kda_ma(

if not sum_overlap:
all_spheres = unique_rows(all_spheres)
sphere_idx_inside_mask = np.where(mask_data[tuple(all_spheres.T)])[0]
all_spheres = all_spheres[sphere_idx_inside_mask, :]

# Apply mask
sphere_idx_inside_mask = np.where(mask_data[tuple(all_spheres.T)])[0]
all_spheres = all_spheres[sphere_idx_inside_mask, :]

# Combine experiment id with coordinates
all_coords.append(all_spheres)

Expand Down

0 comments on commit 8ee2c48

Please sign in to comment.