Skip to content

Commit

Permalink
add glmmSeq class
Browse files Browse the repository at this point in the history
  • Loading branch information
stemangiola committed Sep 17, 2023
1 parent 69d6d33 commit 20c8fb5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions R/glmmSeq.R
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,20 @@ glmerCore = function (geneList, fullFormula, reduced, data, control, offset,

}

setClass("GlmmSeq", slots = list(
info = "list",
formula = "formula",
stats = "list_or_matrix",
predict = "df_or_matrix",
reduced = "formulaOrNULL",
countdata = "df_or_matrix",
metadata = "df_or_matrix",
modelData = "df_or_matrix",
optInfo = "matrix",
errors = "character_or_list",
vars = "list"
))

glmmSeq = function (modelFormula, countdata, metadata, id = NULL, dispersion = NA,
sizeFactors = NULL, reduced = NULL, modelData = NULL, designMatrix = NULL,
method = c("lme4", "glmmTMB"), control = NULL, family = glmmTMB::nbinom2,
Expand Down

0 comments on commit 20c8fb5

Please sign in to comment.