Skip to content

Commit

Permalink
bump version, update NEWS
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewwbutler committed Jul 8, 2021
1 parent b3b5f6f commit 5ea5979
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
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.9001
Version: 4.0.3.9002
Date: 2021-07-08
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 @@ -4,6 +4,7 @@

## Changes
- Warn and continue rather than erroring if not all features are available in `FindSpatiallyVariableFeatures()` ([#4611](https://github.com/satijalab/seurat/issues/4611))
- Bug fix for SCT-based integration in selecting proper reference model ([4355](https://github.com/satijalab/seurat/issues/4355))

## Seurat 4.0.3 (2020-06-10)
## Added
Expand Down
12 changes: 6 additions & 6 deletions R/integration.R
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,12 @@ FindIntegrationAnchors <- function(
assay <- sapply(X = object.list, FUN = DefaultAssay)
}
# check tool
object.list <- lapply(X = object.list,
FUN = function (obj) {
obj@tools$Integration <- NULL
return(obj)
}
)
object.list <- lapply(
X = object.list,
FUN = function (obj) {
slot(object = obj, name = "tools")$Integration <- NULL
return(obj)
})
object.list <- CheckDuplicateCellNames(object.list = object.list)
slot <- "data"
if (reduction == "lsi") {
Expand Down

0 comments on commit 5ea5979

Please sign in to comment.