Expression and Methylation Analysis with MEAL

knitr::opts_chunk$set(message = FALSE, warning = FALSE)

Introduction

Experiments comprising different omic data analyses are becoming common. In this cases, the researchers are interested in analyzing the different omic types independently as well as finding association between the different layers.

In this vignette, we present how address to an analysis of methylation and expression data using r Biocpkg("MEAL"). We will show how to analyze each data type independently and how to integrate the results of both analyses. We will also exemplify how to run an analysis when we are interested in our target region.

We will use the data from r Rpackage("brgedata") package. This package contains data from a spanish children cohort. We will work with the methylation and the expression data encapsulated in a GenomicRatioSet and in an ExpressionSet respectively. In our analysis, we will evaluate the effect of sex on methylation and expression. We will also deeply explore changes in a region of chromosome 11 around MMP3, a gene differently expressed in men and women (chr11:102600000-103300000).

Let's start by loading the required packages and data:

library(MEAL)
library(brgedata)
library(MultiDataSet)
library(missMethyl)
library(minfi)
library(GenomicRanges)
library(ggplot2)

From the six objects of r Rpackage("brgedata"), we will focus on those containing methylation and expression data: brge_methy and brge_gexp.

brge_methy is a GenomicRatioSet with methylation data corresponding to the Illumina Human Methylation 450K. It contains 392277 probes and 20 samples. The object contains 9 phenotypic variables (age, sex and cell types proportions):

data(brge_methy)
brge_methy
colData(brge_methy)

brge_gexp is an ExpressionSet with the expression data corresponding to an Affimetrix GeneChip Human Gene 2.0 ST Array. It contains 67528 features and 100 samples as well as two phenotypic variables (age and sex):

data(brge_gexp)
brge_gexp
lapply(pData(brge_gexp), table)

Finally, we will create a GenomicRanges with our target region:

targetRange <- GRanges("chr11:102600000-103300000")

Let's illustrate the use of this package by analyzing the effect of the sex in methylation and expression. First, a genome wide analysis will be performed and then the region funcionalities will be introduced. It should be noticed that methylation and expression analyses will include hypothesis testing and visualitzation.

Methylation Analysis

Running the analyses

This demonstration will show how to perform a probe methylation analysis. To run a more complete analysis, including DMR methods, see r Biocpkg("MEAL") vignette.

The function runDiffMeanAnalysis detects probes differentially methylated using limma. This function accepts a GenomicRatioSet, an ExpressionSet or a SummarizedExperiment, so it can analyze methylation and gene expression data. We can pass our model to function runDiffMeanAnalysis with the parameter model. We are interested in evaluating the effect of sex and We will include cell counts as covariables to adjust their effect:

cellCounts <- colnames(colData(brge_methy))[3:9]
methRes <- runDiffMeanAnalysis(set = brge_methy, 
                       model = formula(paste("~ sex +", paste(cellCounts, collapse = "+"))))
methRes
names(methRes)

The analysis generates a ResultSet object containing the results of our analysis. The first step after running the pipeline will be evaluate how this model fits the data. A common way to evaluate the goodness of fit of these models is by making a QQplot on the p-values of the linear regression. This plot compares the distribution of p-values obtained in the analysis with a theoretical distribution. Our plot also shows the lambda, a measure of inflation. If lambda is higher than 1, the p-values are smaller than expected. If it is lower than 1, p-values are bigger than expected. In both causes, the most common cause is that we should include more variables in the model.

We can get a QQplot with the function plot. When applied to a ResultSet, we can make different plots depending on the method. We can select the name of the result with the parameter rid and the kind of plot with the parameter type. We will set rid to "DiffMean" to use limma results and type to "qq" to get a QQplot:

plot(methRes, rid = "DiffMean", type = "qq")

When there are few CpGs modicated, we expect points in the QQplot lying on the theoretical line. However, as all the CpGs from the sexual chromosomes will be differentially methylated between males and females, we obtained a S-shape. In this case, lambda is lower than 1 (0.851).

There are different ways to address this issue. An option is to include other covariates in our model. When we do not have more covariates, as it is our case, we can apply Surrogate Variable Analysis (SVA) to the data. SVA is a statistical technique that tries to determine hidden covariates or SV (Surrogate Variables) based on the measurements. This method is very useful to correct inflation when we do not have the variables that are missing in the model. Our function runPipeline includes the parameter sva that runs SVA and includes these variables as covariates in the linear model. More information can be found in r Biocpkg("MEAL") vignette.

We can get an overview of the results using a Manhattan plot. A Manhattan plot represents the p-value of each CpG versus their location in the genome. This representation is useful to find genomic regions exhibiting differentiated behaviours. We can get a Manhattan plot from a ResultSet using the function plot and setting type to "manhattan". We will highlight the CpGs of our target region by passing a GenomicRanges to highlight argument. GenomicRanges passed to plot should have chromosomes coded as number:

targetRangeNum <- GRanges("11:102600000-103300000")
plot(methRes, rid = "DiffMean", type = "manhattan", main = "Differences in Means", highlight = targetRangeNum)

