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

v4.1.6 #1079

Merged
merged 17 commits into from
Dec 9, 2024
8 changes: 4 additions & 4 deletions 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.1.5
Version: 4.1.6
Authors@R: c(
person("Ruben", "Dries", email = "[email protected]",
role = c("aut", "cre"), comment = c(ORCID = "0000-0001-7650-7754")),
Expand Down Expand Up @@ -28,7 +28,7 @@ RoxygenNote: 7.3.2
Depends:
R (>= 4.4.1),
methods,
GiottoClass (>= 0.4.1)
GiottoClass (>= 0.4.5)
Imports:
BiocParallel,
BiocSingular,
Expand All @@ -37,8 +37,8 @@ Imports:
dbscan (>= 1.1-3),
ggraph,
ggplot2 (>= 3.1.1),
GiottoUtils (>= 0.2.0),
GiottoVisuals (>= 0.2.6),
GiottoUtils (>= 0.2.2),
GiottoVisuals (>= 0.2.10),
igraph (>= 1.2.4.1),
Matrix (>= 1.6-2),
MatrixGenerics,
Expand Down
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ export(doRandomWalkCluster)
export(doSNNCluster)
export(doScrubletDetect)
export(doStardistSegmentation)
export(dotPlot)
export(estimateAutomatedImageRegistrationWithSIFT)
export(estimateImageBg)
export(exportGiottoViewer)
Expand Down Expand Up @@ -753,6 +754,7 @@ importFrom(GiottoVisuals,dimGenePlot3D)
importFrom(GiottoVisuals,dimPlot)
importFrom(GiottoVisuals,dimPlot2D)
importFrom(GiottoVisuals,dimPlot3D)
importFrom(GiottoVisuals,dotPlot)
importFrom(GiottoVisuals,getColors)
importFrom(GiottoVisuals,giottoSankeyPlan)
importFrom(GiottoVisuals,plotHeatmap)
Expand Down
21 changes: 21 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@

# Giotto 4.1.6 (2024/12/09)

## Bug fixes
* `doScrubletDetect()` seed setting

## Enhancements
* `labelTransfer()` now has `integration_method = "harmony"` for label transferring with an integration pipeline. See ?labelTransfer and the `integration_method` section.
* `importXenium()` `load_transcripts()` can now return a `data.table` rather than the `giottoPoints` representation

## New
* `doMesmerSegmentation()` and `doStardistSegmentation()` segmentation wrappers
* `.varexp()` internal for calculating SVD variance determined with support for partial SVDs
* `.cumvar()` internal for calculating cumulative variance explained
* re-export of `dotPlot()` from GiottoVisuals

## Changes
* GiottoClass req raised to 0.4.5
* GiottoUtils req raised to 0.2.2
* GiottoVisuals req raised to 0.2.10


# Giotto 4.1.5 (2024/11/08)

## Enhancements
Expand Down
Loading