Skip to content

Commit 938a387

Browse files
authored
Merge pull request #10157 from satijalab/revert-spatial-updates
Revert spatial updates in active development
2 parents 914c0f1 + 5dcc157 commit 938a387

16 files changed

+119
-1039
lines changed

DESCRIPTION

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: Seurat
2-
Version: 5.3.1.9999
2+
Version: 5.3.0.9999
33
Title: Tools for Single Cell Genomics
44
Description: A toolkit for quality control, analysis, and exploration of single cell RNA sequencing data. 'Seurat' aims to enable users to identify and interpret sources of heterogeneity from single cell transcriptomic measurements, and to integrate diverse types of single cell data. See Satija R, Farrell J, Gennert D, et al (2015) <doi:10.1038/nbt.3192>, Macosko E, Basu A, Satija R, et al (2015) <doi:10.1016/j.cell.2015.05.002>, Stuart T, Butler A, et al (2019) <doi:10.1016/j.cell.2019.05.031>, and Hao, Hao, et al (2020) <doi:10.1101/2020.10.12.335331> for more details.
55
Authors@R: c(
@@ -123,7 +123,6 @@ Suggests:
123123
rtracklayer,
124124
S4Vectors,
125125
sf (>= 1.0.0),
126-
sp,
127126
SingleCellExperiment,
128127
SummarizedExperiment,
129128
testthat,

NAMESPACE

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,6 @@ export(IntegrateData)
296296
export(IntegrateEmbeddings)
297297
export(IntegrateLayers)
298298
export(Intensity)
299-
export(InteractiveSpatialPlot)
300299
export(IsGlobal)
301300
export(JS)
302301
export(JackStraw)
@@ -368,10 +367,8 @@ export(RPCAIntegration)
368367
export(Radius)
369368
export(Read10X)
370369
export(Read10X_Coordinates)
371-
export(Read10X_HD_GeoJson)
372370
export(Read10X_Image)
373371
export(Read10X_ScaleFactors)
374-
export(Read10X_Segmentations)
375372
export(Read10X_h5)
376373
export(Read10X_probe_metadata)
377374
export(ReadAkoya)
@@ -726,8 +723,6 @@ importFrom(ggridges,theme_ridges)
726723
importFrom(grDevices,as.raster)
727724
importFrom(grDevices,col2rgb)
728725
importFrom(grDevices,colorRampPalette)
729-
importFrom(grDevices,dev.off)
730-
importFrom(grDevices,png)
731726
importFrom(grDevices,rgb)
732727
importFrom(graphics,axis)
733728
importFrom(graphics,image)

NEWS.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Unreleased
22

33
## Changes
4-
5-
- Added function `InteractiveSpatialPlot` to allow users to interactively lasso-select cells from a spatial Seurat object (Visium or SlideSeq data)
64
- Added `label.size.cutoff` parameter to `DimPlot` to allow users to label only clusters above a certain size
75
- Added option to use `cluster_leiden` from `igraph` when running Leiden clustering ([#9931](https://github.com/satijalab/seurat/pull/9931))
86
- Added option to use `umap2` from `uwot` when running UMAP ([#9918](https://github.com/satijalab/seurat/pull/9918))

R/convenience.R

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -333,8 +333,7 @@ SpatialDimPlot <- function(
333333
stroke = NA,
334334
label.box = TRUE,
335335
interactive = FALSE,
336-
information = NULL,
337-
plot_segmentations = FALSE
336+
information = NULL
338337
) {
339338
return(SpatialPlot(
340339
object = object,
@@ -359,8 +358,7 @@ SpatialDimPlot <- function(
359358
stroke = stroke,
360359
label.box = label.box,
361360
interactive = interactive,
362-
information = information,
363-
plot_segmentations = plot_segmentations
361+
information = information
364362
))
365363
}
366364

@@ -387,8 +385,7 @@ SpatialFeaturePlot <- function(
387385
shape = 21,
388386
stroke = NA,
389387
interactive = FALSE,
390-
information = NULL,
391-
plot_segmentations = FALSE
388+
information = NULL
392389
) {
393390
return(SpatialPlot(
394391
object = object,
@@ -408,8 +405,7 @@ SpatialFeaturePlot <- function(
408405
shape = shape,
409406
stroke = stroke,
410407
interactive = interactive,
411-
information = information,
412-
plot_segmentations = plot_segmentations
408+
information = information
413409
))
414410
}
415411

0 commit comments

Comments
 (0)