Package version: BiocStyle 2.2.0

Contents

1 Introduction

The missMethyl package contains functions to analyse methylation data from Illumina’s HumanMethylation450 and MethylationEPIC beadchip. These arrays are a cost-effective alternative to whole genome bisulphite sequencing, and as such are widely used to profile DNA methylation. Specifically, missMethyl contains functions to perform SWAN normalisation (Maksimovic, Gordon, and Oshlack 2012), perform differential methylation analysis using RUVm (Maksimovic et al. 2015), differential variability analysis (Phipson and Oshlack 2014) and gene set analysis (Phipson, Maksimovic, and Oshlack 2016). As our lab’s research into specialised analyses of these arrays continues we anticipate that the package will be continuously updated with new functions.

Raw data files are in IDAT format, which can be read into R using the minfi package (Aryee et al. 2014). Statistical analyses are usually performed on M-values, and \(\beta\) values are used for visualisation, both of which can be extracted from objects, which is a class of object created by minfi. For detecting differentially variable CpGs we recommend that the analysis is performed on M-values. All analyses described here are performed at the CpG site level.

2 Reading data into R

We will use the data in the minfiData package to demonstrate the functions in missMethyl. The example dataset has 6 samples across two slides. The sample information is in the targets file. An essential column in the targets file is the Basename column which tells where the idat files to be read in are located. The R commands to read in the data are taken from the minfi User’s Guide. For additional details on how to read the IDAT files into R, as well as information regarding quality control please refer to the minfi User’s Guide.

library(missMethyl)
library(limma)
library(minfi)
library(minfiData)
baseDir <- system.file("extdata", package = "minfiData")
targets <- read.metharray.sheet(baseDir)
## [1] "/home/biocbuild/bbs-3.4-bioc/R/library/minfiData/extdata/SampleSheet.csv"
targets[,1:9]
##   Sample_Name Sample_Well Sample_Plate Sample_Group Pool_ID person age sex
## 1    GroupA_3          H5         <NA>       GroupA    <NA>    id3  83   M
## 2    GroupA_2          D5         <NA>       GroupA    <NA>    id2  58   F
## 3    GroupB_3          C6         <NA>       GroupB    <NA>    id3  83   M
## 4    GroupB_1          F7         <NA>       GroupB    <NA>    id1  75   F
## 5    GroupA_1          G7         <NA>       GroupA    <NA>    id1  75   F
## 6    GroupB_2          H7         <NA>       GroupB    <NA>    id2  58   F
##   status
## 1 normal
## 2 normal
## 3 cancer
## 4 cancer
## 5 normal
## 6 cancer
targets[,10:12]
##    Array      Slide
## 1 R02C02 5723646052
## 2 R04C01 5723646052
## 3 R05C02 5723646052
## 4 R04C02 5723646053
## 5 R05C02 5723646053
## 6 R06C02 5723646053
##                                                                                Basename
## 1 /home/biocbuild/bbs-3.4-bioc/R/library/minfiData/extdata/5723646052/5723646052_R02C02
## 2 /home/biocbuild/bbs-3.4-bioc/R/library/minfiData/extdata/5723646052/5723646052_R04C01
## 3 /home/biocbuild/bbs-3.4-bioc/R/library/minfiData/extdata/5723646052/5723646052_R05C02
## 4 /home/biocbuild/bbs-3.4-bioc/R/library/minfiData/extdata/5723646053/5723646053_R04C02
## 5 /home/biocbuild/bbs-3.4-bioc/R/library/minfiData/extdata/5723646053/5723646053_R05C02
## 6 /home/biocbuild/bbs-3.4-bioc/R/library/minfiData/extdata/5723646053/5723646053_R06C02
rgSet <- read.metharray.exp(targets = targets)

The data is now an RGChannelSet object and needs to be normalised and converted to a MethylSet object.

3 Subset-quantile within array normalization (SWAN)

SWAN (subset-quantile within array normalization) is a within-array normalization method for Illumina 450k BeadChips. Technical differencs have been demonstrated to exist between the Infinium I and Infinium II assays on a single 450K array (Bibikova et al. 2011, Dedeurwaerder, Defrance, and Calonne (2011)). Using the SWAN method substantially reduces the technical variability between the assay designs whilst maintaining important biological differences. The SWAN method makes the assumption that the number of CpGs within the 50bp probe sequence reflects the underlying biology of the region being interrogated. Hence, the overall distribution of intensities of probes with the same number of CpGs in the probe body should be the same regardless of assay type. The method then uses a subset quantile normalization approach to adjust the intensities of each array (Maksimovic, Gordon, and Oshlack 2012).

SWAN can take a MethylSet, RGChannelSet or MethyLumiSet as input. It should be noted that, in order to create the normalization subset, SWAN randomly selects Infinium I and II probes that have one, two and three underlying CpGs; as such, we recommend using set.seed before to ensure that the normalized intensities will be identical, if the normalization is repeated.

The technical differences between Infinium I and II assay designs can result in aberrant beta value distributions (Figure 1, panel “Raw”). Using SWAN corrects for the technical differences between the Infinium I and II assay designs and produces a smoother overall \(\beta\) value distribution (Figure 1, panel “SWAN”).

mSet <- preprocessRaw(rgSet)
mSetSw <- SWAN(mSet,verbose=TRUE)
## [SWAN] Preparing normalization subset
## [SWAN] Normalizing methylated channel
## [SWAN] Normalizing array 1 of 6
## [SWAN] Normalizing array 2 of 6
## [SWAN] Normalizing array 3 of 6
## [SWAN] Normalizing array 4 of 6
## [SWAN] Normalizing array 5 of 6
## [SWAN] Normalizing array 6 of 6
## [SWAN] Normalizing unmethylated channel
## [SWAN] Normalizing array 1 of 6
## [SWAN] Normalizing array 2 of 6
## [SWAN] Normalizing array 3 of 6
## [SWAN] Normalizing array 4 of 6
## [SWAN] Normalizing array 5 of 6
## [SWAN] Normalizing array 6 of 6
par(mfrow=c(1,2), cex=1.25)
densityByProbeType(mSet[,1], main = "Raw")
densityByProbeType(mSetSw[,1], main = "SWAN")

