-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #295 from MarioniLab/devel
Add NB-GLMM to master branch and upgrade to version 2.0
- Loading branch information
Showing
73 changed files
with
8,130 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,6 @@ doc | |
Meta | ||
docs | ||
.Rproj.user | ||
*yml | ||
*yml | ||
*.o | ||
*~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,36 @@ | ||
Package: miloR | ||
Type: Package | ||
Title: Differential neighbourhood abundance testing on a graph | ||
Version: 1.9.99 | ||
Version: 1.99.9 | ||
Authors@R: | ||
c(person("Mike", "Morgan", role=c("aut", "cre"), email="[email protected]"), | ||
comment=c(ORCID="0000-0003-0757-0711"), | ||
c(person("Mike", "Morgan", role=c("aut", "cre"), email="[email protected]", | ||
comment=c(ORCID="0000-0003-0757-0711")), | ||
person("Emma", "Dann", role=c("aut", "ctb"), email="[email protected]")) | ||
Description: Milo performs single-cell differential abundance testing. Cell states are modelled | ||
as representative neighbourhoods on a nearest neighbour graph. Hypothesis testing is performed using a | ||
negative bionomial generalized linear model. | ||
as representative neighbourhoods on a nearest neighbour graph. Hypothesis testing is performed using either | ||
a negative bionomial generalized linear model or negative binomial generalized linear mixed model. | ||
License: GPL-3 + file LICENSE | ||
Encoding: UTF-8 | ||
URL: https://marionilab.github.io/miloR | ||
BugReports: https://github.com/MarioniLab/miloR/issues | ||
biocViews: SingleCell, MultipleComparison, FunctionalGenomics, Software | ||
LinkingTo: Rcpp, | ||
RcppArmadillo, | ||
RcppEigen | ||
Depends: R (>= 4.0.0), | ||
edgeR | ||
Imports: BiocNeighbors, | ||
BiocGenerics, | ||
SingleCellExperiment, | ||
Matrix (>= 1.3-0), | ||
MatrixGenerics, | ||
S4Vectors, | ||
stats, | ||
stringr, | ||
methods, | ||
igraph, | ||
irlba, | ||
utils, | ||
cowplot, | ||
BiocParallel, | ||
BiocSingular, | ||
|
@@ -42,10 +47,11 @@ Imports: BiocNeighbors, | |
ggrepel, | ||
ggbeeswarm, | ||
RColorBrewer, | ||
grDevices | ||
grDevices, | ||
Rcpp, | ||
numDeriv | ||
Suggests: | ||
testthat, | ||
MASS, | ||
mvtnorm, | ||
scater, | ||
scran, | ||
|
@@ -59,7 +65,9 @@ Suggests: | |
MouseThymusAgeing, | ||
magick, | ||
RCurl, | ||
MASS, | ||
curl, | ||
scRNAseq, | ||
graphics | ||
RoxygenNote: 7.2.3 | ||
NeedsCompilation: no | ||
|
@@ -71,15 +79,19 @@ Collate: | |
'buildGraph.R' | ||
'calcNhoodExpression.R' | ||
'calcNhoodDistance.R' | ||
'checkSeparation.R' | ||
'countCells.R' | ||
'findNhoodMarkers.R' | ||
'graphSpatialFDR.R' | ||
'glmm.R' | ||
'makeNhoods.R' | ||
'milo.R' | ||
'miloR-package.R' | ||
'methods.R' | ||
'plotNhoods.R' | ||
'sim_discrete.R' | ||
'sim_family.R' | ||
'sim_nbglmm.R' | ||
'sim_trajectory.R' | ||
'testNhoods.R' | ||
'testDiffExp.R' | ||
|
@@ -88,4 +100,6 @@ Collate: | |
'annotateNhoods.R' | ||
'groupNhoods.R' | ||
'findNhoodGroupMarkers.R' | ||
'RcppExports.R' | ||
'miloR.R' | ||
VignetteBuilder: knitr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.