Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dev with main #6

Merged
merged 2 commits into from
Jun 24, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
CI badge and SingleCellProjections fix (#5)
* CI badge
* fix SingleCellProjections extension
niklasmueboe authored Jun 24, 2024

Verified

This commit was signed with the committer’s verified signature.
sirreal Jon Surrell
commit e45efb1dc84a5730dabbadd68d3e3bf9575c7d3b
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://niklasmueboe.github.io/Sainsc.jl/dev)
[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle)
[![Aqua QA](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)
[![CI](https://github.com/niklasmueboe/Sainsc.jl/workflows/CI/badge.svg)](https://github.com/niklasmueboe/Sainsc.jl/actions?query=workflows/CI)

/ˈsaiəns/

4 changes: 2 additions & 2 deletions ext/SingleCellProjectionsExt.jl
Original file line number Diff line number Diff line change
@@ -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