Density distributions of eta values before and after using SWAN.

4 Filter out poor quality probes

Poor quality probes can be filtered out based on the detection p-value. For this example, to retain a CpG for further analysis, we require that the detection p-value is less than 0.01 in all samples.

detP <- detectionP(rgSet)
keep <- rowSums(detP < 0.01) == ncol(rgSet)
mSetSw <- mSetSw[keep,]

5 Extracting Beta and M-values

Now that the data has been SWAN normalised we can extract \(\beta\) and M-values from the object. We prefer to add an offset to the methylated and unmethylated intensities when calculating M-values, hence we extract the methylated and unmethylated channels separately and perform our own calculation. For all subsequent analysis we use a random selection of 20000 CpGs to reduce computation time.

mset_reduced <- mSetSw[sample(1:nrow(mSetSw), 20000),]
meth <- getMeth(mset_reduced)
unmeth <- getUnmeth(mset_reduced)
Mval <- log2((meth + 100)/(unmeth + 100))
beta <- getBeta(mset_reduced)
dim(Mval)
## [1] 20000     6
par(mfrow=c(1,1))
plotMDS(Mval, labels=targets$Sample_Name, col=as.integer(factor(targets$status)))
legend("topleft",legend=c("Cancer","Normal"),pch=16,cex=1.2,col=1:2)

A multi-dimensional scaling (MDS) plot of cancer and normal samples.

An MDS plot (Figure 2) is a good sanity check to make sure samples cluster together according to the main factor of interest, in this case, cancer and normal.

6 Testing for differential methylation using

To test for differential methylation we use the limma package (G. K. Smyth 2005), which employs an empirical Bayes framework based on Guassian model theory. First we need to set up the design matrix. There are a number of ways to do this, the most straightforward is directly from the targets file. There are a number of variables, with the status column indicating cancer/normal samples. From the person column of the targets file, we see that the cancer/normal samples are matched, with 3 individuals each contributing both a cancer and normal sample. Since the limma model framework can handle any experimental design which can be summarised by a design matrix, we can take into account the paired nature of the data in the analysis. For more complicated experimental designs, please refer to the limma User’s Guide.

group <- factor(targets$status,levels=c("normal","cancer"))
id <- factor(targets$person)
design <- model.matrix(~id + group)
design
##   (Intercept) idid2 idid3 groupcancer
## 1           1     0     1           0
## 2           1     1     0           0
## 3           1     0     1           1
## 4           1     0     0           1
## 5           1     0     0           0
## 6           1     1     0           1
## attr(,"assign")
## [1] 0 1 1 2
## attr(,"contrasts")
## attr(,"contrasts")$id
## [1] "contr.treatment"
## 
## attr(,"contrasts")$group
## [1] "contr.treatment"

Now we can test for differential methylation using the lmFit and eBayes functions from limma. As input data we use the matrix of M-values.

fit.reduced <- lmFit(Mval,design)
fit.reduced <- eBayes(fit.reduced)

The numbers of hyper-methylated (1) and hypo-methylated (-1) can be displayed using the decideTests function in limma and the top 10 differentially methylated CpGs for cancer versus normal extracted using topTable.

summary(decideTests(fit.reduced))
##    (Intercept) idid2 idid3 groupcancer
## -1        7041     1    93         653
## 0         3216 19999 19903       18874
## 1         9743     0     4         473
top<-topTable(fit.reduced,coef=4)
top
##               logFC     AveExpr        t      P.Value  adj.P.Val        B
## cg12330330 4.824349 -2.61031199 17.37974 6.310006e-06 0.02839396 4.327449
## cg18044663 4.241460 -1.29238643 15.59261 1.118993e-05 0.02839396 3.932975
## cg13562911 3.711173 -1.24569499 14.88497 1.428981e-05 0.02839396 3.754127
## cg01984858 3.869064 -1.95903140 14.68589 1.533830e-05 0.02839396 3.701201
## cg10904699 4.666727 -1.42024490 14.62305 1.568798e-05 0.02839396 3.684245
## cg12545252 4.244025 -1.03905116 14.26691 1.785749e-05 0.02839396 3.585829
## cg05452524 3.679484 -0.76276187 13.57495 2.317718e-05 0.02839396 3.382705
## cg05289253 4.205465 -1.40639352 13.14739 2.740384e-05 0.02839396 3.248761
## cg19283840 3.559846  0.02895017 13.10205 2.790340e-05 0.02839396 3.234158
## cg03383295 3.623360 -1.21963758 13.09088 2.802815e-05 0.02839396 3.230547

Note that since we performed our analysis on M-values, the logFC and AveExpr columns are computed on the M-value scale. For interpretability and visualisation we can look at the \(\beta\) values. The beta values for the top 4 differentially methylated CpGs shown in Figure 3.

cpgs <- rownames(top)
par(mfrow=c(2,2))
for(i in 1:4){
stripchart(beta[rownames(beta)==cpgs[i],]~design[,4],method="jitter",
group.names=c("Normal","Cancer"),pch=16,cex=1.5,col=c(4,2),ylab="Beta values",
vertical=TRUE,cex.axis=1.5,cex.lab=1.5)
title(cpgs[i],cex.main=1.5)
}

The eta values for the top 4 differentially methylated CpGs.

7 Removing unwanted variation when testing for differential methylation

Like other platforms, 450k array studies are subject to unwanted technical variation such as batch effects and other, often unknown, sources of variation. The adverse effects of unwanted variation have been extensively documented in gene expression array studies and have been shown to be able to both reduce power to detect true differences and to increase the number of false discoveries. As such, when it is apparent that data is significantly affected by unwanted variation, it is advisable to perform an adjustment to mitigate its effects.

