Skip to content
This repository was archived by the owner on Oct 14, 2025. It is now read-only.

Commit d6e411d

Browse files
committed
Fix as.sparse import
1 parent 21b58ae commit d6e411d

File tree

3 files changed

+16
-15
lines changed

3 files changed

+16
-15
lines changed

DESCRIPTION

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,20 @@ Imports:
2323
RSQLite,
2424
dbplyr
2525
Suggests:
26-
here,
27-
stringr,
28-
Seurat,
29-
tidyseurat,
30-
scMerge,
31-
DelayedArray,
32-
openssl,
33-
cellxgenedp,
34-
SingleCellExperiment,
35-
celldex,
36-
SingleR,
37-
tools,
38-
rmarkdown
26+
here,
27+
stringr,
28+
Seurat,
29+
tidyseurat,
30+
scMerge,
31+
DelayedArray,
32+
openssl,
33+
cellxgenedp,
34+
SingleCellExperiment,
35+
celldex,
36+
SingleR,
37+
tools,
38+
rmarkdown,
39+
SeuratObject
3940
VignetteBuilder:
4041
knitr
4142
RdMacros:

NAMESPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ importFrom(HDF5Array,loadHDF5SummarizedExperiment)
1111
importFrom(RSQLite,SQLITE_RO)
1212
importFrom(RSQLite,SQLite)
1313
importFrom(Seurat,as.Seurat)
14-
importFrom(Seurat,as.sparse)
14+
importFrom(SeuratObject,as.sparse)
1515
importFrom(SingleCellExperiment,SingleCellExperiment)
1616
importFrom(SummarizedExperiment,"assayNames<-")
1717
importFrom(SummarizedExperiment,colData)

R/query.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ get_SingleCellExperiment = function(
7878
sce
7979
}
8080

81-
#' @importFrom Seurat as.sparse
81+
#' @importFrom SeuratObject as.sparse
8282
#' @exportS3Method
8383
as.sparse.DelayedMatrix = function(x){
8484
# This is glue to ensure the SCE -> Seurat conversion works properly with

0 commit comments

Comments
 (0)