因子実験計画

R での limma を用いた Differential Expression 解析

John Blischak

Instructor

因子計画

  • 植物における低温の影響を調べる2x2計画:
    • Arabidopsis thaliana の2種:col、vte2
    • 2つの温度:正常、低温
    • Maeda et al. 2010
dim(eset)
Features  Samples 
   11871       12
table(pData(eset)[, c("type", "temp")])
      temp
type   low normal
  col    3      3
  vte2   3      3
R での limma を用いた Differential Expression 解析

2x2因子のグループ平均モデル

$$ Y = \beta_1 X_1 + \beta_2 X_2 + \beta_3 X_3 + \beta_4 X_4 + \epsilon $$

  • $\beta_1$ - col 植物のlow温度における平均発現量
  • $\beta_2$ - col 植物のnormal温度における平均発現量
  • $\beta_3$ - vte2 植物のlow温度における平均発現量
  • $\beta_4$ - vte2 植物のnormal温度における平均発現量
R での limma を用いた Differential Expression 解析

2x2因子のグループ平均デザイン行列

group <- with(pData(eset), 
              paste(type, temp, sep = "."))
group <- factor(group)
design <- model.matrix(~0 + group)
colnames(design) <- levels(group)
head(design, 3)
  col.low col.normal vte2.low vte2.normal
1       0          1        0           0
2       0          1        0           0
3       0          1        0           0
colSums(design)
    col.low  col.normal    vte2.low vte2.normal 
          3           3           3           3
R での limma を用いた Differential Expression 解析

2x2因子のコントラスト

$\beta_1$ $\beta_2$ $\beta_3$ $\beta_4$
type col col vte2 vte2
temp low normal low normal
  • Differences of type in normal temp: $\beta_4 - \beta_2 = 0$
  • Differences of type in low temp: $\beta_3 - \beta_1 = 0$
  • Differences of temp in vte2 type: $\beta_3 - \beta_4 = 0$
  • Effect of temp in col type: $\beta_1 - \beta_2 = 0$
  • Differences of temp between col and vte2 type: $(\beta_3 - \beta_4) - (\beta_1 - \beta_2) = 0$
R での limma を用いた Differential Expression 解析

2x2因子のコントラスト行列

library(limma)
cm <- makeContrasts(type_normal = vte2.normal - col.normal,
                    type_low = vte2.low - col.low,
                    temp_vte2 = vte2.low - vte2.normal,
                    temp_col = col.low - col.normal,
                    interaction = (vte2.low - vte2.normal) -(col.low - col.normal),
                    levels = design)
cm
             Contrasts
Levels        type_normal type_low temp_vte2 temp_col interaction
  col.low               0       -1         0        1          -1
  col.normal           -1        0         0       -1           1
  vte2.low              0        1         1        0           1
  vte2.normal           1        0        -1        0          -1
R での limma を用いた Differential Expression 解析

2x2因子のテスト

library(limma)

# Fit coefficients
fit <- lmFit(eset, design)

# Fit contrasts
fit2 <- contrasts.fit(fit, contrasts = cm)

# Calculate t-statistics
fit2 <- eBayes(fit2)

# Summarize results
results <- decideTests(fit2)
summary(results)
   type_normal type_low temp_vte2 temp_col interaction
-1           0      466      1635     1885         128
0        11871    10915      7635     6989       11640
1            0      490      2601     2997         103
R での limma を用いた Differential Expression 解析

ポプラの木における干ばつの影響

  • 樹木における干ばつの影響を調べる2x2計画:
    • Populus の2種:DN34、NM6
    • 2つの水分条件:正常、干ばつ
    • Wilkins et al. 2009
dim(eset)
Features  Samples 
   16172       12
table(pData(eset)[, c("type", "water")])
      water
type   drought normal
  dn34       3      3
  nm6        3      3
R での limma を用いた Differential Expression 解析

練習しましょう!

R での limma を用いた Differential Expression 解析

Preparing Video For Download...