missMethyl provides a limma-like interface to functions from the CRAN package ruv that enables the removal of unwanted variation when performing a differential analysis (Maksimovic et al. 2015). All of the methods rely on negative control features to accurately estimate the components of unwanted variation. Negative control features are probes/genes/etc. that are known a priori to not truly be associated with the biological factor of interest, but are affected by unwanted variation. For example, in a microarray gene expression study, these could be house-keeping genes or a set of spike-in controls. Negative control features are extensively discussed in Gagnon-Bartsch and Speed (2012) and Gagnon-Bartsch et al. (2013). Once the unwanted factors are accurately estimated from the data, they are adjusted for in the linear model that describes the differential analysis.

If the negative control features are not known a priori, they can be identified empirically. This can be achieved using a 2-stage approach, RUVm, based on RUV-inverse. Stage 1 involves performing a differential methylation analysis using RUV-inverse and the 613 Illumina negative controls (INCs) as negative control features. This will produce a list of CpGs ranked by p-value according to their level of association with the factor of interest. This list can then be used to identify a set of empirical control probes (ECPs), which will capture more of the unwanted variation than using the INCs alone. ECPs are selected by designating a proportion of the CpGs least associated with the factor of interest as negative control features; this can be done based on either an FDR cut-off or by taking a fixed percentage of probes from the bottom of the ranked list. Stage 2 involves performing a second differential methylation analysis on the original data using RUV-inverse and the ECPs. For simplicity, we are ignoring the paired nature of the cancer and normal samples in this example.

# get M-values for ALL probes
meth <- getMeth(mSet)
unmeth <- getUnmeth(mSet)
M <- log2((meth + 100)/(unmeth + 100))

grp <- factor(targets$status,levels=c("normal","cancer"))
des <- model.matrix(~grp)
des
##   (Intercept) grpcancer
## 1           1         0
## 2           1         0
## 3           1         1
## 4           1         1
## 5           1         0
## 6           1         1
## attr(,"assign")
## [1] 0 1
## attr(,"contrasts")
## attr(,"contrasts")$grp
## [1] "contr.treatment"
INCs <- getINCs(rgSet)
head(INCs)
##          5723646052_R02C02 5723646052_R04C01 5723646052_R05C02
## 13792480        -0.3299654        -1.0955482        -0.5266103
## 69649505        -1.0354488        -1.4943396        -1.0067050
## 34772371        -1.1286422        -0.2995603        -0.8192636
## 28715352        -0.5553373        -0.7599489        -0.7186973
## 74737439        -1.1169178        -0.8656399        -0.6429681
## 33730459        -0.7714684        -0.5622424        -0.7724825
##          5723646053_R04C02 5723646053_R05C02 5723646053_R06C02
## 13792480        -0.6374299         -1.116598        -0.4332793
## 69649505        -0.8854881         -1.586679        -0.9217329
## 34772371        -0.6895514         -1.161155        -0.6186795
## 28715352        -1.7903619         -1.348105        -1.0067259
## 74737439        -0.8872082         -1.064986        -0.9841833
## 33730459        -1.5623138         -2.079184        -1.0445246
Mc <- rbind(M,INCs)
ctl <- rownames(Mc) %in% rownames(INCs)
table(ctl)
## ctl
##  FALSE   TRUE 
## 485512    613
rfit1 <- RUVfit(data=Mc, design=des, coef=2, ctl=ctl) # Stage 1 analysis
rfit2 <- RUVadj(rfit1)

Now that we have performed an initial differential methylation analysis to rank the CpGs with respect to their association with the factor of interest, we can designate the CpGs that are least associated with the factor of interest based on FDR-adjusted p-value as ECPs.

top1 <- topRUV(rfit2, num=Inf)
head(top1)
##            coefficients        t            p      p.BH     p.ebayes
## cg04743961     4.838190 26.74467 3.812882e-05 0.1401969 3.516091e-07
## cg07155336     5.887409 17.62103 1.608653e-04 0.1401969 3.583107e-07
## cg20925841     4.790211 26.69524 3.837354e-05 0.1401969 3.730375e-07
## cg03607359     4.394397 34.74068 1.542013e-05 0.1401969 4.721205e-07
## cg10566121     4.787914 21.80693 7.717708e-05 0.1401969 5.238865e-07
## cg07655636     4.571758 22.99708 6.424216e-05 0.1401969 6.080091e-07
##            p.ebayes.BH
## cg04743961  0.01017357
## cg07155336  0.01017357
## cg20925841  0.01017357
## cg03607359  0.01017357
## cg10566121  0.01017357
## cg07655636  0.01017357
ctl <- rownames(M) %in% rownames(top1[top1$p.ebayes.BH > 0.5,])
table(ctl)
## ctl
##  FALSE   TRUE 
## 172540 312972

We can then use the ECPs to perform a second differential methylation with RUV-inverse, which is adjusted for the unwanted variation estimated from the data.

# Perform RUV adjustment and fit
rfit1 <- RUVfit(data=M, design=des, coef=2, ctl=ctl) # Stage 2 analysis
rfit2 <- RUVadj(rfit1)

