Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasmueboe committed Jun 17, 2024
1 parent eea5004 commit d39e5ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ DocumenterInterLinks = "d12716ef-a0f6-4df4-a9f1-a5a34e75c656"
StereoSSAM = "4c4340ea-7f9e-46b4-8512-61f1f6c41a11"

[compat]
Documenter = "1.3"
Documenter = "1.3"
DocumenterInterLinks = "1"
1 change: 0 additions & 1 deletion src/GridCount.jl
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ end
Remove all counts in each gene layer for which `mask` is `false`.
"""

function mask!(counts::GridCounts{<:Any,T}, mask::AbstractMatrix{Bool}) where {T<:Any}
if gridsize(counts) != size(mask)
throw(DimensionMismatch("Size of `mask` must match gridsize of `counts`"))
Expand Down
2 changes: 1 addition & 1 deletion src/LocalMax.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ using Unzip: unzip
Find local maxima of the `img`.
The input should be a [`kde`](@ref StereoSSAM.KDE.kde) of the
[`totalrna`](@ref StereoSSAM.Utils.totalrna) or comparable.
[`totalrna`](@ref StereoSSAM.GridCount.totalrna) or comparable.
"""
function findlocalmaxima(img, mindist::Integer; threshold::Real=0)
localmax = findlocalmax(img; window=(2mindist + 1, 2mindist + 1))
Expand Down

0 comments on commit d39e5ec

Please sign in to comment.