View source: R/fit_nullmodel_genome_cond_spa.R
fit_nullmodel_genome_cond_spa | R Documentation |
The fit_nullmodel_genome_cond_spa
function fit regression models for conditional analysis in imbalanced
case-control setting, which provides the preliminary step for subsequent conditional variant-set tests in
conditional analysis. Each chromosome has a separate null model for conditional analysis. See fit_nullmodel
for more details.
fit_nullmodel_genome_cond_spa(
fixed,
data = parent.frame(),
kins,
use_sparse = TRUE,
use_SPA = TRUE,
agds_dir,
known_loci,
geno_missing_imputation = c("mean", "minor"),
MAC_cutoff = 20,
output_path,
cond_null_model_name = NULL,
phenotype_id,
phenotype,
kins_cutoff = 0.022,
id,
random.slope = NULL,
groups = NULL,
family = binomial(link = "logit"),
method = "REML",
method.optim = "AI",
maxiter = 500,
tol = 1e-05,
taumin = 1e-05,
taumax = 1e+05,
tauregion = 10,
verbose = FALSE,
...
)
fixed |
an object of class |
data |
a data frame or list (or object coercible by |
kins |
a known positive semi-definite relationship matrix
(e.g. kinship matrix in genetic association studies) or a list of known
positive semi-definite relationship matrices. The rownames and colnames of
these matrices must at least include all samples as specified in the |
use_sparse |
a logical switch of whether the provided dense |
use_SPA |
a logical switch determines if the null model fitting occurs in an imbalanced case-control setting (default = TRUE). |
agds_dir |
file directory of annotated GDS (aGDS) files for all chromosomes (1-22) |
known_loci |
the data frame of variants to be adjusted for in conditional analysis and should contain 4 columns in the following order: chromosome (CHR), position (POS), reference allele (REF), and alternative allele (ALT) (default = NULL). |
geno_missing_imputation |
method of handling missing genotypes. Either "mean" or "minor" (default = "mean"). |
MAC_cutoff |
the cutoff of the minimum minor allele count of known variants adjusted in conditional analysis (default = 20). |
output_path |
the directory for the output files. |
cond_null_model_name |
the file name of conditional null models (default = NULL). |
phenotype_id |
id of samples. |
phenotype |
outcome in regression. |
kins_cutoff |
the cutoff value for clustering samples to make the output matrix sparse block-diagonal (default = 0.022). |
id |
a column in the data frame |
random.slope |
an optional column indicating the random slope for time effect used
in a mixed effects model for longitudinal data. It must be included in the names of |
groups |
an optional categorical variable indicating the groups used in a
heteroscedastic linear mixed model (allowing residual variances in different groups to be different).
This variable must be included in the names of |
family |
a description of the error distribution and link function to be used
in the model. This can be a character string naming a family function, a family
function or the result of a call to a family function. (See |
method |
method of fitting the generalized linear mixed model. Either "REML" or "ML" (default = "REML"). |
method.optim |
optimization method of fitting the generalized linear mixed model. Either "AI", "Brent" or "Nelder-Mead" (default = "AI"). |
maxiter |
a positive integer specifying the maximum number of iterations when fitting the generalized linear mixed model (default = 500). |
tol |
a positive number specifying tolerance, the difference threshold for parameter estimates below which iterations should be stopped (default = 1e-5). |
taumin |
the lower bound of search space for the variance component parameter |
taumax |
the upper bound of search space for the variance component parameter |
tauregion |
the number of search intervals for the REML or ML estimate of the variance component
parameter |
verbose |
a logical switch for printing detailed information (parameter estimates in each iteration) for testing and debugging purpose (default = FALSE). |
... |
additional arguments that could be passed to |
The function returns objects of the null models fit from fit_nullmodel
and whether the kins
matrix is sparse when fitting the null model, each chromosome has one output.
See fit_nullmodel
for more details.
Chen, H., et al. (2016). Control for population structure and relatedness for binary traits in genetic association studies via logistic mixed models. The American Journal of Human Genetics, 98(4), 653-666. (pub)
Chen, H., et al. (2019). Efficient variant set mixed model association tests for continuous and binary traits in large-scale whole-genome sequencing studies. The American Journal of Human Genetics, 104(2), 260-274. (pub)
Chen, H. (2021). GMMAT: Generalized linear Mixed Model Association Tests Version 1.3.2. (web)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.