# Look at table of top results
topRUV(rfit2)
##            coefficients         t           p      p.BH     p.ebayes
## cg07155336     5.769286 15.345069 0.002005546 0.3431163 1.434834e-55
## cg06463958     5.733093 15.434797 0.001978272 0.3431163 6.749298e-55
## cg00024472     5.662959 15.946200 0.001832444 0.3431163 1.319390e-53
## cg02040433     5.651399 10.054445 0.005389436 0.3431163 2.146210e-53
## cg13355248     5.595396  9.963702 0.005504213 0.3431163 2.234891e-52
## cg02467990     5.592707  6.859614 0.013008521 0.3431163 2.499534e-52
## cg00817367     5.527501 13.070583 0.002921656 0.3431163 3.710480e-51
## cg11396157     5.487992 10.931263 0.004436178 0.3431163 1.873636e-50
## cg16306898     5.466780  5.573935 0.020790127 0.3431163 4.448085e-50
## cg03735888     5.396242 15.482605 0.001963955 0.3431163 7.700032e-49
##             p.ebayes.BH
## cg07155336 6.966293e-50
## cg06463958 1.638433e-49
## cg00024472 2.135266e-48
## cg02040433 2.605027e-48
## cg13355248 2.022589e-47
## cg02467990 2.022589e-47
## cg00817367 2.573547e-46
## cg11396157 1.137091e-45
## cg16306898 2.399554e-45
## cg03735888 3.738458e-44

Note, at present does not support contrasts, so only one factor of interest can be interrogated at a time using a design matrix with an intercept term.

8 Testing for differential variability (DiffVar)

8.1 Methylation data

Rather than testing for differences in mean methylation, we may be interested in testing for differences between group variances. For example, it has been hypothesised that highly variable CpGs in cancer are important for tumour progression (K. D. Hansen et al. 2011). Hence we may be interested in CpG sites that are consistently methylated in the normal samples, but variably methylated in the cancer samples.

In general we recommend at least 10 samples in each group for accurate variance estimation, however for the purpose of this vignette we perform the analysis on 3 vs 3. In this example, we are interested in testing for differential variability in the cancer versus normal group. Note that when we specify the coef parameter, which corresponds to the columns of the design matrix to be used for testing differential variability, we need to specify both the intercept and the fourth column. The ID variable is a nuisance parameter and not used when obtaining the absolute deviations, however it can be included in the linear modelling step. For methylation data, the function will take either a matrix of M-values, \(\beta\) values or a object as input. If \(\beta\) values are supplied, a logit transformation is performed. Note that as a default, varFit uses the robust setting in the limma framework, which requires the use of the statmod package.

fitvar <- varFit(Mval, design = design, coef = c(1,4))

The numbers of hyper-variable (1) and hypo-variable (-1) genes in cancer vs normal can be obtained using decideTests.

summary(decideTests(fitvar))
##    (Intercept) idid2 idid3 groupcancer
## -1           0     3     0           0
## 0        19825 19993 19987       19999
## 1          175     4    13           1
topDV <- topVar(fitvar, coef=4)
topDV
##            SampleVar LogVarRatio DiffLevene         t      P.Value
## cg25800082  6.388117    4.192672   2.928791  5.088200 3.631105e-07
## cg25721451  5.422606    5.844665   2.838851  4.372054 1.233933e-05
## cg15627078  5.284199    4.644979   2.753164  4.368499 1.254178e-05
## cg15174834  4.858680    3.806006   2.618270  4.328934 1.501967e-05
## cg22031998  4.521131    3.517003   2.521648  4.127385 3.676549e-05
## cg10432083  3.828653    4.792883   2.629962  4.023512 5.744213e-05
## cg11948421  5.712395    2.674822   2.188085  3.924240 8.714955e-05
## cg14072903  6.589461    4.586580   2.561831  3.906500 9.379654e-05
## cg19584875  4.732394    2.479108   2.181968  3.846603 1.199523e-04
## cg00231519  7.932002   -1.195182  -1.590673 -3.831339 1.276424e-04
##            Adj.P.Value
## cg25800082  0.00726221
## cg25721451  0.07509836
## cg15627078  0.07509836
## cg15174834  0.07509836
## cg22031998  0.10987745
## cg10432083  0.10987745
## cg11948421  0.10987745
## cg14072903  0.10987745
## cg19584875  0.10987745
## cg00231519  0.10987745

An alternate parameterisation of the design matrix that does not include an intercept term can also be used, and specific contrasts tested with contrasts.varFit. Here we specify the design matrix such that the first two columns correspond to the normal and cancer groups, respectively.

design2 <- model.matrix(~0+group+id)
fitvar.contr <- varFit(Mval, design=design2, coef=c(1,2))
contr <- makeContrasts(groupcancer-groupnormal,levels=colnames(design2))
fitvar.contr <- contrasts.varFit(fitvar.contr,contrasts=contr)

The results are identical to before.

summary(decideTests(fitvar.contr))
##    groupcancer - groupnormal
## -1                         0
## 0                      19999
## 1                          1
topVar(fitvar.contr,coef=1)
##            SampleVar LogVarRatio DiffLevene         t      P.Value
## cg25800082  6.388117    4.192672   2.928791  5.088200 3.631105e-07
## cg25721451  5.422606    5.844665   2.838851  4.372054 1.233933e-05
## cg15627078  5.284199    4.644979   2.753164  4.368499 1.254178e-05
## cg15174834  4.858680    3.806006   2.618270  4.328934 1.501967e-05
## cg22031998  4.521131    3.517003   2.521648  4.127385 3.676549e-05
## cg10432083  3.828653    4.792883   2.629962  4.023512 5.744213e-05
## cg11948421  5.712395    2.674822   2.188085  3.924240 8.714955e-05
## cg14072903  6.589461    4.586580   2.561831  3.906500 9.379654e-05
## cg19584875  4.732394    2.479108   2.181968  3.846603 1.199523e-04
## cg00231519  7.932002   -1.195182  -1.590673 -3.831339 1.276424e-04
##            Adj.P.Value
## cg25800082  0.00726221
## cg25721451  0.07509836
## cg15627078  0.07509836
## cg15174834  0.07509836
## cg22031998  0.10987745
## cg10432083  0.10987745
## cg11948421  0.10987745
## cg14072903  0.10987745
## cg19584875  0.10987745
## cg00231519  0.10987745

The \(\beta\) values for the top 4 differentially variable CpGs can be seen in Figure 4.

