EVOLUTION-MANAGER
Edit File: allchrsplits.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Test all possible splits of a chromosome into two pieces</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for allchrsplits {qtl}"><tr><td>allchrsplits {qtl}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Test all possible splits of a chromosome into two pieces</h2> <h3>Description</h3> <p>In order to assess the support for a linkage group, this function splits the linkage groups into two pieces at each interval and in each case calculates a LOD score comparing the combined linkage group to the two pieces. </p> <h3>Usage</h3> <pre> allchrsplits(cross, chr, error.prob=0.0001, map.function=c("haldane","kosambi","c-f","morgan"), m=0, p=0, maxit=4000, tol=1e-6, sex.sp=TRUE, verbose=TRUE) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>cross</code></td> <td> <p>An object of class <code>cross</code>. See <code><a href="read.cross.html">read.cross</a></code> for details.</p> </td></tr> <tr valign="top"><td><code>chr</code></td> <td> <p>A vector specifying which chromosomes to study. This should be a vector of character strings referring to chromosomes by name; numeric values are converted to strings. Refer to chromosomes with a preceding <code>-</code> to have all chromosomes but those considered. A logical (TRUE/FALSE) vector may also be used.</p> </td></tr> <tr valign="top"><td><code>error.prob</code></td> <td> <p>Assumed genotyping error rate used in the calculation of the penetrance Pr(observed genotype | true genotype).</p> </td></tr> <tr valign="top"><td><code>map.function</code></td> <td> <p>Indicates whether to use the Haldane, Kosambi, Carter-Falconer, or Morgan map function when converting genetic distances into recombination fractions. (Ignored if m > 0.)</p> </td></tr> <tr valign="top"><td><code>m</code></td> <td> <p>Interference parameter for the chi-square model for interference; a non-negative integer, with m=0 corresponding to no interference. This may be used only for a backcross or intercross.</p> </td></tr> <tr valign="top"><td><code>p</code></td> <td> <p>Proportion of chiasmata from the NI mechanism, in the Stahl model; p=0 gives a pure chi-square model. This may be used only for a backcross or intercross.</p> </td></tr> <tr valign="top"><td><code>maxit</code></td> <td> <p>Maximum number of EM iterations to perform.</p> </td></tr> <tr valign="top"><td><code>tol</code></td> <td> <p>Tolerance for determining convergence.</p> </td></tr> <tr valign="top"><td><code>sex.sp</code></td> <td> <p>Indicates whether to estimate sex-specific maps; this is used only for the 4-way cross.</p> </td></tr> <tr valign="top"><td><code>verbose</code></td> <td> <p>If TRUE, print information on progress.</p> </td></tr> </table> <h3>Value</h3> <p>A data frame (actually, an object of class <code>"scanone"</code>, so that one may use <code><a href="plot.scanone.html">plot.scanone</a></code>, <code><a href="summary.scanone.html">summary.scanone</a></code>, etc.) with each row being an interval at which a split is made. The first two columns are the chromosome ID and midpoint of the interval. The third column is a LOD score comparing the combined linkage group to the split into two linkage groups. A fourth column (<code>gap</code>) indicates the length of each interval. </p> <p>The row names indicate the flanking markers for each interval. </p> <h3>Author(s)</h3> <p>Karl W Broman, <a href="mailto:broman@wisc.edu">broman@wisc.edu</a> </p> <h3>See Also</h3> <p><code><a href="est.map.html">est.map</a></code>, <code><a href="ripple.html">ripple</a></code>, <code><a href="est.rf.html">est.rf</a></code>, <code><a href="switch.order.html">switch.order</a></code>, <code><a href="movemarker.html">movemarker</a></code> </p> <h3>Examples</h3> <pre> data(fake.bc) allchrsplits(fake.bc, 7, error.prob=0, verbose=FALSE) </pre> <hr /><div style="text-align: center;">[Package <em>qtl</em> version 1.46-2 <a href="00Index.html">Index</a>]</div> </body></html>