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

Giotto v4.2.1 #1098

Merged
merged 3 commits into from
Feb 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: Giotto
Title: Spatial Single-Cell Transcriptomics Toolbox
Version: 4.2.0
Version: 4.2.1
Authors@R: c(
person("Ruben", "Dries", email = "[email protected]",
role = c("aut", "cre"), comment = c(ORCID = "0000-0001-7650-7754")),
Expand Down
7 changes: 6 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Giotto 4.2.0 (2024/01/17)
# Giotto 4.2.1 (2025/02/04)

## Bug fixes
* fix `identifyTMAcores()` when no overlap relations are found and an `rbind` error is thrown

# Giotto 4.2.0 (2025/01/17)

## Breaking Changes
* Large changes to `createGiottoCosMxObject()` that better reflect NanoString provided outputs.
Expand Down
1 change: 1 addition & 0 deletions R/spatial_clusters.R
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ identifyTMAcores <- function(
# determine sorted pairs of overlaps
apply(MARGIN = 2, sort) |>
t()
if (any(dim(ovlp) == 0)) ovlp <- NULL
return(ovlp)
})
# combine test reps
Expand Down
Loading
Loading