Description Usage Arguments Value Examples
Some SNPs do not work as well as others and might be filtered out.
1 2 3 4 5 6 7 |
dat |
Matrix with raw data or list with intensity, theta, position and chromosome objects. |
filt |
Character or numberic vector with SNP names or rownumbers to filter out. |
Filtered matrix.
1 2 3 4 5 6 7 8 | if(require(brassicaData)){
data("raw_napus", package = "brassicaData", envir = environment())
dat <- intens_theta(raw_napus)
dat <- remove_suffix(dat, "_Grn")
dat <- geno_baf_rratio(dat, delthresh = 11)
dat <- filt_snps(dat, dat$snps[is.na(rowMeans(dat$baf, na.rm = TRUE))])
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.