There are no genomic regions with a lot of CpGs with differences in means. Our target region does not seem to be very different from the rest. On the other hand, chromosome X has a lot of CpGs with big differences in variance. Our target region does not look different.

Expression Analysis

Running the analysis

The expression analysis can be performed in the same way than methylation. The main difference is that an ExpressionSet will be used instead of a GenomicRatioSet. We will run the same model than for methylation. We will check the effect of sex on gene expression and we will further evaluate our target region:

targetRange <- GRanges("chr11:102600000-103300000")
gexpRes <- runDiffMeanAnalysis(set = brge_gexp, model = ~ sex)
names(gexpRes)

As we did with methylation data, the first step will be check the goodness of our model. To do so, we will run a QQ-plot using the p-values of the differences of means:

plot(gexpRes, rid = "DiffMean", type = "qq")

Most of the p-values lie on the theoretical line and the lambda is close to 1 (0.94). Therefore, we will not need to include other covariates in our model.

We will now get a general overview of the results. In gene expression data, it is very common to use a Volcano plot which shows the change in expression of a probe against their p-value. We can easily make these plots using the function plot and setting the argument type to volcano:

plot(gexpRes, rid = "DiffMean", type = "volcano") + ggtitle("Differences in Means")

Several transcripts have a big difference in mean gene expression and a very small p-value. Transcripts with a positive fold change have a higher expression in boys than in girls and are placed in chromosome Y (name starts by TC0Y). Transcripts with a negative fold change, have a lower expression in boys than in girls and are placed in chromosome X (name starts by TC0X).

We can get an overview of the genome distribution of these transcripts by plotting a Manhattan plot. We will also highlight the transcripts of our target region:

targetRange <- GRanges("chr11:102600000-103300000")
plot(gexpRes, rid = "DiffMean", type = "manhattan", main = "Differences in Means", highlight = targetRangeNum)

There are several transcripts with highly significant differences in means in chromosomes X and Y. However, transcripts in our target region are not significantly changed.

Methylation and gene expression integration

We have included in r Biocpkg("MEAL") two ways to assess association between gene expression and DNA methylation. The first option is to simultaneously examine the gene expression and DNA methylation results of a target region. We can do this with the function plotRegion and passing two ResultSets.

We will examine the methylation and gene expression results in our target region. For the sake of clarity, we will only print DiffMean and bumphunter results.

plotRegion(rset = methRes, rset2 = gexpRes, range = targetRange)

Differences in methylation are represented in black and differences in gene expression are represented in blue. We can see that CpGs with high differences are near transcripts with highest differences expression.

We can get a quantitative estimate of the association between methylation and gene expression using the function correlationMethExprs. This function applies a method previously described in [@Steenaard2015]. CpGs and expression probes are paired by proximity. Expression probes are paired to a CpG if they are completely inside a range of $\pm$ 250Kb from the CpG. This distance of 250Kb is set by default but it can be changed with the parameter flank (whose units are bases). The correlation between methylation and expression is done by a linear regression.

To account for technical (e.g. batch) or biological (e.g. sex, age) artifacts, a model including those variables (z) is fitted: $$ x_{ij} = \sum_{k = 1}^K{\beta_{ik} z_{kj}} + r_{ij}, i = 1, ..., P $$ where $x_{ij}$ is the methylation or expression level of probe i (P is the total number of probes) for individual j, $\beta_{ik}$ is the effect of variable k at probe i, $z_{kj}$ is the value of variable k (K is the total number of covariates) for indivudal j and $r_{ij}$ is the residual value of probe i and individual j. The residuals of methylation and expression are used to assess the correlation.

Therefore, let's create a new MultiDataSet with expression and methylation data. The function createMultiDataSet creates an empty MultiDataSet. Then, we can add gene expression and methylation datasets with the function add_genexp and add_methy:

multi <- createMultiDataSet()
multi <- add_genexp(multi, brge_gexp)
multi <- add_methy(multi, brge_methy)

In this analysis, we will only take into account the probes in our target region. We can subset our MultiDataSet passing a GenomicRanges to the third position of [:

multi.filt <- multi[, , targetRange]

Now, we will compute the correlation between the CpGs and the expression probes.

methExprs <- correlationMethExprs(multi.filt)
head(methExprs)

The results shows the CpG name, the expression probe, the linear regression coeffcient and its standard error, and the p-value and adjusted p-value (using B&H). Results are ordered by the adjusted p-value, so we can see than in our data there are no correlated CpGs-expression probes.

Conclusions

This case example shows the main functionalities of r Biocpkg("MEAL") package. It has been shown how to evaluate the effect of a phenotype on the methylation and on the expression at genome wide and at region level. Finally, the integration between methylation and expression is tested by checking if there are expression probes correlated to the methylated probes.

sessionInfo()

References



Try the MEAL package in your browser

Any scripts or data that you put into this service are public.

MEAL documentation built on Feb. 3, 2021, 2 a.m.