cpgsDV <- rownames(topDV)
par(mfrow=c(2,2))
for(i in 1:4){
stripchart(beta[rownames(beta)==cpgsDV[i],]~design[,4],method="jitter",
group.names=c("Normal","Cancer"),pch=16,cex=1.5,col=c(4,2),ylab="Beta values",
vertical=TRUE,cex.axis=1.5,cex.lab=1.5)
title(cpgsDV[i],cex.main=1.5)
}

The eta values for the top 4 differentially variable CpGs.

8.2 RNA-Seq expression data

Testing for differential variability in expression data is straightforward if the technology is gene expression microarrays. The matrix of expression values can be supplied directly to the varFit function. For RNA-Seq data, the mean-variance relationship that occurs in count data needs to be taken into account. In order to deal with this issue, we apply a voom transformation (Law et al. 2014) to obtain observation weights, which are then used in the linear modelling step. For RNA-Seq data, the varFit function will take a DGElist object as input.

To demonstrate this, we use data from the tweeDEseqCountData package. This data is part of the International HapMap project, consisting of RNA-Seq profiles from 69 unrelated Nigerian individuals (Pickrell et al. 2010). The only covariate is gender, so we can look at differentially variable expression between males and females. We follow the code from the limma vignette to read in and process the data before testing for differential variability.

First we load up the data and extract the relevant information.

library(tweeDEseqCountData)
data(pickrell1)
counts<-exprs(pickrell1.eset)
dim(counts)
## [1] 38415    69
gender <- pickrell1.eset$gender
table(gender)
## gender
## female   male 
##     40     29
rm(pickrell1.eset)
data(genderGenes)
data(annotEnsembl63)
annot <- annotEnsembl63[,c("Symbol","Chr")]
rm(annotEnsembl63)

We now have the counts, gender of each sample and annotation (gene symbol and chromosome) for each Ensemble gene. We can form a DGElist object using the edgeR package.

library(edgeR)
y <- DGEList(counts=counts, genes=annot[rownames(counts),])

We filter out lowly expressed genes by keeping genes with at least 1 count per million reads in at least 20 samples, as well as genes that have defined annotation. Finally we perform scaling normalisation.

isexpr <- rowSums(cpm(y)>1) >= 20
hasannot <- rowSums(is.na(y$genes))==0
y <- y[isexpr & hasannot,,keep.lib.sizes=FALSE]
dim(y)
## [1] 17310    69
y <- calcNormFactors(y)

We set up the design matrix and test for differential variability. In this case there are no nuisance parameters, so coef does not need to be explicitly specified.

design.hapmap <- model.matrix(~gender)
fitvar.hapmap <- varFit(y, design = design.hapmap)
## Converting counts to log counts-per-million using voom.
fitvar.hapmap$genes <- y$genes

We can display the results of the test:

summary(decideTests(fitvar.hapmap))
##    (Intercept) gendermale
## -1           0          2
## 0            0      17308
## 1        17310          0
topDV.hapmap <- topVar(fitvar.hapmap,coef=ncol(design.hapmap))
topDV.hapmap
##                       Symbol Chr  SampleVar LogVarRatio DiffLevene
## ENSG00000213318 RP11-331F4.1  16 5.69839463   -2.562939 -0.9859943
## ENSG00000129824       RPS4Y1   Y 2.32497726   -2.087025 -0.4585620
## ENSG00000233864       TTTY15   Y 6.79004140   -2.245369 -0.6085233
## ENSG00000176171        BNIP3  10 0.41317384    1.199292  0.3632133
## ENSG00000197358      BNIP3P1  14 0.39969125    1.149754  0.3353288
## ENSG00000025039        RRAGD   6 0.91837213    1.091229  0.4926839
## ENSG00000103671        TRIP4  15 0.07456448   -1.457139 -0.1520583
## ENSG00000171100         MTM1   X 0.44049558   -1.133295 -0.3334619
## ENSG00000149476          DAK  11 0.13289523   -1.470460 -0.1919880
## ENSG00000064886       CHI3L2   1 2.70234584    1.468059  0.8449434
##                         t      P.Value  Adj.P.Value
## ENSG00000213318 -8.031075 7.238901e-12 1.253054e-07
## ENSG00000129824 -4.957078 3.959119e-06 3.426618e-02
## ENSG00000233864 -4.612613 1.497880e-05 8.642769e-02
## ENSG00000176171  4.219459 6.439806e-05 2.786826e-01
## ENSG00000197358  4.058182 1.147653e-04 3.973173e-01
## ENSG00000025039  3.977116 1.527080e-04 4.379688e-01
## ENSG00000103671 -3.911199 1.921645e-04 4.379688e-01
## ENSG00000171100 -3.896210 2.024119e-04 4.379688e-01
## ENSG00000149476 -3.785886 2.956246e-04 4.428665e-01
## ENSG00000064886  3.782149 2.994084e-04 4.428665e-01

The log counts per million for the top 4 differentially variable genes can be seen in Figure 5.

genesDV <- rownames(topDV.hapmap)
par(mfrow=c(2,2))
for(i in 1:4){
stripchart(cpm(y,log=TRUE)[rownames(y)==genesDV[i],]~design.hapmap[,ncol(design.hapmap)],method="jitter",
group.names=c("Female","Male"),pch=16,cex=1.5,col=c(4,2),ylab="Log counts per million",
vertical=TRUE,cex.axis=1.5,cex.lab=1.5)
title(genesDV[i],cex.main=1.5)
}

The log counts per million for the top 4 differentially variably expressed genes.

9 Gene ontology analysis

