... | ... |
@@ -29,8 +29,8 @@ Suggests: testthat, knitr, roxygen2, rmarkdown, biomaRt, covr, |
29 | 29 |
LinkingTo: Rcpp, RcppEigen |
30 | 30 |
License: MIT + file LICENSE |
31 | 31 |
Encoding: UTF-8 |
32 |
-LazyData: false |
|
33 |
-RoxygenNote: 7.1.2 |
|
32 |
+LazyData: true |
|
33 |
+RoxygenNote: 7.2.1 |
|
34 | 34 |
BugReports: https://github.com/campbio/celda/issues |
35 | 35 |
biocViews: SingleCell, GeneExpression, Clustering, Sequencing, Bayesian, ImmunoOncology, DataImport |
36 | 36 |
NeedsCompilation: yes |
... | ... |
@@ -493,11 +493,11 @@ setMethod( |
493 | 493 |
append = TRUE, |
494 | 494 |
verbose = verbose |
495 | 495 |
) |
496 |
- countsBat <- methods::as(countsBat, "dgCMatrix") |
|
496 |
+ countsBat <- methods::as(countsBat, "CsparseMatrix") |
|
497 | 497 |
} |
498 | 498 |
if (!is.null(bgBat)) { |
499 | 499 |
if (!inherits(bgBat, "dgCMatrix")) { |
500 |
- bgBat <- methods::as(bgBat, "dgCMatrix") |
|
500 |
+ bgBat <- methods::as(bgBat, "CsparseMatrix") |
|
501 | 501 |
} |
502 | 502 |
} |
503 | 503 |
|