Description Usage Arguments Value See Also Examples
View source: R/estQTLeffects.R
Combine multiple runs of estQTLeffects by applying cbind to each component
1 |
... |
Results of [estQTLeffects()] |
labels |
Vector of labels to use in the combination. |
list of matrices; each component corresponds to a position in the genome and is a matrix with phenotypes x effects
[estQTLeffects()]
1 2 3 4 5 6 7 | library(qtl)
data(fake.f2)
fake.f2 <- calc.genoprob(fake.f2)
sex <- fake.f2$pheno$sex
eff.fem <- estQTLeffects(fake.f2[,sex==0], pheno.col=1)
eff.mal <- estQTLeffects(fake.f2[,sex==1], pheno.col=1)
eff <- cbindQTLeffects(eff.fem, eff.mal, labels=c("female", "male"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.