luca {luca} | R Documentation |
Likelihood-based case-control inference Under Covariate Assumptions (LUCA)
Description
In genetic association studies, there is increasing interest in understanding the joint effects of genetic and nongenetic factors. For rare diseases, the case-control study is the standard design and logistic regression is the standard method of inference. However, the power to detect statistical interaction is a concern, even with relatively large samples. LUCA implements maximum likelihood inference under
independence of the genetic factor and nongenetic attributes in the control population,
independence of the genetic factor and nongenetic attributes, plus Hardy-Weinberg proportions (HWP) in control genotype frequencies, or
simple dependence between the genetic and nongenetic covariates in the control population.
Maximum likelihood under covariate assumptions offers improved precision of interaction estimators compared to the standard logistic regression approach which makes no assumptions on the distribution of covariates.
Usage
luca(pen.model, gLabel, dat, HWP = FALSE, dep.model = NULL)
Arguments
pen.model |
an R formula specifying the disease penetrance model
relating a genetic factor and a number of nongenetic attributes (the
predictors or transformations thereof) to disease status. A typical
|
gLabel |
a character string specifying the name of the genetic factor in |
dat |
a data frame containing the variables in |
HWP |
a logical value indicating whether the genotype frequencies
in controls should be assumed to follow Hardy-Weinberg proportions.
When |
dep.model |
an R formula specifying the dependence between the
genetic factor and nongenetic attributes. (See the Details section below for
more on the dependence model.) When |
Details
Inference for association parameters is obtained by fitting a
conditional logistic regression model
with appropriate match-sets comprised of
“pseudo-individuals” having all possible values of the genetic
factor and disease status but common value of the nongenetic attribute.
The function coxph.fit
from the survival
package is used to fit the conditional logistic regression.
A dependence model such as g ~ a
specifies a polychotomous
regression model for the genetic factor g
as a function of the
nongenetic attribute a
. The polychotomous regression for g
given a
holds when the conditional distribution of a
given
g
is from the exponential family of distributions, with a constant
dispersion parameter across the levels of the genetic factor.
Alternately, g
and a
may be conditionally independent
given a third variable a2
. Typically, a2
is also a term in
the penetrance model (pen.model
). To model conditional independence
of g
and a
given a2
, specify the dependence model
(dep.model
) as g ~ a2
. See Shin, McNeney and Graham (2007)
for details. luca
also allows dependence models of the form
g ~ a1 + a2 + ...
for multiple attributes a1
, a2
, ...
However, there is no formal justification for the use of such a model to capture the
dependence between g
and multiple nongenetic attributes.
Value
An object of class "luca"
with the following components:
call |
the function call |
coefficients |
estimates of parameters in the
covariate model (lebelled as |
var |
the variance-covariance matrix of the parameter estimates. |
iter |
number of iterations in the iterative search for parameter estimates |
The function summary.luca
(or summary
) can be used to obtain a summary of the results in a similar style to the lm
and glm
summaries.
Warning
Inference is not robust to misspecification
of the covariate assumptions. There should be strong a priori evidence
to support any assumptions that are made. Alternately, luca
may be used
to screen for “interesting” interactions that are followed up
with logistic regression using data from a larger study.
Author(s)
Ji-Hyung Shin, Brad McNeney, Jinko Graham
References
Shin J-H, McNeney B, Graham J (2007). Case-Control Inference of Interaction between Genetic and Nongenetic Risk Factors under Assumptions on Their Distribution. Statistical Applications in Genetics and Molecular Biology 6(1), Article 13. Available at: http://www.bepress.com/sagmb/vol6/iss1/art13.
See Also
summary.luca
, glm
, coxph
, clogit
Examples
data(lucaDat)
# typical penetrance model:
pen.model<-formula(d~I(allele.count(g,"C"))+a+a2+I(allele.count(g,"C")):a)
#1. Assuming independence and HWP
fitHWP<-luca(pen.model=pen.model, gLabel="g", dat=lucaDat, HWP=TRUE)
fitHWP$coef
fitHWP$var
summary.luca(fitHWP) # OR 'summary(fitHWP)'
#2. Assuming independence only
fitDefault<-luca(pen.model=pen.model, gLabel="g", dat=lucaDat)
fitDefault$coef
fitDefault$var
#3. Allowing for dependence between genetic and nongenetic factors
# General dependence model
fitDep1<-luca(pen.model=pen.model, gLabel="g", dat=lucaDat,
dep.model=formula(g~a))
fitDep1$coef
fitDep1$var
# When 'g' and 'a' are conditioanally independent given the third variable 'a2':
fitDep2<-luca(pen.model=pen.model, gLabel="g", dat=lucaDat,
dep.model=formula(g~a2))
fitDep2$coef
fitDep2$var