cov.int
).
The covariate for interaction (cov.int
) can be SNP genotype (gene-gene interaction) or an environmental factor (gene-environment interaction). Only one
interaction term is allowed. When cov.int
is dichotomous, stratified analyses can be requested by specifying sub
="Y". The covariance between the main
effect (SNP) and the interaction effect is provided in the output when stratified analysis is not requested. The SNP genotype and the interaction are treated
as fixed effects, and a random effect correlated according to degree of relatedness within a family is also fitted.
In each test for interaction, the lmekin
function from
package coxme
is used.
lmepack.int.batch(phenfile,genfile,pedfile,phen,kinmat,covars,cov.int,sub="N",
outfile,col.names=T,sep.ped=",",sep.phe=",",sep.gen=",")
phenfile
phenfile
covars
cov.int
is dichotomous) outfile
.
If stratified analyses are requested, the result file will include the following columns. Otherwise, cov_beta_snp_beta_int
will be included instead of
the results from stratified analyses, that is, (beta_snp_cov0
, se_snp_cov0
, pval_snp_cov0
, beta_snp_cov1
, se_snp_cov1
,
and pval_snp_cov1
).beta_snp
beta_snp
not equal to zerocov.int
level is 0beta_snp_cov0
beta_snp_cov0
not equal to zerocov.int
level is 1beta_snp_cov1
beta_snp_cov1
not equal to zerobeta_int
beta_int
not equal to zerolmepack.int.batch
function first reads in and merges phenotype-covariates, genotype
and pedigree files, then tests gene-environment or gene-gene interaction for phen
against all SNPs in genfile
.
Only one interaction term is allowed, so is the covariate for interaction (cov.int
). When cov.int
is dichotomous, stratified analyses can be
requested by specifying sub
="Y". The covariance between the main effect (SNP) and the interaction effect is provided in the output when stratified analysis is not requested.
genfile
contains unique individual id and genotype data, with the column names being "id" and SNP names.
For each SNP, the genotype data should be coded as 0, 1, 2 indicating the numbers of the coded alleles. The SNP name in genotype file should not have any
dash, '-' and other special characters(dots and underscores are OK). phenfile
contains unique individual id,
phenotype and covariate data, with the column names being "id" and phenotype and
covaraite names. pedfile
contains pedigree informaion, with the column names being
"famid","id","fa","mo","sex". In all files, missing value should be an empty space, except missing parental id in pedfile
.
SNPs with low genotype counts (especially minor allele homozygote) may be omitted. The lmepack.int.batch
function fits LME model using
lmekin
function from coxme
package.
Abecasis, G. R., Cardon, L. R., Cookson, W. O., Sham, P. C., & Cherny, S. S. Association analysis in a variance components framework. Genet Epidemiol, 21 Suppl 1, S341-S346 (2001).
## Not run:
# lmepack.int.batch(phenfile="simphen.csv",genfile="simgen.csv",pedfile="simped.csv",
# phen="SIMQT",kinmat="simkmat.Rdata",outfile="simout.csv",covars=c("age","sex"),
# cov.int="sex",sub="Y",sep.ped=",",sep.phe=",",sep.gen=",")
# ## End(Not run)
Run the code above in your browser using DataLab