expGen2probGen {PhenotypeSimulator} | R Documentation |
Rewrite expected genotypes into genotype probabilities.
Description
Convert genotype frequencies to genotypes encoded as triplets of probablities (p(AA), p(Aa), p(aa)).
Usage
expGen2probGen(geno)
Arguments
geno |
Vector [numeric] with genotypes |
Value
Numeric vector of length [length(geno)*3] with the genotype encoded as probabbilities (p(AA), p(Aa), p(aa)).
Examples
nrSamples <- 10
# Simulate binomial SNP with 0.2 allele frequency
geno <- rbinom(nrSamples, 2, p=0.2)
geno_prob<- expGen2probGen(geno)
[Package PhenotypeSimulator version 0.3.4 Index]