The interaction lod score that you see in the summary of scantwo results is, rather different. For a given pair of chromosomes, we find the positions that give the biggest full lod score and then find the positions that give the biggest additive lod score. The interaction lod score shown is the difference between these two.
If you want a summary of the sort of pointwise interaction lod scores as appear in the scantwo plot, you need to use the argument what="int" when you call summary. That will then find, for each pair of chromosomes, the positions with the largest pointwise interaction lod scores, and then give the values for all of the lod scores for that pair of QTL positions.
Ponder these:
data(hyper)
hyper <- subset(hyper, chr=1:4) # to save time
hyper <- calc.genoprob(hyper)
out <- scantwo(hyper, method="hk")
summary(out)
summary(out, what="int")
regards,
karl
> --
> You received this message because you are subscribed to the Google Groups "R/qtl discussion" group.
> To post to this group, send email to rqtl...@googlegroups.com.
> To unsubscribe from this group, send email to rqtl-disc+...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/rqtl-disc?hl=en.
>
karl