summary.dlmap {dlmap} | R Documentation |
Output summary of dlmap object, including summary of input dlcross object and detected QTL.
## S3 method for class 'dlmap': summary(object, ...)
object |
object of class dlmap |
... |
additional arguments passed to "summary" |
Prints summary of input dlcross
object, as well as the summary table
computed from dlmap.asreml
or dlmap.lme
. This includes the
chromosome QTL are detected on, estimated positions, flanking markers, QTL
effects and standard deviations, Z-ratio and p-value.
Emma Huang and Andrew George; Julian Taylor
Huang, BE and George, AW. 2009. Look before you leap: A new approach to QTL mapping. TAG 119:899-911
## Not run: # load dataset data(BSdat) dl.in1 <- dlcross(format="rqtl", obj=BSdat, idname="ID", fixpos=1) BSdl <- dlmap.asreml(object=dl.in1, phename="phenotype", filestem="BS") BSdl <- dlmap.lme(object=dl.in1, phename="phenotype", filestem="BS") summary(BSdl) ## End(Not run)