Skip to content

Commit

Permalink
Fix typo, #28
Browse files Browse the repository at this point in the history
  • Loading branch information
braniii committed Sep 4, 2024
1 parent 81b23c6 commit 1499399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mosaic/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def clustering(
mat = clust.matrix_.astype(np.float64)
mat[np.diag_indices_from(mat)] = np.nan
im = ax.pcolormesh(
mat, snap=True, vim=0, vmax=np.nanmax(mat),
mat, snap=True, vmin=0, vmax=np.nanmax(mat),
)

ticks = np.array([0, *clust.ticks_[: -1]]) - 0.5
Expand Down

0 comments on commit 1499399

Please sign in to comment.