filter_snp {updog} | R Documentation |
Filter SNPs based on the output of multidog()
.
Description
Filter based on provided logical predicates in terms of the variable
names in x$snpdf
. This function filters both x$snpdf
and x$inddf
.
Usage
filter_snp(x, expr)
Arguments
x |
The output of |
expr |
Logical predicate expression defined in terms of the variables
in |
Author(s)
David Gerard
See Also
multidog()
:For the variables in
x$snpdf
which you can filter by.
Examples
## Not run:
data("uitdewilligen")
mout <- multidog(refmat = t(uitdewilligen$refmat),
sizemat = t(uitdewilligen$sizemat),
ploidy = uitdewilligen$ploidy,
nc = 2)
## The following filters are for educational purposes only and should
## not be taken as a default filter:
mout2 <- filter_snp(mout, bias < 0.8 & od < 0.003)
## End(Not run)
[Package updog version 2.1.5 Index]