Learn R Programming

PhenotypeSimulator (version 0.3.4)

expGen2probGen: 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

Run this code
# NOT RUN {
nrSamples <- 10
# Simulate binomial SNP with 0.2 allele frequency
geno <- rbinom(nrSamples, 2, p=0.2)
geno_prob<- expGen2probGen(geno)
# }

Run the code above in your browser using DataLab