EVOLUTION-MANAGER
Edit File: c.scanoneperm.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: Combine data from scanone permutations</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 c.scanoneperm {qtl}"><tr><td>c.scanoneperm {qtl}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Combine data from scanone permutations</h2> <h3>Description</h3> <p>Concatenate the data for multiple runs of <code><a href="scanone.html">scanone</a></code> with <code>n.perm > 0</code>. </p> <h3>Usage</h3> <pre> ## S3 method for class 'scanoneperm' c(...) ## S3 method for class 'scanoneperm' rbind(...) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>...</code></td> <td> <p>A set of objects of class <code>scanoneperm</code>. (This can also be a list of <code>scanoneperm</code> objects.) These are the permutation results from <code><a href="scanone.html">scanone</a></code> (that is, when <code>n.perm > 0</code>). These must all have the same number of columns. (That is, they must have been created with the same number of phenotypes, and it is assumed that they were generated in precisely the same way.)</p> </td></tr> </table> <h3>Details</h3> <p>The aim of this function is to concatenate the results from multiple runs of a permutation test <code><a href="scanone.html">scanone</a></code>, to assist with the case that such permutations are done on multiple processors in parallel. </p> <h3>Value</h3> <p>The concatenated input, as a <code>scanoneperm</code> object.</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="summary.scanoneperm.html">summary.scanoneperm</a></code>, <code><a href="scanone.html">scanone</a></code>, <code><a href="cbind.scanoneperm.html">cbind.scanoneperm</a></code>, <code><a href="c.scantwoperm.html">c.scantwoperm</a></code> </p> <h3>Examples</h3> <pre> data(fake.f2) fake.f2 <- calc.genoprob(fake.f2) operm1 <- scanone(fake.f2, method="hk", n.perm=100, perm.Xsp=TRUE) operm2 <- scanone(fake.f2, method="hk", n.perm=50, perm.Xsp=TRUE) operm <- c(operm1, operm2) </pre> <hr /><div style="text-align: center;">[Package <em>qtl</em> version 1.46-2 <a href="00Index.html">Index</a>]</div> </body></html>