summary.fitqtl {qtl} | R Documentation |
Print summary information about the results of fitqtl
.
## S3 method for class 'fitqtl': summary(object, ...)
object |
Output from fitqtl . |
... |
Ignored at this point. |
An object of class summary.fitqtl
, which is not all that
different than the input, but when printed gives summary information
about the results.
Hao Wu
Sen, 'S. and Churchill, G. A. (2001) A statistical framework for quantitative trait mapping. Genetics 159, 371–387.
data(fake.f2) # take out several QTLs and make QTL object qc <- c(1, 8, 13) qp <- c(26, 56, 28) fake.f2 <- subset(fake.f2, chr=qc) fake.f2 <- sim.geno(fake.f2, n.draws=8, step=2, err=0.001) qtl <- makeqtl(fake.f2, qc, qp) # fit model with 3 interacting QTLs interacting # (performing a drop-one-term analysis) lod <- fitqtl(fake.f2, pheno.col=1, qtl, formula=y~Q1*Q2*Q3) summary(lod)