Description Usage Arguments Value Examples
View source: R/utilityFunctions.R
Convert genotype frequencies to genotypes encoded as triplets of probablities (p(AA), p(Aa), p(aa)).
1 | expGen2probGen(geno)
|
geno |
Vector [numeric] with genotypes |
Numeric vector of length [length(geno)*3] with the genotype encoded as probabbilities (p(AA), p(Aa), p(aa)).
1 2 3 4 | nrSamples <- 10
# Simulate binomial SNP with 0.2 allele frequency
geno <- rbinom(nrSamples, 2, p=0.2)
geno_prob<- expGen2probGen(geno)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.