With the Haldane map function, a recombination fraction of 0.4 corresponds to a map distance of 80 cM.
> -is there a better way to decrease gaps between markers? i.e. break a
> linkage group into two separate linkage groups?
You can use movemarker() to move a set of markers to a different linkage group (and even create a new linkage group in this way).
data(hyper)
chr1mar <- markernames(hyper, chr=1)
for(i in 1:5) hyper <- movemarker(hyper, chr1mar[i], "1b")
chrnames(hyper)
> -alternatively, is there an argument I can use when creating the
> linkage group or ordering the markers to prevent markers with >0.5 RF
> to be grouped together?
Use a smaller max.rf.
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.
>
The formLinkageGroups function (with reorgMarkers=TRUE) places markers at an arbitrary spacing of 10 cM.
orderMarkers() doesn't do anything with linkage groups that have just 2 markers, and so the inter-marker distance doesn't get estimated...those linkage groups are just left alone.
So, you need to follow up with est.map() and replace.map()
> And in general, is there a method you would recommend for creating such a linkage map from scratch? i notice in your guide, you set max.rf=0.35 and used droponemarker() to reduce the intermarker distance. Do you think this is preferable to setting max.rf=0.25, or breaking up LGs with large intermarker gaps?
I generally start with smaller linkage groups and then try to merge them, rather than go for larger groups that may need to be split apart.
karl
karl