... | ... |
@@ -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 |
... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
Package: celda |
2 | 2 |
Title: CEllular Latent Dirichlet Allocation |
3 |
-Version: 1.12.0 |
|
3 |
+Version: 1.13.0 |
|
4 | 4 |
Authors@R: c(person("Joshua", "Campbell", email = "camp@bu.edu", |
5 | 5 |
role = c("aut", "cre")), |
6 | 6 |
person("Shiyi", "Yang", email="syyang@bu.edu", role = c("aut")), |
... | ... |
@@ -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: true |
|
32 |
+LazyData: false |
|
33 | 33 |
RoxygenNote: 7.1.2 |
34 | 34 |
BugReports: https://github.com/campbio/celda/issues |
35 |
-biocViews: SingleCell, GeneExpression, Clustering, Sequencing, Bayesian |
|
35 |
+biocViews: SingleCell, GeneExpression, Clustering, Sequencing, Bayesian, ImmunoOncology, DataImport |
|
36 | 36 |
NeedsCompilation: yes |
... | ... |
@@ -14,15 +14,15 @@ Description: Celda is a suite of Bayesian hierarchical models for |
14 | 14 |
Bayesian method to computationally estimate and remove RNA contamination in |
15 | 15 |
individual cells without empty droplet information. A variety of scRNA-seq |
16 | 16 |
data visualization functions is also included. |
17 |
-Depends: R (>= 4.0) |
|
17 |
+Depends: R (>= 4.0), SingleCellExperiment, Matrix |
|
18 | 18 |
VignetteBuilder: knitr |
19 | 19 |
Imports: plyr, foreach, ggplot2, RColorBrewer, grid, scales, gtable, |
20 | 20 |
grDevices, graphics, matrixStats, doParallel, digest, methods, |
21 | 21 |
reshape2, S4Vectors, data.table, |
22 | 22 |
Rcpp, RcppEigen, uwot, enrichR, SummarizedExperiment, |
23 | 23 |
MCMCprecision, ggrepel, Rtsne, withr, |
24 |
- scater (>= 1.14.4), scran, SingleCellExperiment, dbscan, |
|
25 |
- DelayedArray, stringr, Matrix, ComplexHeatmap, multipanelfigure, |
|
24 |
+ scater (>= 1.14.4), scran, dbscan, |
|
25 |
+ DelayedArray, stringr, ComplexHeatmap, multipanelfigure, |
|
26 | 26 |
circlize |
27 | 27 |
Suggests: testthat, knitr, roxygen2, rmarkdown, biomaRt, covr, |
28 | 28 |
BiocManager, BiocStyle, TENxPBMCData, singleCellTK, M3DExampleData |
... | ... |
@@ -30,7 +30,7 @@ LinkingTo: Rcpp, RcppEigen |
30 | 30 |
License: MIT + file LICENSE |
31 | 31 |
Encoding: UTF-8 |
32 | 32 |
LazyData: true |
33 |
-RoxygenNote: 7.1.1 |
|
33 |
+RoxygenNote: 7.1.2 |
|
34 | 34 |
BugReports: https://github.com/campbio/celda/issues |
35 | 35 |
biocViews: SingleCell, GeneExpression, Clustering, Sequencing, Bayesian |
36 | 36 |
NeedsCompilation: yes |
... | ... |
@@ -3,11 +3,10 @@ Title: CEllular Latent Dirichlet Allocation |
3 | 3 |
Version: 1.9.2 |
4 | 4 |
Authors@R: c(person("Joshua", "Campbell", email = "camp@bu.edu", |
5 | 5 |
role = c("aut", "cre")), |
6 |
- person("Sean", "Corbett", email = "scorbett@bu.edu", role = c("aut")), |
|
7 |
- person("Yusuke", "Koga", email="ykoga07@bu.edu", role = c("aut")), |
|
8 | 6 |
person("Shiyi", "Yang", email="syyang@bu.edu", role = c("aut")), |
9 |
- person("Eric", "Reed", email="reeder@bu.edu", role = c("aut")), |
|
10 |
- person("Zhe", "Wang", email="zhe@bu.edu", role = c("aut"))) |
|
7 |
+ person("Zhe", "Wang", email="zhe@bu.edu", role = c("aut")), |
|
8 |
+ person("Sean", "Corbett", email = "scorbett@bu.edu", role = c("aut")), |
|
9 |
+ person("Yusuke", "Koga", email="ykoga07@bu.edu", role = c("aut"))) |
|
11 | 10 |
Description: Celda is a suite of Bayesian hierarchical models for |
12 | 11 |
clustering single-cell RNA-sequencing (scRNA-seq) data. It is able to |
13 | 12 |
perform "bi-clustering" and simultaneously cluster genes into gene modules |
... | ... |
@@ -26,7 +26,7 @@ Imports: plyr, foreach, ggplot2, RColorBrewer, grid, scales, gtable, |
26 | 26 |
DelayedArray, stringr, Matrix, ComplexHeatmap, multipanelfigure, |
27 | 27 |
circlize |
28 | 28 |
Suggests: testthat, knitr, roxygen2, rmarkdown, biomaRt, covr, |
29 |
- BiocManager, BiocStyle, TENxPBMCData |
|
29 |
+ BiocManager, BiocStyle, TENxPBMCData, singleCellTK, M3DExampleData |
|
30 | 30 |
LinkingTo: Rcpp, RcppEigen |
31 | 31 |
License: MIT + file LICENSE |
32 | 32 |
Encoding: UTF-8 |
... | ... |
@@ -26,7 +26,7 @@ Imports: plyr, foreach, ggplot2, RColorBrewer, grid, scales, gtable, |
26 | 26 |
DelayedArray, stringr, Matrix, ComplexHeatmap, multipanelfigure, |
27 | 27 |
circlize |
28 | 28 |
Suggests: testthat, knitr, roxygen2, rmarkdown, biomaRt, covr, |
29 |
- BiocManager, BiocStyle, M3DExampleData, TENxPBMCData, singleCellTK |
|
29 |
+ BiocManager, BiocStyle, TENxPBMCData |
|
30 | 30 |
LinkingTo: Rcpp, RcppEigen |
31 | 31 |
License: MIT + file LICENSE |
32 | 32 |
Encoding: UTF-8 |
... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
Package: celda |
2 | 2 |
Title: CEllular Latent Dirichlet Allocation |
3 |
-Version: 1.7.14 |
|
3 |
+Version: 1.8.0 |
|
4 | 4 |
Authors@R: c(person("Joshua", "Campbell", email = "camp@bu.edu", |
5 | 5 |
role = c("aut", "cre")), |
6 | 6 |
person("Sean", "Corbett", email = "scorbett@bu.edu", role = c("aut")), |
... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
Package: celda |
2 | 2 |
Title: CEllular Latent Dirichlet Allocation |
3 |
-Version: 1.7.13 |
|
3 |
+Version: 1.7.14 |
|
4 | 4 |
Authors@R: c(person("Joshua", "Campbell", email = "camp@bu.edu", |
5 | 5 |
role = c("aut", "cre")), |
6 | 6 |
person("Sean", "Corbett", email = "scorbett@bu.edu", role = c("aut")), |
... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
Package: celda |
2 | 2 |
Title: CEllular Latent Dirichlet Allocation |
3 |
-Version: 1.7.12 |
|
3 |
+Version: 1.7.13 |
|
4 | 4 |
Authors@R: c(person("Joshua", "Campbell", email = "camp@bu.edu", |
5 | 5 |
role = c("aut", "cre")), |
6 | 6 |
person("Sean", "Corbett", email = "scorbett@bu.edu", role = c("aut")), |
... | ... |
@@ -20,7 +20,7 @@ VignetteBuilder: knitr |
20 | 20 |
Imports: plyr, foreach, ggplot2, RColorBrewer, grid, scales, gtable, |
21 | 21 |
grDevices, graphics, matrixStats, doParallel, digest, methods, |
22 | 22 |
reshape2, S4Vectors, data.table, |
23 |
- Rcpp, RcppEigen, uwot, enrichR, stringi, SummarizedExperiment, |
|
23 |
+ Rcpp, RcppEigen, uwot, enrichR, SummarizedExperiment, |
|
24 | 24 |
MCMCprecision, ggrepel, Rtsne, withr, |
25 | 25 |
scater (>= 1.14.4), scran, SingleCellExperiment, dbscan, |
26 | 26 |
DelayedArray, stringr, Matrix, ComplexHeatmap, multipanelfigure, |
... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
Package: celda |
2 | 2 |
Title: CEllular Latent Dirichlet Allocation |
3 |
-Version: 1.7.11 |
|
3 |
+Version: 1.7.12 |
|
4 | 4 |
Authors@R: c(person("Joshua", "Campbell", email = "camp@bu.edu", |
5 | 5 |
role = c("aut", "cre")), |
6 | 6 |
person("Sean", "Corbett", email = "scorbett@bu.edu", role = c("aut")), |
... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
Package: celda |
2 | 2 |
Title: CEllular Latent Dirichlet Allocation |
3 |
-Version: 1.7.10 |
|
3 |
+Version: 1.7.11 |
|
4 | 4 |
Authors@R: c(person("Joshua", "Campbell", email = "camp@bu.edu", |
5 | 5 |
role = c("aut", "cre")), |
6 | 6 |
person("Sean", "Corbett", email = "scorbett@bu.edu", role = c("aut")), |
... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
Package: celda |
2 | 2 |
Title: CEllular Latent Dirichlet Allocation |
3 |
-Version: 1.7.9 |
|
3 |
+Version: 1.7.10 |
|
4 | 4 |
Authors@R: c(person("Joshua", "Campbell", email = "camp@bu.edu", |
5 | 5 |
role = c("aut", "cre")), |
6 | 6 |
person("Sean", "Corbett", email = "scorbett@bu.edu", role = c("aut")), |
... | ... |
@@ -26,7 +26,7 @@ Imports: plyr, foreach, ggplot2, RColorBrewer, grid, scales, gtable, |
26 | 26 |
DelayedArray, stringr, Matrix, ComplexHeatmap, multipanelfigure, |
27 | 27 |
circlize |
28 | 28 |
Suggests: testthat, knitr, roxygen2, rmarkdown, biomaRt, covr, |
29 |
- BiocManager, BiocStyle, M3DExampleData, TENxPBMCData |
|
29 |
+ BiocManager, BiocStyle, M3DExampleData, TENxPBMCData, singleCellTK |
|
30 | 30 |
LinkingTo: Rcpp, RcppEigen |
31 | 31 |
License: MIT + file LICENSE |
32 | 32 |
Encoding: UTF-8 |
... | ... |
@@ -21,9 +21,9 @@ Imports: plyr, foreach, ggplot2, RColorBrewer, grid, scales, gtable, |
21 | 21 |
grDevices, graphics, matrixStats, doParallel, digest, methods, |
22 | 22 |
reshape2, S4Vectors, data.table, |
23 | 23 |
Rcpp, RcppEigen, uwot, enrichR, stringi, SummarizedExperiment, |
24 |
- MCMCprecision, ggrepel, Rtsne, withr, dendextend, ggdendro, |
|
25 |
- pROC, scater (>= 1.14.4), scran, SingleCellExperiment, dbscan, |
|
26 |
- DelayedArray, Seurat, stringr, Matrix, ComplexHeatmap, multipanelfigure, |
|
24 |
+ MCMCprecision, ggrepel, Rtsne, withr, |
|
25 |
+ scater (>= 1.14.4), scran, SingleCellExperiment, dbscan, |
|
26 |
+ DelayedArray, stringr, Matrix, ComplexHeatmap, multipanelfigure, |
|
27 | 27 |
circlize |
28 | 28 |
Suggests: testthat, knitr, roxygen2, rmarkdown, biomaRt, covr, |
29 | 29 |
BiocManager, BiocStyle, M3DExampleData, TENxPBMCData |
... | ... |
@@ -19,7 +19,7 @@ Depends: R (>= 4.0) |
19 | 19 |
VignetteBuilder: knitr |
20 | 20 |
Imports: plyr, foreach, ggplot2, RColorBrewer, grid, scales, gtable, |
21 | 21 |
grDevices, graphics, matrixStats, doParallel, digest, methods, |
22 |
- reshape2, MAST, S4Vectors, data.table, |
|
22 |
+ reshape2, S4Vectors, data.table, |
|
23 | 23 |
Rcpp, RcppEigen, uwot, enrichR, stringi, SummarizedExperiment, |
24 | 24 |
MCMCprecision, ggrepel, Rtsne, withr, dendextend, ggdendro, |
25 | 25 |
pROC, scater (>= 1.14.4), scran, SingleCellExperiment, dbscan, |
... | ... |
@@ -8,8 +8,14 @@ Authors@R: c(person("Joshua", "Campbell", email = "camp@bu.edu", |
8 | 8 |
person("Shiyi", "Yang", email="syyang@bu.edu", role = c("aut")), |
9 | 9 |
person("Eric", "Reed", email="reeder@bu.edu", role = c("aut")), |
10 | 10 |
person("Zhe", "Wang", email="zhe@bu.edu", role = c("aut"))) |
11 |
-Description: Utilizing Bayesian hierarchical models to analyze single-cell genomic data. |
|
12 |
-Depends: R (>= 3.6) |
|
11 |
+Description: Celda is a suite of Bayesian hierarchical models for |
|
12 |
+ clustering single-cell RNA-sequencing (scRNA-seq) data. It is able to |
|
13 |
+ perform "bi-clustering" and simultaneously cluster genes into gene modules |
|
14 |
+ and cells into cell subpopulations. It also contains DecontX, a novel |
|
15 |
+ Bayesian method to computationally estimate and remove RNA contamination in |
|
16 |
+ individual cells without empty droplet information. A variety of scRNA-seq |
|
17 |
+ data visualization functions is also included. |
|
18 |
+Depends: R (>= 4.0) |
|
13 | 19 |
VignetteBuilder: knitr |
14 | 20 |
Imports: plyr, foreach, ggplot2, RColorBrewer, grid, scales, gtable, |
15 | 21 |
grDevices, graphics, matrixStats, doParallel, digest, methods, |
... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
Package: celda |
2 | 2 |
Title: CEllular Latent Dirichlet Allocation |
3 |
-Version: 1.7.0 |
|
3 |
+Version: 1.7.1 |
|
4 | 4 |
Authors@R: c(person("Joshua", "Campbell", email = "camp@bu.edu", |
5 | 5 |
role = c("aut", "cre")), |
6 | 6 |
person("Sean", "Corbett", email = "scorbett@bu.edu", role = c("aut")), |
... | ... |
@@ -29,11 +29,3 @@ RoxygenNote: 7.1.1 |
29 | 29 |
BugReports: https://github.com/campbio/celda/issues |
30 | 30 |
biocViews: SingleCell, GeneExpression, Clustering, Sequencing, Bayesian |
31 | 31 |
NeedsCompilation: yes |
32 |
-Packaged: 2020-04-02 18:47:49 UTC; josh |
|
33 |
-Author: Joshua Campbell [aut, cre], |
|
34 |
- Sean Corbett [aut], |
|
35 |
- Yusuke Koga [aut], |
|
36 |
- Shiyi Yang [aut], |
|
37 |
- Eric Reed [aut], |
|
38 |
- Zhe Wang [aut] |
|
39 |
-Maintainer: Joshua Campbell <camp@bu.edu> |
... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
Package: celda |
2 | 2 |
Title: CEllular Latent Dirichlet Allocation |
3 |
-Version: 1.5.12 |
|
3 |
+Version: 1.6.0 |
|
4 | 4 |
Authors@R: c(person("Joshua", "Campbell", email = "camp@bu.edu", |
5 | 5 |
role = c("aut", "cre")), |
6 | 6 |
person("Sean", "Corbett", email = "scorbett@bu.edu", role = c("aut")), |
... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
Package: celda |
2 | 2 |
Title: CEllular Latent Dirichlet Allocation |
3 |
-Version: 1.5.11 |
|
3 |
+Version: 1.5.12 |
|
4 | 4 |
Authors@R: c(person("Joshua", "Campbell", email = "camp@bu.edu", |
5 | 5 |
role = c("aut", "cre")), |
6 | 6 |
person("Sean", "Corbett", email = "scorbett@bu.edu", role = c("aut")), |
... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
Package: celda |
2 | 2 |
Title: CEllular Latent Dirichlet Allocation |
3 |
-Version: 1.5.10 |
|
3 |
+Version: 1.5.11 |
|
4 | 4 |
Authors@R: c(person("Joshua", "Campbell", email = "camp@bu.edu", |
5 | 5 |
role = c("aut", "cre")), |
6 | 6 |
person("Sean", "Corbett", email = "scorbett@bu.edu", role = c("aut")), |
... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
Package: celda |
2 | 2 |
Title: CEllular Latent Dirichlet Allocation |
3 |
-Version: 1.5.9 |
|
3 |
+Version: 1.5.10 |
|
4 | 4 |
Authors@R: c(person("Joshua", "Campbell", email = "camp@bu.edu", |
5 | 5 |
role = c("aut", "cre")), |
6 | 6 |
person("Sean", "Corbett", email = "scorbett@bu.edu", role = c("aut")), |
... | ... |
@@ -24,7 +24,7 @@ Suggests: testthat, knitr, roxygen2, rmarkdown, biomaRt, covr, |
24 | 24 |
LinkingTo: Rcpp, RcppEigen |
25 | 25 |
License: MIT + file LICENSE |
26 | 26 |
Encoding: UTF-8 |
27 |
-LazyData: false |
|
27 |
+LazyData: true |
|
28 | 28 |
RoxygenNote: 7.1.1 |
29 | 29 |
BugReports: https://github.com/campbio/celda/issues |
30 | 30 |
biocViews: SingleCell, GeneExpression, Clustering, Sequencing, Bayesian |
... | ... |
@@ -17,8 +17,9 @@ Imports: plyr, foreach, ggplot2, RColorBrewer, grid, scales, gtable, |
17 | 17 |
Rcpp, RcppEigen, uwot, enrichR, stringi, SummarizedExperiment, |
18 | 18 |
MCMCprecision, ggrepel, Rtsne, withr, dendextend, ggdendro, |
19 | 19 |
pROC, scater (>= 1.14.4), scran, SingleCellExperiment, dbscan, |
20 |
- DelayedArray, Seurat, stringr, Matrix, ComplexHeatmap, multipanelfigure |
|
21 |
-Suggests: testthat, knitr, roxygen2, rmarkdown, biomaRt, covr, circlize |
|
20 |
+ DelayedArray, Seurat, stringr, Matrix, ComplexHeatmap, multipanelfigure, |
|
21 |
+ circlize |
|
22 |
+Suggests: testthat, knitr, roxygen2, rmarkdown, biomaRt, covr, |
|
22 | 23 |
BiocManager, BiocStyle, M3DExampleData, TENxPBMCData |
23 | 24 |
LinkingTo: Rcpp, RcppEigen |
24 | 25 |
License: MIT + file LICENSE |
... | ... |
@@ -18,7 +18,7 @@ Imports: plyr, foreach, ggplot2, RColorBrewer, grid, scales, gtable, |
18 | 18 |
MCMCprecision, ggrepel, Rtsne, withr, dendextend, ggdendro, |
19 | 19 |
pROC, scater (>= 1.14.4), scran, SingleCellExperiment, dbscan, |
20 | 20 |
DelayedArray, Seurat, stringr, Matrix, ComplexHeatmap, multipanelfigure |
21 |
-Suggests: testthat, knitr, roxygen2, rmarkdown, biomaRt, covr, |
|
21 |
+Suggests: testthat, knitr, roxygen2, rmarkdown, biomaRt, covr, circlize |
|
22 | 22 |
BiocManager, BiocStyle, M3DExampleData, TENxPBMCData |
23 | 23 |
LinkingTo: Rcpp, RcppEigen |
24 | 24 |
License: MIT + file LICENSE |
... | ... |
@@ -12,8 +12,8 @@ Description: Utilizing Bayesian hierarchical models to analyze single-cell genom |
12 | 12 |
Depends: R (>= 3.6) |
13 | 13 |
VignetteBuilder: knitr |
14 | 14 |
Imports: plyr, foreach, ggplot2, RColorBrewer, grid, scales, gtable, |
15 |
- grDevices, graphics, matrixStats, doParallel, digest, |
|
16 |
- gridExtra, methods, reshape2, MAST, S4Vectors, data.table, |
|
15 |
+ grDevices, graphics, matrixStats, doParallel, digest, methods, |
|
16 |
+ reshape2, MAST, S4Vectors, data.table, |
|
17 | 17 |
Rcpp, RcppEigen, uwot, enrichR, stringi, SummarizedExperiment, |
18 | 18 |
MCMCprecision, ggrepel, Rtsne, withr, dendextend, ggdendro, |
19 | 19 |
pROC, scater (>= 1.14.4), scran, SingleCellExperiment, dbscan, |
... | ... |
@@ -17,7 +17,7 @@ Imports: plyr, foreach, ggplot2, RColorBrewer, grid, scales, gtable, |
17 | 17 |
Rcpp, RcppEigen, uwot, enrichR, stringi, SummarizedExperiment, |
18 | 18 |
MCMCprecision, ggrepel, Rtsne, withr, dendextend, ggdendro, |
19 | 19 |
pROC, scater (>= 1.14.4), scran, SingleCellExperiment, dbscan, |
20 |
- DelayedArray, Seurat, stringr, Matrix, ComplexHeatmap |
|
20 |
+ DelayedArray, Seurat, stringr, Matrix, ComplexHeatmap, multipanelfigure |
|
21 | 21 |
Suggests: testthat, knitr, roxygen2, rmarkdown, biomaRt, covr, |
22 | 22 |
BiocManager, BiocStyle, M3DExampleData, TENxPBMCData |
23 | 23 |
LinkingTo: Rcpp, RcppEigen |
... | ... |
@@ -17,14 +17,14 @@ Imports: plyr, foreach, ggplot2, RColorBrewer, grid, scales, gtable, |
17 | 17 |
Rcpp, RcppEigen, uwot, enrichR, stringi, SummarizedExperiment, |
18 | 18 |
MCMCprecision, ggrepel, Rtsne, withr, dendextend, ggdendro, |
19 | 19 |
pROC, scater (>= 1.14.4), scran, SingleCellExperiment, dbscan, |
20 |
- DelayedArray, Seurat, stringr, Matrix |
|
20 |
+ DelayedArray, Seurat, stringr, Matrix, ComplexHeatmap |
|
21 | 21 |
Suggests: testthat, knitr, roxygen2, rmarkdown, biomaRt, covr, |
22 | 22 |
BiocManager, BiocStyle, M3DExampleData, TENxPBMCData |
23 | 23 |
LinkingTo: Rcpp, RcppEigen |
24 | 24 |
License: MIT + file LICENSE |
25 | 25 |
Encoding: UTF-8 |
26 | 26 |
LazyData: true |
27 |
-RoxygenNote: 7.1.0 |
|
27 |
+RoxygenNote: 7.1.1 |
|
28 | 28 |
BugReports: https://github.com/campbio/celda/issues |
29 | 29 |
biocViews: SingleCell, GeneExpression, Clustering, Sequencing, Bayesian |
30 | 30 |
NeedsCompilation: yes |
... | ... |
@@ -24,7 +24,7 @@ LinkingTo: Rcpp, RcppEigen |
24 | 24 |
License: MIT + file LICENSE |
25 | 25 |
Encoding: UTF-8 |
26 | 26 |
LazyData: false |
27 |
-RoxygenNote: 7.1.0 |
|
27 |
+RoxygenNote: 7.1.1 |
|
28 | 28 |
BugReports: https://github.com/campbio/celda/issues |
29 | 29 |
biocViews: SingleCell, GeneExpression, Clustering, Sequencing, Bayesian |
30 | 30 |
NeedsCompilation: yes |
... | ... |
@@ -23,7 +23,7 @@ Suggests: testthat, knitr, roxygen2, rmarkdown, biomaRt, covr, |
23 | 23 |
LinkingTo: Rcpp, RcppEigen |
24 | 24 |
License: MIT + file LICENSE |
25 | 25 |
Encoding: UTF-8 |
26 |
-LazyData: false |
|
26 |
+LazyData: true |
|
27 | 27 |
RoxygenNote: 7.1.0 |
28 | 28 |
BugReports: https://github.com/campbio/celda/issues |
29 | 29 |
biocViews: SingleCell, GeneExpression, Clustering, Sequencing, Bayesian |
... | ... |
@@ -1,6 +1,6 @@ |
1 | 1 |
Package: celda |
2 | 2 |
Title: CEllular Latent Dirichlet Allocation |
3 |
-Version: 1.3.6 |
|
3 |
+Version: 1.4.0 |
|
4 | 4 |
Authors@R: c(person("Joshua", "Campbell", email = "camp@bu.edu", |
5 | 5 |
role = c("aut", "cre")), |
6 | 6 |
person("Sean", "Corbett", email = "scorbett@bu.edu", role = c("aut")), |
... | ... |
@@ -8,7 +8,7 @@ Authors@R: c(person("Joshua", "Campbell", email = "camp@bu.edu", |
8 | 8 |
person("Shiyi", "Yang", email="syyang@bu.edu", role = c("aut")), |
9 | 9 |
person("Eric", "Reed", email="reeder@bu.edu", role = c("aut")), |
10 | 10 |
person("Zhe", "Wang", email="zhe@bu.edu", role = c("aut"))) |
11 |
-Description: celda is a Bayesian hierarchical model that can co-cluster features and cells in single cell sequencing data. |
|
11 |
+Description: Utilizing Bayesian hierarchical models to analyze single-cell genomic data. |
|
12 | 12 |
Depends: R (>= 3.6) |
13 | 13 |
VignetteBuilder: knitr |
14 | 14 |
Imports: plyr, foreach, ggplot2, RColorBrewer, grid, scales, gtable, |
... | ... |
@@ -9,65 +9,30 @@ Authors@R: c(person("Joshua", "Campbell", email = "camp@bu.edu", |
9 | 9 |
person("Eric", "Reed", email="reeder@bu.edu", role = c("aut")), |
10 | 10 |
person("Zhe", "Wang", email="zhe@bu.edu", role = c("aut"))) |
11 | 11 |
Description: celda is a Bayesian hierarchical model that can co-cluster features and cells in single cell sequencing data. |
12 |
-Depends: |
|
13 |
- R (>= 3.6) |
|
12 |
+Depends: R (>= 3.6) |
|
14 | 13 |
VignetteBuilder: knitr |
15 |
-Imports: |
|
16 |
- plyr, |
|
17 |
- foreach, |
|
18 |
- ggplot2, |
|
19 |
- RColorBrewer, |
|
20 |
- grid, |
|
21 |
- scales, |
|
22 |
- gtable, |
|
23 |
- grDevices, |
|
24 |
- graphics, |
|
25 |
- matrixStats, |
|
26 |
- doParallel, |
|
27 |
- digest, |
|
28 |
- gridExtra, |
|
29 |
- methods, |
|
30 |
- reshape2, |
|
31 |
- MAST, |
|
32 |
- S4Vectors, |
|
33 |
- data.table, |
|
34 |
- Rcpp, |
|
35 |
- RcppArmadillo, |
|
36 |
- RcppEigen, |
|
37 |
- uwot, |
|
38 |
- enrichR, |
|
39 |
- stringi, |
|
40 |
- SummarizedExperiment, |
|
41 |
- MCMCprecision, |
|
42 |
- ggrepel, |
|
43 |
- Rtsne, |
|
44 |
- withr, |
|
45 |
- dendextend, |
|
46 |
- ggdendro, |
|
47 |
- pROC, |
|
48 |
- scater (>= 1.14.4), |
|
49 |
- scran, |
|
50 |
- SingleCellExperiment, |
|
51 |
- dbscan, |
|
52 |
- DelayedArray, |
|
53 |
- Seurat, |
|
54 |
- stringr, |
|
55 |
- Matrix |
|
56 |
-Suggests: |
|
57 |
- testthat, |
|
58 |
- knitr, |
|
59 |
- roxygen2, |
|
60 |
- rmarkdown, |
|
61 |
- biomaRt, |
|
62 |
- covr, |
|
63 |
- BiocManager, |
|
64 |
- BiocStyle, |
|
65 |
- M3DExampleData, |
|
66 |
- TENxPBMCData |
|
67 |
-LinkingTo: RcppArmadillo, Rcpp, RcppEigen |
|
14 |
+Imports: plyr, foreach, ggplot2, RColorBrewer, grid, scales, gtable, |
|
15 |
+ grDevices, graphics, matrixStats, doParallel, digest, |
|
16 |
+ gridExtra, methods, reshape2, MAST, S4Vectors, data.table, |
|
17 |
+ Rcpp, RcppEigen, uwot, enrichR, stringi, SummarizedExperiment, |
|
18 |
+ MCMCprecision, ggrepel, Rtsne, withr, dendextend, ggdendro, |
|
19 |
+ pROC, scater (>= 1.14.4), scran, SingleCellExperiment, dbscan, |
|
20 |
+ DelayedArray, Seurat, stringr, Matrix |
|
21 |
+Suggests: testthat, knitr, roxygen2, rmarkdown, biomaRt, covr, |
|
22 |
+ BiocManager, BiocStyle, M3DExampleData, TENxPBMCData |
|
23 |
+LinkingTo: Rcpp, RcppEigen |
|
68 | 24 |
License: MIT + file LICENSE |
69 | 25 |
Encoding: UTF-8 |
70 | 26 |
LazyData: false |
71 | 27 |
RoxygenNote: 7.1.0 |
72 | 28 |
BugReports: https://github.com/campbio/celda/issues |
73 | 29 |
biocViews: SingleCell, GeneExpression, Clustering, Sequencing, Bayesian |
30 |
+NeedsCompilation: yes |
|
31 |
+Packaged: 2020-04-02 18:47:49 UTC; josh |
|
32 |
+Author: Joshua Campbell [aut, cre], |
|
33 |
+ Sean Corbett [aut], |
|
34 |
+ Yusuke Koga [aut], |
|
35 |
+ Shiyi Yang [aut], |
|
36 |
+ Eric Reed [aut], |
|
37 |
+ Zhe Wang [aut] |
|
38 |
+Maintainer: Joshua Campbell <camp@bu.edu> |
... | ... |
@@ -68,6 +68,6 @@ LinkingTo: RcppArmadillo, Rcpp, RcppEigen |
68 | 68 |
License: MIT + file LICENSE |
69 | 69 |
Encoding: UTF-8 |
70 | 70 |
LazyData: false |
71 |
-RoxygenNote: 7.0.2 |
|
71 |
+RoxygenNote: 7.1.0 |
|
72 | 72 |
BugReports: https://github.com/campbio/celda/issues |
73 | 73 |
biocViews: SingleCell, GeneExpression, Clustering, Sequencing, Bayesian |
... | ... |
@@ -51,19 +51,19 @@ Imports: |
51 | 51 |
scran, |
52 | 52 |
SingleCellExperiment, |
53 | 53 |
dbscan, |
54 |
- DelayedArray |
|
54 |
+ DelayedArray, |
|
55 |
+ Matrix, |
|
56 |
+ M3DExampleData |
|
55 | 57 |
Suggests: |
56 | 58 |
testthat, |
57 | 59 |
knitr, |
58 | 60 |
roxygen2, |
59 | 61 |
rmarkdown, |
60 |
- Matrix, |
|
61 | 62 |
biomaRt, |
62 | 63 |
covr, |
63 |
- M3DExampleData, |
|
64 | 64 |
BiocManager, |
65 | 65 |
BiocStyle |
66 |
-LinkingTo: Rcpp, RcppArmadillo, RcppEigen |
|
66 |
+LinkingTo: RcppArmadillo, Rcpp, RcppEigen |
|
67 |