Description Usage Arguments Value Author(s) Examples
Selection of hetSNPs to form a framework
1 | hapiFrameSelection(gmt, n = 3)
|
gmt |
a dataframe of genotype data of gamete cells |
n |
a numeric value of the minumum number of gametes with observed genotypes at a locus |
a dataframe of genotype data of gamete cells
Ruidong Li
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ref <- rep(0,500)
alt <- rep(1,500)
gmt <- data.frame(gmt1=ref, gmt2=alt, gmt3=ref,
gmt4=ref, gmt5=c(alt[1:250], ref[251:500]),
stringsAsFactors = FALSE)
idx <- sort(sample(seq_len(500), 10, replace = FALSE))
gmt[idx,1] <- NA
gmt[idx,2] <- NA
gmt[idx,3] <- NA
gmtFrame <- hapiFrameSelection(gmt = gmt, n = 3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.