Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: SeuratObject
Title: Data Structures for Single Cell Data
Version: 5.0.99.9011
Version: 5.0.99.9012
Authors@R: c(
person(given = 'Paul', family = 'Hoffman', email = '[email protected]', role = 'aut', comment = c(ORCID = '0000-0002-7693-8957')),
person(given = 'Rahul', family = 'Satija', email = '[email protected]', role = c('aut', 'cre'), comment = c(ORCID = '0000-0001-9448-8833')),
Expand Down
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Unreleased

## Changes:
- Update `UpdateSeuratObject` to call `droplevels` on the input's cell-level `meta.data` slot (#247)
- Drop `Seurat` from `Enhances`; update `.IsFutureSeurat` to avoid calling `requireNamespace('Seurat', ...)` (#250)
- Update the `VariableFeatures.StdAssay` setter to apply a speedup (#240)
- Add `SVFInfo.Assay5` & `SpatiallyVariableFeatures.Assay5` (#242)
Expand Down
2 changes: 1 addition & 1 deletion R/seurat.R
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ UpdateSeuratObject <- function(object) {
misc = object@misc %||% list(),
active.ident = object@ident,
reductions = new.dr,
meta.data = [email protected],
meta.data = droplevels([email protected]),
tools = list()
)
# Run CalcN
Expand Down