Once a differential methylation or differential variability analysis has been performed, it may be of interest to know which gene pathways are targeted by the significant CpG sites. It is not entirely clear from the literature how best to perform such an analysis, however Geeleher et al. (Geeleher et al. 2013) showed there is a severe bias when performing gene ontology analysis with methylation data. This is due to the fact that there are differing numbers of probes per gene on several different array technologies. For the Illumina Infinium HumanMethylation450 array the number of probes per gene ranges from 1 to 1299, with a median of 15 probes per gene. For the EPIC array, the range is 1 to 1487, with a median of 20 probes per gene. This means that when mapping CpG sites to genes, a gene is more likely to be selected if there are many CpG sites associated with the gene.

One way to take into account this selection bias is to model the relationship between the number of probes per gene and the probability of being selected. This can be performed by adapting the goseq method of Young et al. (Young et al. 2010). Each gene then has a prior probability associated with it, and a modified version of a hypergeometric test can be performed, testing for over-representation of the selected genes in each gene set.

The gometh function performs gene set testing on GO categories or KEGG pathways (Phipson, Maksimovic, and Oshlack 2016). The gsameth function is a more generalised gene set testing function which can take as input a list of user specified gene sets. Note that for gsameth, the format for the gene ids for each gene in the gene set needs to be Entrez Gene IDs. For example, the entire curated gene set list (C2) from the Broad’s Molecular Signatures Database can be specified as input. The R version of these lists can be downloaded from http://bioinf.wehi.edu.au/software/MSigDB/index.html. Both functions take a vector of significant CpG probe names as input.

To illustrate how to use gometh, consider the results from the differential methylation analysis with RUVm.

topRUV(rfit2)
##            coefficients         t           p      p.BH     p.ebayes
## cg07155336     5.769286 15.345069 0.002005546 0.3431163 1.434834e-55
## cg06463958     5.733093 15.434797 0.001978272 0.3431163 6.749298e-55
## cg00024472     5.662959 15.946200 0.001832444 0.3431163 1.319390e-53
## cg02040433     5.651399 10.054445 0.005389436 0.3431163 2.146210e-53
## cg13355248     5.595396  9.963702 0.005504213 0.3431163 2.234891e-52
## cg02467990     5.592707  6.859614 0.013008521 0.3431163 2.499534e-52
## cg00817367     5.527501 13.070583 0.002921656 0.3431163 3.710480e-51
## cg11396157     5.487992 10.931263 0.004436178 0.3431163 1.873636e-50
## cg16306898     5.466780  5.573935 0.020790127 0.3431163 4.448085e-50
## cg03735888     5.396242 15.482605 0.001963955 0.3431163 7.700032e-49
##             p.ebayes.BH
## cg07155336 6.966293e-50
## cg06463958 1.638433e-49
## cg00024472 2.135266e-48
## cg02040433 2.605027e-48
## cg13355248 2.022589e-47
## cg02467990 2.022589e-47
## cg00817367 2.573547e-46
## cg11396157 1.137091e-45
## cg16306898 2.399554e-45
## cg03735888 3.738458e-44
table(rfit2$p.ebayes.BH < 0.01)
## 
##  FALSE   TRUE 
## 424168  61344

At a 1% false discovery rate cut-off, there are still tens of thousands of CpG sites differentially methylated. These will undoubtably map to almost all the genes in the genome, making a gene ontology analysis irrelevant. One option for selecting CpGs in this context is to apply not only a false discovery rate cut-off, but also a \(\Delta\beta\) cut-off. However, for this dataset, taking a relatively large \(\Delta\beta\) cut-off of 0.25 still leaves more than 30000 CpGs differentially methylated.

beta <- getBeta(mSet)
beta_norm <- rowMeans(beta[,des[,2]==0])
beta_can <- rowMeans(beta[,des[,2]==1])
Delta_beta <- beta_can - beta_norm
sigDM <- rfit2$p.ebayes.BH < 0.01 & abs(Delta_beta) > 0.25
table(sigDM)
## sigDM
##  FALSE   TRUE 
## 451760  33748

Instead, we take the top 10000 CpG sites as input to gometh.

topCpGs<-topRUV(rfit2,number=10000)
sigCpGs <- rownames(topCpGs)
sigCpGs[1:10]
##  [1] "cg07155336" "cg06463958" "cg00024472" "cg02040433" "cg13355248"
##  [6] "cg02467990" "cg00817367" "cg11396157" "cg16306898" "cg03735888"

The takes as input a character vector of CpG names, and optionally, a character vector of all CpG sites tested. If the all.cpg argument is omitted, all the CpGs on the array are used as background. To change the array type, the array.type argument can be specified as either “450K” or “EPIC”. The default is “450K”.

If the plot.bias argument is TRUE, a figure showing the relationship between the probability of being selected and the number of probes per gene will be displayed.

For testing of GO terms, the collection argument takes the value “GO”, which is the default setting. For KEGG pathway analysis, set collection to “KEGG”. The function topGO shows the top enriched GO categories. For KEGG testing, use the topKEGG function. The functions goana and kegga are called by for GO and KEGG pathway analysis respectively.

For GO testing on our example dataset:

