From c9ca5298ae4d1a73d62aadfff1afc39417aef74c Mon Sep 17 00:00:00 2001 From: niklasmueboe Date: Mon, 24 Jun 2024 10:22:38 +0200 Subject: [PATCH] fix SingleCellProjections extension --- ext/SingleCellProjectionsExt.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/SingleCellProjectionsExt.jl b/ext/SingleCellProjectionsExt.jl index a3aa034..07e0d87 100644 --- a/ext/SingleCellProjectionsExt.jl +++ b/ext/SingleCellProjectionsExt.jl @@ -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