I am using CIM in a backcross family. Could I use 'fitqtl' (and the
get.est=TRUE) in some form to get estimates of QTL effects of the
fitted CIM model? For the window size I used I can identify the
markers which are outside that for the position of putative QTL. Could
this be used in a 'covar' data.frame?
Thank you very much in advance.
Nihal
The specific markers chosen as covariates in CIM are saved as attributes to the output.
attr(myoutput, "marker.covar") gives the marker names and
attr(myoutput, "marker.covar.pos") gives their positions.
Consider the following example:
> data(hyper)
> hyper <- calc.genoprob(hyper, step=2.5)
> out <- scanone(hyper)
> out.cim <- cim(hyper, n.marcovar=3)
> attr(out.cim, "marker.covar")
[1] "D4Mit164" "D1Mit94" "D6Mit15"
> attr(out.cim, "marker.covar.pos")
chr pos
D4Mit164 4 29.5
D1Mit94 1 67.8
D6Mit15 6 66.7
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.
>
>