Description Usage Arguments Value Examples
View source: R/filter_by_quantile.R
For each region, compares the mean DNA methylation (DNAm) levels in samples with high DNAm (Q4) vs. low DNAm (Q1) and requires the difference to be above a threshold.
1 | filter_dnam_by_quant_diff(dnam, diff.mean.th = 0.2, cores = 1)
|
dnam |
DNA methylation matrix or SumarizedExperiment object |
diff.mean.th |
Threshold for difference in mean DNAm levels for samples in Q4 and Q1 |
cores |
Number of CPU cores to be used in the analysis. Default: 1 |
A subset of the original matrix only with the rows passing the filter threshold.
1 2 3 4 | data("dna.met.chr21")
dna.met.chr21.filtered <- filter_dnam_by_quant_diff(
dna.met.chr21
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.