Description Usage Arguments Details Examples
Estimate allelic frequencies in reference database
1 |
x |
profiles object |
labels |
(optional) list of per-locus labels of alleles (repeat numbers for integers, like factor levels) |
The allele frequencies are estimated using the counting method. That is, the empirical fraction of each allele is taken as an estimate of the frequency.
Since alleles are stored as integer, labels can be supplied that map the integer to a repeat number (similar to a factor level). See below for an example.
1 2 3 4 5 6 7 8 9 10 11 12 | data(freqsNLsgmplus)
set.seed(123)
# sample a small reference db
x <- sample.profiles(N = 1e3,freqs=freqsNLsgmplus)
# estimate frequencies
fr0 <- est.freqs(x,labels = lapply(get.freqs(x),names))
# mean absolut difference between fr0 and freqsNLsgmplus is small
mean(abs(c(fr0,recursive = TRUE)-c(freqsNLsgmplus,recursive=TRUE)))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.