lodint {qtl} | R Documentation |
Calculate a LOD support interval for a particular chromosome, using output from scanone.
lodint(results, chr, drop=1.5)
results |
Output from scanone . |
chr |
A chromosome ID. |
drop |
LOD units to drop to form the interval. |
An object of class scanone
, like the input, indicating the
position with the maximum LOD, and indicating approximate endpoints
for the LOD support interval.
Karl W Broman, kbroman@jhsph.edu
data(hyper) hyper <- calc.genoprob(hyper, step=0.5) out <- scanone(hyper, method="hk") lodint(out, chr=1) lodint(out, chr=4) lodint(out, chr=4, drop=2)