- Notifications
You must be signed in to change notification settings - Fork11
Gene-level general linear mixed model
License
myles-lewis/glmmSeq
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
This R package is designed to model gene expression with a general linear mixed model (GLMM). This allows us to include random effects as well as fixed effects. For the purpose of the package we use theglmer function from thelme4package which fits a GLMM.
This package focuses in particular on changes in genes expression between different response or treatment groups over time.
install.packages("glmmSeq")devtools::install_github("myles-lewis/glmmSeq")You can also download the source directory and load the functions individually:
functions = list.files("./R", full.names = TRUE)invisible(lapply(functions, source))But you will need to load in the additional libraries then:
# Install CRAN packagesinvisible(lapply(c("MASS", "car", "ggplot2", "ggpubr", "lme4", "lmerTest", "methods", "parallel", "plotly", "pbapply", "pbmcapply"), function(p){ if(! p %in% rownames(installed.packages())) { install.packages(p) } library(p, character.only=TRUE) }))# Install BioConductor packagesif (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager")invisible(lapply(c("qvalue"), function(p){ if(! p %in% rownames(installed.packages())) BiocManager::install(p) library(p, character.only=TRUE)}))For examples see thevignette.
glmmSeq was developed by the bioinformatics team at theExperimental Medicine & Rheumatology department at Queen Mary University London.
If you use this package please cite as:
citation("glmmSeq")## To cite package ‘glmmSeq’ in publications use:#### Myles Lewis, Katriona Goldmann, Elisabetta Sciacca, Cankut Cubuk and Anna Surace (2021). ## glmmSeq: General Linear Mixed Models for Gene-level Differential Expression. ## R package version 0.5.4. https://github.com/myles-lewis/glmmSeq#### A BibTeX entry for LaTeX users is#### @Manual{,## title = {glmmSeq: General Linear Mixed Models for Gene-level Differential Expression},## author = {Myles Lewis and Katriona Goldmann and Elisabetta Sciacca and Cankut Cubuk and Anna Surace},## year = {2022},## note = {R package version 0.5.4},## url = {https://github.com/myles-lewis/glmmSeq},## }About
Gene-level general linear mixed model
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Contributors4
Uh oh!
There was an error while loading.Please reload this page.
