Dear Dr. Broman
I want to calculate multiple qtl analysis while considering covariate and interaction covariate .in the scanone analysis for example I used this script
QTL_hk2<-scanone(QTL__root_length_TREATMENT_1, pheno.col=2,method="hk",addcovar = RL_C,intcovar= RL_C )
and the results showed strong evidence of one qtl on chr=5
for multiple qtl analysis I used below scripts:
M_QTL<- calc.genoprob(QTL_root_length_TREATMENT, step=1)
M_qtl <- makeqtl(M_QTL, chr=c( "1","5"), pos=c(19, 53), what="prob")
summary(M_qtl)
out.fq <- fitqtl(QTL__root_length_TREATMENT, qtl=M_qtl,pheno.col=2, method="hk",formula=y~Q1+Q2)
summary(out.fq)
summary(fitqtl(QTL_root_length_TREATMENT, qtl=M_qtl, pheno.col=2, method="hk", get.ests=TRUE, dropone=FALSE))
covar <- data.frame(RL_C=QTL__root_length_TREATMENT$pheno$RL_C)
addcovarint(QTL_root_length_TREATMENT, pheno.col=2,M_qtl, covar,"RL_C" , formula=y~Q1+Q2, method="hk" )
But the result was weird, they didn't show any significant qtl .
My question is : am I used the correct way to add covariate and interacting covariate in multiple qtl analysis ?
Is there any other function for calculate multiple qtl with covariate and interacting covariate ?
Thank you in advance
Zahra PAKBAZ