Skip to content

Commit

Permalink
Merge pull request satijalab#588 from satijalab/feat/image_alpha
Browse files Browse the repository at this point in the history
propogate image.alpha to convenience fxns
  • Loading branch information
andrewwbutler authored Aug 2, 2021
2 parents 420bf90 + 53fe706 commit 434d918
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: Seurat
Version: 4.0.3.9012
Version: 4.0.3.9013
Date: 2021-07-30
Title: Tools for Single Cell Genomics
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.
Expand Down
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Add `ReadSTARsolo()` function to read output from STARsolo
- Add `densify` parameter to `FindMarkers()`
- Add `ReadParsebio()` function to read output from Parse Biosciences
- Add the `image.alpha` parameter to `SpatialDimPlot()` and `SpatialFeaturePlot()`

## Changes
- Warn and continue rather than erroring if not all features are available in `FindSpatiallyVariableFeatures()` ([#4611](https://github.com/satijalab/seurat/issues/4611))
Expand Down
4 changes: 4 additions & 0 deletions R/convenience.R
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ SpatialDimPlot <- function(
combine = TRUE,
pt.size.factor = 1.6,
alpha = c(1, 1),
image.alpha = 1,
stroke = 0.25,
label.box = TRUE,
interactive = FALSE,
Expand All @@ -74,6 +75,7 @@ SpatialDimPlot <- function(
combine = combine,
pt.size.factor = pt.size.factor,
alpha = alpha,
image.alpha = image.alpha,
stroke = stroke,
label.box = label.box,
interactive = interactive,
Expand All @@ -98,6 +100,7 @@ SpatialFeaturePlot <- function(
combine = TRUE,
pt.size.factor = 1.6,
alpha = c(1, 1),
image.alpha = 1,
stroke = 0.25,
interactive = FALSE,
information = NULL
Expand All @@ -114,6 +117,7 @@ SpatialFeaturePlot <- function(
combine = combine,
pt.size.factor = pt.size.factor,
alpha = alpha,
image.alpha = image.alpha,
stroke = stroke,
interactive = interactive,
information = information
Expand Down
2 changes: 2 additions & 0 deletions man/SpatialPlot.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 434d918

Please sign in to comment.