library(IlluminaHumanMethylation450kanno.ilmn12.hg19)
gst <- gometh(sig.cpg=sigCpGs, all.cpg=rownames(rfit2), collection="GO")
## Warning in alias2SymbolTable(flat$symbol): Multiple symbols ignored for one
## or more aliases
topGO(gst)
##                                             Term Ont    N   DE
## GO:0048731                    system development  BP 4116  878
## GO:0044707 single-multicellular organism process  BP 5725 1098
## GO:0007275    multicellular organism development  BP 4680  953
## GO:0007399            nervous system development  BP 2079  541
## GO:0048856      anatomical structure development  BP 5240 1029
## GO:0032501      multicellular organismal process  BP 6662 1182
## GO:0044767 single-organism developmental process  BP 5522 1052
## GO:0005886                       plasma membrane  CC 4830  890
## GO:0032502                 developmental process  BP 5625 1063
## GO:0071944                        cell periphery  CC 4934  900
## GO:0030154                  cell differentiation  BP 3476  722
## GO:0048699                 generation of neurons  BP 1290  362
## GO:0030182                neuron differentiation  BP 1170  336
## GO:0007417    central nervous system development  BP  875  265
## GO:0022008                          neurogenesis  BP 1378  377
## GO:0048513              animal organ development  BP 2998  630
## GO:0048869        cellular developmental process  BP 3802  760
## GO:0009653    anatomical structure morphogenesis  BP 2488  562
## GO:0031224       intrinsic component of membrane  CC 5202  856
## GO:0007267                   cell-cell signaling  BP 1475  357
##                    P.DE          FDR
## GO:0048731 6.047807e-36 1.277176e-31
## GO:0044707 2.725226e-34 2.877566e-30
## GO:0007275 6.690380e-34 3.784861e-30
## GO:0007399 7.168975e-34 3.784861e-30
## GO:0048856 5.377723e-33 2.271335e-29
## GO:0032501 2.266074e-32 7.975825e-29
## GO:0044767 6.041890e-30 1.822752e-26
## GO:0005886 2.102303e-29 5.549554e-26
## GO:0032502 3.762175e-29 8.827736e-26
## GO:0071944 7.523185e-28 1.588746e-24
## GO:0030154 1.649136e-25 3.166041e-22
## GO:0048699 2.328689e-25 4.098104e-22
## GO:0030182 4.983768e-25 7.883911e-22
## GO:0007417 5.226573e-25 7.883911e-22
## GO:0022008 6.174221e-25 8.692480e-22
## GO:0048513 1.018998e-23 1.344950e-20
## GO:0048869 2.447270e-23 3.040085e-20
## GO:0009653 1.224614e-22 1.436744e-19
## GO:0031224 6.102276e-22 6.782519e-19
## GO:0007267 6.534659e-21 6.899947e-18

For a more generalised version of gene set testing in methylation data where the user can specify the gene set to be tested, the function gsameth can be used. To display the top 20 pathways, topGSA can be called. gsameth can take a single gene set, or a list of gene sets. The gene identifiers in the gene set must be Entrez Gene IDs. To demonstrate gsameth, a toy example is shown below, with gene sets made up of randomly selected genes from the org.Hs.eg.db package.

library(org.Hs.eg.db)
## Loading required package: AnnotationDbi
genes <- toTable(org.Hs.egSYMBOL2EG)
set1 <- sample(genes$gene_id,size=80)
set2 <- sample(genes$gene_id,size=100)
set3 <- sample(genes$gene_id,size=30)
genesets <- list(set1,set2,set3)
gsa <- gsameth(sig.cpg=sigCpGs, all.cpg=rownames(rfit2), collection=genesets)
## Warning in alias2SymbolTable(flat$symbol): Multiple symbols ignored for one
## or more aliases
topGSA(gsa)
##        N DE      P.DE      FDR
## [1,]  30  1 0.3072184 0.605668
## [2,] 100  4 0.5300296 0.605668
## [3,]  80  2 0.6056680 0.605668

Note that if it is of interest to obtain the Entrez Gene IDs that the significant CpGs are mapped to, the getMappedEntrezIDs can be called.

10 Session information

sessionInfo()

R version 3.3.1 (2016-06-21) Platform: x86_64-pc-linux-gnu (64-bit) Running under: Ubuntu 16.04.1 LTS

