| summary.scanone {qtl} | R Documentation |
Print the rows of the output from the function scanone that
correspond to the maximum LOD for each chromosome.
summary.scanone(object,threshold=0,...)
object |
An object of class scanone, the output of the
function scanone. This is a data.frame whose
first column is the chromosome number and third column is the LOD
score. |
threshold |
Only peaks with LOD score above this value will be returned. |
... |
Ignored at this point. |
An object of class summary.scanone, to be printed by
print.summary.scanone. This is a data.frame with one row per
chromosome, that at which the LOD score is a maximum.
Karl W Broman, kbroman@jhsph.edu
http://biosun01.biostat.jhsph.edu/~kbroman/software/qtl.html
data(fake.f2) fake.f2 <- calc.genoprob(fake.f2,step=1,off.end=5) output1 <- scanone(fake.f2,method="im") summary(output1) summary(output1,3)