summary.scanone {qtl} | R Documentation |
Print the rows of the output from scanone
that
correspond to the maximum LOD for each chromosome, provided that they
exceed a specified threshold.
summary.scanone(object, threshold=0, ...)
object |
An object of the form output by the function
scanone : a data.frame whose first column is the
chromosome ID and third column is the LOD score. All other
columns are ignored. |
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, corresponding to the maximum LOD scores.
Karl W Broman, kbroman@jhsph.edu
scanone
, plot.scanone
,
max.scanone
data(listeria) listeria <- calc.genoprob(listeria, step=2.5) out <- scanone(listeria, model="2part") # All peaks summary(out) # Peaks with LOD(p,mu) > 5 summary(out, 5)