ComeçarComece de graça

Test for differential expression for 2x2 factorial

Even though you have more contrasts than in the past examples, testing for differential expression with limma still uses the same pipeline.

Este exercício faz parte do curso

Differential Expression Analysis with limma in R

Ver curso

Instruções do exercício

The ExpressionSet object eset with the Populus data, the design matrix (design), and the contrasts matrix (cm) have been loaded in your workspace.

  • Fit the model coefficients with lmFit.

  • Fit the contrasts with contrasts.fit.

  • Calculate the t-statistics with eBayes.

  • Summarize the results with decideTests.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Load package
library(limma)

# Fit the model
fit <- ___(eset, ___)

# Fit the contrasts
fit2 <- ___(fit, contrasts = ___)

# Calculate the t-statistics for the contrasts
fit2 <- ___(fit2)

# Summarize results
results <- ___(fit2)
summary(results)
Editar e executar o código