You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DESCRIPTION
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
Package: scLANE
2
2
Type: Package
3
3
Title: Model Gene Expression Dynamics with Spline-Based NB GLMs, GEEs, & GLMMs
4
-
Version: 0.8.7
4
+
Version: 0.99.0
5
5
Authors@R: c(person(given = c("Jack", "R."), family = "Leary", email = "j.leary@ufl.edu", role = c("aut", "cre"), comment = c(ORCID = "0009-0004-8821-3269")),
6
6
person(given = "Rhonda", family = "Bacher", email = "rbacher@ufl.edu", role = c("ctb", "fnd"), comment = c(ORCID = "0000-0001-5787-476X")))
7
7
Description: Our scLANE model uses truncated power basis spline models to build flexible, interpretable models of single cell gene expression over pseudotime or latent time.
Copy file name to clipboardExpand all lines: NEWS.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,8 @@
1
+
# Changes in v0.99.0
2
+
3
+
+ Preparing for BioConductor submission.
4
+
+ Slightly adjusted `waldTestGEE()` and `scoreTestGEE()` to be more efficient.
5
+
1
6
# Changes in v0.8.7
2
7
3
8
+ Switched GEE fitting back to use `scale.fix = FALSE` and substituted a fixed value for the Negative-binomial overdispersion parameter (instead of estimating via method-of-moments) as it improves model fits.
Copy file name to clipboardExpand all lines: R/scoreTestGEE.R
+32-20Lines changed: 32 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@
4
4
#' @author Jack R. Leary
5
5
#' @description Performs a basic Lagrange multiplier test to determine whether an alternate model is significantly better than a nested null model. This is the GEE equivalent (kind of) of \code{\link{modelLRT}}. Be careful with small sample sizes.
6
6
#' @importFrom stats model.matrix predict pchisq
7
+
#' @importFrom MASS negative.binomial
7
8
#' @importFrom Matrix bdiag
8
9
#' @param mod.1 The model under the alternative hypothesis. Must be of class \code{geem}. Defaults to NULL.
9
10
#' @param mod.0 The model under the null hypothesis. Must be of class \code{geem}. Defaults to NULL.
Copy file name to clipboardExpand all lines: R/testDynamic.R
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@
25
25
#' @param is.gee Should a GEE framework be used instead of the default GLM? Defaults to FALSE.
26
26
#' @param cor.structure If the GEE framework is used, specifies the desired working correlation structure. Must be one of "ar1", "independence", or "exchangeable". Defaults to "ar1".
27
27
#' @param gee.bias.correction.method (Optional) Specify which small-sample bias correction to be used on the sandwich variance-covariance matrix prior to test statistic estimation. Options are "kc" and "df". Defaults to NULL, indicating the use of the model-based variance.
28
-
#' @param gee.test A string specifying the type of test used to estimate the significance of the full model. Must be one of "wald" or "score". Defaults to "score".
28
+
#' @param gee.test A string specifying the type of test used to estimate the significance of the full model. Must be one of "wald" or "score". Defaults to "wald".
29
29
#' @param is.glmm Should a GLMM framework be used instead of the default GLM? Defaults to FALSE.
30
30
#' @param id.vec If a GEE or GLMM framework is being used, a vector of subject IDs to use as input to \code{\link[geeM]{geem}} or \code{\link[glmmTMB]{glmmTMB}}. Defaults to NULL.
31
31
#' @param glmm.adaptive (Optional) Should the basis functions for the GLMM be chosen adaptively? If not, uses 4 evenly spaced knots. Defaults to TRUE.
0 commit comments