Description Usage Arguments Value Examples
View source: R/genotypeFunctions.R
Compute allele frequencies from genotype data.
1 | getAlleleFrequencies(snp)
|
snp |
[N x 1] Vector of length [N] samples with genotypes of a single bi-allelic genetic variant/SNP encoded as 0,1 and 2. |
Vector with ref (0-encoded) and alt (1-encoded) allele frequencies.
1 2 3 | # create snp vector with minor allele frequency 0.3
snp <- rbinom(200, 2, 0.3)
allelefreq <- getAlleleFrequencies(snp)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.