Skip to content

Commit 914c0f1

Browse files
authored
Merge pull request #10028 from satijalab/spaceranger-4.0
Add support for Space Ranger cell segmentation data
2 parents 54f8878 + 6f38bfa commit 914c0f1

14 files changed

+708
-119
lines changed

DESCRIPTION

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: Seurat
2-
Version: 5.3.1.1000
2+
Version: 5.3.1.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(
@@ -23,9 +23,11 @@ Authors@R: c(
2323
person(given = "Patrick", family = "Roelli", email = "proelli@nygenome.org", role = "ctb"),
2424
person(given = "Rahul", family = "Satija", email = "seurat@nygenome.org", role = c("aut", "cre"), comment = c(ORCID = "0000-0001-9448-8833")),
2525
person(given = "Karthik", family = "Shekhar", email = "kshekhar@berkeley.edu", role = "ctb"),
26+
person(given = "Anagha", family = "Shenoy", email = "ashenoy@nygenome.org", role = "ctb", comment = c(ORCID = "0000-0002-0537-6862")),
2627
person(given = "Avi", family = "Srivastava", email = "asrivastava@nygenome.org", role = "ctb", comment = c(ORCID = "0000-0001-9798-2079")),
2728
person(given = "Tim", family = "Stuart", email = "tstuart@nygenome.org", role = "ctb", comment = c(ORCID = "0000-0002-3044-0897")),
2829
person(given = "Kristof", family = "Torkenczy", email = "", role = "ctb", comment = c(ORCID = "0000-0002-4869-7957")),
30+
person(given = "Brian", family = "Zhang", email = "brianzhang@nygenome.org", role = "ctb"),
2931
person(given = "Shiwei", family = "Zheng", email = "szheng@nygenome.org", role = "ctb", comment = c(ORCID = "0000-0001-6682-6743")),
3032
person("Satija Lab and Collaborators", role = "fnd")
3133
)
@@ -121,6 +123,7 @@ Suggests:
121123
rtracklayer,
122124
S4Vectors,
123125
sf (>= 1.0.0),
126+
sp,
124127
SingleCellExperiment,
125128
SummarizedExperiment,
126129
testthat,

NAMESPACE

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,8 +368,10 @@ export(RPCAIntegration)
368368
export(Radius)
369369
export(Read10X)
370370
export(Read10X_Coordinates)
371+
export(Read10X_HD_GeoJson)
371372
export(Read10X_Image)
372373
export(Read10X_ScaleFactors)
374+
export(Read10X_Segmentations)
373375
export(Read10X_h5)
374376
export(Read10X_probe_metadata)
375377
export(ReadAkoya)

R/convenience.R

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,8 @@ SpatialDimPlot <- function(
333333
stroke = NA,
334334
label.box = TRUE,
335335
interactive = FALSE,
336-
information = NULL
336+
information = NULL,
337+
plot_segmentations = FALSE
337338
) {
338339
return(SpatialPlot(
339340
object = object,
@@ -358,7 +359,8 @@ SpatialDimPlot <- function(
358359
stroke = stroke,
359360
label.box = label.box,
360361
interactive = interactive,
361-
information = information
362+
information = information,
363+
plot_segmentations = plot_segmentations
362364
))
363365
}
364366

@@ -385,7 +387,8 @@ SpatialFeaturePlot <- function(
385387
shape = 21,
386388
stroke = NA,
387389
interactive = FALSE,
388-
information = NULL
390+
information = NULL,
391+
plot_segmentations = FALSE
389392
) {
390393
return(SpatialPlot(
391394
object = object,
@@ -405,7 +408,8 @@ SpatialFeaturePlot <- function(
405408
shape = shape,
406409
stroke = stroke,
407410
interactive = interactive,
408-
information = information
411+
information = information,
412+
plot_segmentations = plot_segmentations
409413
))
410414
}
411415

0 commit comments

Comments
 (0)