powered by
Calculate Allele Frequency
AlleleFreq(x,sep)
a dataset of genotypes. Each row denotes each individual; each column contain each marker.
the allele separator in the imported genotype data.Note: when using the special character like "|", remember to protect it as "\|"(default).
a matrix of allele frequencies. Each row denotes each allele; each column denotes each marker. The order of makers follows x.
This function calculates the allele frequencies of one dataset.
# NOT RUN { require(mixIndependR) x <- data.frame(STR1=c("12|12","13|14","13|13","14|15"), SNP1=c("A|A","T|T","A|T","A|T")) AlleleFreq(x,"\\|") # }
Run the code above in your browser using DataLab