R/chooseAlleles.R
chooseAlleles.Rd
Combines two vectors of alleles by randomly selecting one allele or the other at each position.
chooseAlleles(a1, a2)
a1 | integer vector with first allele for each individual |
---|---|
a2 | integer vector with second allele for each individual
|
An integer vector with the result of sampling from a1
and a2
according to Mendelian inheritance.
# \donttest{ chooseAlleles(0:4, 5:9)#> [1] 5 1 7 3 4# }