locale: [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=en_US.UTF-8 LC_COLLATE=C
[5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
[7] LC_PAPER=en_US.UTF-8 LC_NAME=C
[9] LC_ADDRESS=C LC_TELEPHONE=C
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C

attached base packages: [1] stats4 parallel stats graphics grDevices utils datasets [8] methods base

other attached packages: [1] org.Hs.eg.db_3.4.0
[2] AnnotationDbi_1.36.0
[3] edgeR_3.16.0
[4] tweeDEseqCountData_1.11.0
[5] minfiData_0.18.0
[6] IlluminaHumanMethylation450kanno.ilmn12.hg19_0.6.0 [7] IlluminaHumanMethylation450kmanifest_0.4.0
[8] minfi_1.20.0
[9] bumphunter_1.14.0
[10] locfit_1.5-9.1
[11] iterators_1.0.8
[12] foreach_1.4.3
[13] Biostrings_2.42.0
[14] XVector_0.14.0
[15] SummarizedExperiment_1.4.0
[16] GenomicRanges_1.26.0
[17] GenomeInfoDb_1.10.0
[18] IRanges_2.8.0
[19] S4Vectors_0.12.0
[20] Biobase_2.34.0
[21] BiocGenerics_0.20.0
[22] limma_3.30.0
[23] missMethyl_1.8.0
[24] BiocStyle_2.2.0

loaded via a namespace (and not attached): [1] httr_1.2.1
[2] nor1mix_1.2-2
[3] splines_3.3.1
[4] assertthat_0.1
[5] statmod_1.4.26
[6] doRNG_1.6
[7] Rsamtools_1.26.0
[8] methylumi_2.20.0
[9] yaml_2.1.13
[10] RSQLite_1.0.0
[11] lattice_0.20-34
[12] quadprog_1.5-5
[13] chron_2.3-47
[14] digest_0.6.10
[15] RColorBrewer_1.1-2
[16] colorspace_1.2-7
[17] htmltools_0.3.5
[18] preprocessCore_1.36.0
[19] Matrix_1.2-7.1
[20] plyr_1.8.4
[21] GEOquery_2.40.0
[22] siggenes_1.48.0
[23] XML_3.98-1.4
[24] biomaRt_2.30.0
[25] genefilter_1.56.0
[26] zlibbioc_1.20.0
[27] GO.db_3.4.0
[28] xtable_1.8-2
[29] BiocParallel_1.8.0
[30] tibble_1.2
[31] openssl_0.9.4
[32] annotate_1.52.0
[33] beanplot_1.2
[34] pkgmaker_0.22
[35] GenomicFeatures_1.26.0
[36] survival_2.39-5
[37] magrittr_1.5
[38] mclust_5.2
[39] evaluate_0.10
[40] nlme_3.1-128
[41] MASS_7.3-45
[42] tools_3.3.1
[43] registry_0.3
[44] data.table_1.9.6
[45] formatR_1.4
[46] matrixStats_0.51.0
[47] stringr_1.1.0
[48] rngtools_1.2.4
[49] base64_2.0
[50] grid_3.3.1
[51] RCurl_1.95-4.8
[52] bitops_1.0-6
[53] rmarkdown_1.1
[54] codetools_0.2-15
[55] multtest_2.30.0
[56] DBI_0.5-1
[57] reshape_0.8.5
[58] ruv_0.9.6
[59] R6_2.2.0
[60] illuminaio_0.16.0
[61] GenomicAlignments_1.10.0
[62] knitr_1.14
[63] rtracklayer_1.34.0
[64] stringi_1.1.2
[65] BiasedUrn_1.07
[66] Rcpp_0.12.7
[67] IlluminaHumanMethylationEPICanno.ilm10b2.hg19_0.6.0

References

Aryee, Martin J, Andrew E Jaffe, Hector Corrada-Bravo, Christine Ladd-Acosta, Andrew P Feinberg, Kasper D Hansen, and Rafael a Irizarry. 2014. “Minfi: a flexible and comprehensive Bioconductor package for the analysis of Infinium DNA methylation microarrays.” Bioinformatics (Oxford, England) 30 (10): 1363–9. doi:10.1093/bioinformatics/btu049.

Bibikova, Marina, Bret Barnes, Chan Tsan, Vincent Ho, Brandy Klotzle, Jennie M Le, David Delano, et al. 2011. “High density DNA methylation array with single CpG site resolution.” Genomics 98 (4). Elsevier Inc.: 288–95. doi:10.1016/j.ygeno.2011.07.007.

Dedeurwaerder, Sarah, Matthieu Defrance, and Emilie Calonne. 2011. “Evaluation of the Infinium Methylation 450K technology.” Epigenomics 3 (6): 771–84. http://www.futuremedicine.com/doi/abs/10.2217/epi.11.105.

Gagnon-Bartsch, Johann a, and Terence P Speed. 2012. “Using control genes to correct for unwanted variation in microarray data.” Biostatistics (Oxford, England) 13 (3): 539–52. doi:10.1093/biostatistics/kxr034.

Gagnon-Bartsch, Johann A, Laurent Jacob, and Terence P Speed. 2013. Removing Unwanted Variation from High Dimensional Data with Negative Controls. Berkeley: Tech. Rep. 820, Department of Statistics, University of California.

Geeleher, Paul, Lori Hartnett, Laurance J Egan, Aaron Golden, Raja Affendi Raja Ali, and Cathal Seoighe. 2013. “Gene-set analysis is severely biased when applied to genome-wide methylation data.” Bioinformatics (Oxford, England) 29 (15). Oxford University Press: 1851–7. doi:10.1093/bioinformatics/btt311.

Hansen, Kasper Daniel, Winston Timp, Héctor Corrada Bravo, Sarven Sabunciyan, Benjamin Langmead, Oliver G McDonald, Bo Wen, et al. 2011. “Increased methylation variation in epigenetic domains across cancer types.” Nature Genetics 43 (8): 768–75. doi:10.1038/ng.865.

Law, Charity W, Yunshun Chen, Wei Shi, and Gordon K Smyth. 2014. “voom: Precision weights unlock linear model analysis tools for RNA-seq read counts.” Genome Biology 15 (2): R29. doi:10.1186/gb-2014-15-2-r29.

Maksimovic, Jovana, Johann A Gagnon-Bartsch, Terence P Speed, and Alicia Oshlack. 2015. “Removing unwanted variation in a differential methylation analysis of Illumina HumanMethylation450 array data.” Nucleic Acids Research, May, gkv526. doi:10.1093/nar/gkv526.

Maksimovic, Jovana, Lavinia Gordon, and Alicia Oshlack. 2012. “SWAN: Subset-quantile within array normalization for illumina infinium HumanMethylation450 BeadChips.” Genome Biology 13 (6). BioMed Central Ltd: R44. doi:10.1186/gb-2012-13-6-r44.

Phipson, Belinda, and Alicia Oshlack. 2014. “DiffVar: a new method for detecting differential variability with application to methylation in cancer and aging.” Genome Biology 15 (9). BioMed Central: 465. doi:10.1186/s13059-014-0465-4.

Phipson, Belinda, Jovana Maksimovic, and Alicia Oshlack. 2016. “missMethyl: an R package for analyzing data from Illumina’s HumanMethylation450 platform.” Bioinformatics (Oxford, England) 32 (2): 286–88. doi:10.1093/bioinformatics/btv560.

Pickrell, Joseph K., John C. Marioni, Athma A. Pai, Jacob F. Degner, Barbara E. Engelhardt, Everlyne Nkadori, Jean-Baptiste Veyrieras, Matthew Stephens, Yoav Gilad, and Jonathan K. Pritchard. 2010. “Understanding mechanisms underlying human gene expression variation with RNA sequencing.” Nature 464 (7289). Nature Publishing Group: 768–72. doi:10.1038/nature08872.

Smyth, G. K. 2005. “limma: Linear Models for Microarray Data.” In Bioinformatics and Computational Biology Solutions Using R and Bioconductor, 397–420. New York: Springer-Verlag. doi:10.1007/0-387-29362-0_23.

Young, Matthew D, Matthew J Wakefield, Gordon K Smyth, and Alicia Oshlack. 2010. “Gene ontology analysis for RNA-seq: accounting for selection bias.” Genome Biology 11 (2): R14. doi:10.1186/gb-2010-11-2-r14.