MEDME: Determining the logistic model of MeDIP enrichment in respect...

Description Usage Arguments Details Value References See Also Examples

Description

Probe-level MeDIP weighted enrichment is compared to the expected DNA methytlation level. The former is determined applying MeDIP protocol to a fully methylated DNA. The latter is determined as the count of CpGs for each probe. This is assumed to be the methylation level of each probe in a fully methylated sample.

Usage

1
MEDME(data, sample, CGcountThr = 1, figName = NULL)

Arguments

data

An object of class MEDMEset

sample

Integer; the number of the sample to be used to fit the model, based on the order of samples in the smoothed slot

CGcountThr

number; the threshold to avoid modelling probes with really low methylation level, i.e. CpG count

figName

string; the name of the file reporting the model fitting

Details

The model should be applied on calibration data containing MeDIP enrichment of fully methylated DNA, most likely artificially generated (see references). Nevertheless, in case chromosome or genome-wide human tiling arrays are used a regular sample could be used too. In fact, human genomic DNA is known to be hyper-methylated but in the promoter regions. Of course the performance of the method is expected to be somehow affected by this approximation.

Value

The logistic model as returned from the multdrc function from the drc R library

References

http://genome.cshlp.org/cgi/content/abstract/gr.080721.108v1

See Also

smooth, CGcount

Examples

1
2
3
4
5
6
data(testMEDMEset)
## just an example with the first 1000 probes
testMEDMEset = smooth(data = testMEDMEset[1:1000, ])
library(BSgenome.Hsapiens.UCSC.hg18)
testMEDMEset = CGcount(data = testMEDMEset)
MEDMEmodel = MEDME(data = testMEDMEset, sample = 1, CGcountThr = 1, figName = NULL)

MEDME documentation built on Nov. 8, 2020, 5:31 p.m.

Related to MEDME in MEDME...