Description Usage Arguments Value Examples
The function subsets a methylDiff
object in
order to get differentially methylated bases/regions
satisfying thresholds.
1 | get.methylDiff(.Object,difference=25,qvalue=0.01,type="all")
|
.Object |
a |
difference |
cutoff for absolute value of methylation change between test and control (default:25) |
qvalue |
cutoff for qvalue of differential methylation statistic (default:0.01) |
type |
one of the "hyper","hypo" or "all" strings. Specifies what type of differentially menthylated bases/regions should be returned. For retrieving Hyper-methylated regions/bases type="hyper", for hypo-methylated type="hypo" (default:"all") |
a methylDiff object containing the differential methylated locations satisfying the criteria
1 2 3 4 5 6 7 8 9 10 | data(methylKit)
# get differentially methylated bases/regions with specific cutoffs
all.diff=get.methylDiff(methylDiff.obj,difference=25,qvalue=0.01,type="all")
# get hyper-methylated
hyper=get.methylDiff(methylDiff.obj,difference=25,qvalue=0.01,type="hyper")
# get hypo-methylated
hypo=get.methylDiff(methylDiff.obj,difference=25,qvalue=0.01,type="hypo")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.