甲基化定量

2019-03-08  本文已影响0人  小折线

Methylation

The 450k probe uses two probe to test the methylation. One for methylated and one for unmethylated. (red channel and green channel). Then the data from this two channels will be converted into

Quantification


These two ways to quantify the methylation level can be acheived by function ratioConvert in package minfi:
\beta_i= \frac{max(y_imeth,0)}{max(y_imeth,0) + max(y_iunmeth,0) + \alpha}

\alpha by default is 100

M_i = log_2( \frac{max(y_i,meth,0)+\alpha}{ max(y_i,unmeth,0)+\alpha })

this \alpha, by default is 1

Model


The model it uses is
Y_{ij} = \beta_0(l_j) + x_i \beta_1(l_j) + \epsilon_{ij}

And in a case control study, the x is the case or control category, which is 0 or 1 (0 for control or 1 for case)

Note:

  1. this \beta_1 is not the same \beta from the quantification section. this \beta_1 is the fitted coefficiency of how the methylaion changes along with the x_i (In fact, the Y_{ij} here is the \beta in line one, the obverved methylation value)

  2. The x doen't has to be a binary factor. For instance, it can be the continuous age in the study to look into the relationship between age and methylation.


After fitting, we will have the \beta_1 value (fitted coef) that represent the effect size at that position. with the beta values,(actually termed estimate \hat{\beta}s, pronounced estimate beta hats) we will try to determine the differential methylated regions (DMR) with statistic significance.

But how to identify and summarize each bump.


First, we will set a threshold for the beta hats, bumps above the threshold will be considered a candidate. The we will summerize the data by

  1. calculate the area under the curve
  2. keep two paras (length and height)

Then, we will test the bump by permutation or bootstrap, to calculate that under the null hypothesis, what area we would get and how likely we will get the observed bump or larger by chance

To identify the effect brought by our factors of interested, we commonly identified the differential methylation at three levels:

  1. each CpG
  2. DMR (Differential Methylated Region)
  3. differential methylated blocks (it is larger scale than DMR)

This an on-going research and there is no best practical method for this

上一篇下一篇

猜你喜欢

热点阅读