Skip to content

Commit

Permalink
fix SingleCellProjections extension
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasmueboe committed Jun 24, 2024
1 parent 4909e3a commit c9ca529
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/SingleCellProjectionsExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ using SingleCellProjections: DataMatrix
using Sainsc

function Sainsc.getlocalmaxima(::Type{DataMatrix}, counts, localmax, kernel; genes=nothing)
return DataMatrix(getlocalmaxima(counts, localmax, kernel; genes=genes))
return DataMatrix(getlocalmaxima(counts, localmax, kernel; genes=genes)...)
end

function Sainsc.readstereoseqbinned(::Type{DataMatrix}, file, binsize::Integer)
return DataMatrix(readstereoseqbinned(file, binsize))
return DataMatrix(readstereoseqbinned(file, binsize)...)
end

end # module SingleCellProjectionsExt

0 comments on commit c9ca529

Please sign in to comment.