missMethyl 1.16.0
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.
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.8-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.8-bioc/R/library/minfiData/extdata/5723646052/5723646052_R02C02
## 2 /home/biocbuild/bbs-3.8-bioc/R/library/minfiData/extdata/5723646052/5723646052_R04C01
## 3 /home/biocbuild/bbs-3.8-bioc/R/library/minfiData/extdata/5723646052/5723646052_R05C02
## 4 /home/biocbuild/bbs-3.8-bioc/R/library/minfiData/extdata/5723646053/5723646053_R04C02
## 5 /home/biocbuild/bbs-3.8-bioc/R/library/minfiData/extdata/5723646053/5723646053_R05C02
## 6 /home/biocbuild/bbs-3.8-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.
SWAN (subset-quantile within array normalization) is a within-array normalization method for Illumina 450k & EPIC BeadChips. Technical differencs have been demonstrated to exist between the Infinium I and Infinium II assays on a single Illumina HumanMethylation 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 (???)(fig:betasByType), 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 (???)(fig:betasByType), panel “SWAN”).
mSet <- preprocessRaw(rgSet)
mSetSw <- SWAN(mSet,verbose=TRUE)
## [SWAN] Preparing normalization subset
## 450k
## [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")
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,]
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)
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.
To test for differential methylation we use the limma
package (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
## Down 7052 0 125 653
## NotSig 3265 20000 19865 18855
## Up 9683 0 10 492
top<-topTable(fit.reduced,coef=4)
top
## logFC AveExpr t P.Value adj.P.Val B
## cg19677522 3.992371 -1.9091557 15.15023 1.330787e-05 0.02710643 3.792988
## cg03167951 3.861347 -1.8898050 14.31875 1.789180e-05 0.02710643 3.572580
## cg25264081 3.609029 -1.1321228 13.87816 2.107141e-05 0.02710643 3.446994
## cg26684946 3.436919 -1.0220823 13.54920 2.388634e-05 0.02710643 3.348944
## cg20912169 4.109873 -0.2089213 13.54189 2.395385e-05 0.02710643 3.346719
## cg12859211 4.203347 -0.9553543 13.23941 2.695237e-05 0.02710643 3.253076
## cg13938881 3.330727 -1.3089052 13.06243 2.891236e-05 0.02710643 3.196712
## cg16935295 3.750777 -1.4133100 12.93627 3.041275e-05 0.02710643 3.155802
## cg23405575 3.469136 -0.2988488 12.75085 3.278844e-05 0.02710643 3.094543
## cg11855526 4.971912 -1.2052800 12.64822 3.419752e-05 0.02710643 3.060044
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)
}
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 inspired interface to functions from the CRAN package ruv, which enable the removal of unwanted variation when performing a differential methylation analysis (Maksimovic et al. 2015).
RUVfit
uses the RUV-inverse method by default, as this does not require the
user to specify a \(k\) parameter. The ridged version of RUV-inverse is also
available by setting method = rinv
. The RUV-2 and RUV-4 functions can also
be used by setting method = ruv2
or method = ruv4
, respectively, and
specifying an appropriate value for k (number of components of unwanted
variation to remove) where \(0 \leq k < no. samples\).
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 via a 2-stage approach, RUVm. Stage 1 involves performing a differential methylation analysis using RUV-inverse (by default) 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 (by default) 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))
# setup design matrix
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"
# extract Illumina negative control data
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
# add negative control data to M-values
Mc <- rbind(M,INCs)
# create vector marking negative controls in data matrix
ctl1 <- rownames(Mc) %in% rownames(INCs)
table(ctl1)
## ctl1
## FALSE TRUE
## 485512 613
rfit1 <- RUVfit(data=Mc, design=des, coef=2, ctl=ctl1) # 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)
## X1 X1 X1 p.BH p.ebayes p.ebayes.BH
## cg04743961 4.838190 26.74467 3.812882e-05 0.1401969 3.516091e-07 0.01017357
## cg07155336 5.887409 17.62103 1.608653e-04 0.1401969 3.583107e-07 0.01017357
## cg20925841 4.790211 26.69524 3.837354e-05 0.1401969 3.730375e-07 0.01017357
## cg03607359 4.394397 34.74068 1.542013e-05 0.1401969 4.721205e-07 0.01017357
## cg10566121 4.787914 21.80693 7.717708e-05 0.1401969 5.238865e-07 0.01017357
## cg07655636 4.571758 22.99708 6.424216e-05 0.1401969 6.080091e-07 0.01017357
ctl2 <- rownames(M) %in% rownames(top1[top1$p.ebayes.BH > 0.5,])
table(ctl2)
## ctl2
## 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
rfit3 <- RUVfit(data=M, design=des, coef=2, ctl=ctl2) # Stage 2 analysis
rfit4 <- RUVadj(rfit3)
# Look at table of top results
topRUV(rfit4)
## X1 X1 X1 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 RUVm does not support contrasts, so only one factor of interest can be interrogated at a time using a design matrix with an intercept term.
If the number of samples in your experiment is greater than the number of Illumina negative controls on the array platform used - 613 for 450k, 411 for EPIC - stage 1 of RUVm will not work. In such cases, we recommend performing a standard limma analysis in stage 1.
# get M-values for ALL probes
meth <- getMeth(mSet)
unmeth <- getUnmeth(mSet)
M <- log2((meth + 100)/(unmeth + 100))
# setup design matrix
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"
# limma differential methylation analysis
lfit1 <- lmFit(M, design=des)
lfit2 <- eBayes(lfit1) # Stage 1 analysis
# Look at table of top results
topTable(lfit2)
## Removing intercept from test coefficients
## logFC AveExpr t P.Value adj.P.Val B
## cg07155336 6.037439 -1.276764 19.22210 1.175108e-07 0.005755968 7.635736
## cg04743961 4.887986 -2.317315 19.21709 1.177367e-07 0.005755968 7.634494
## cg03607359 4.393946 -2.191871 18.07007 1.852304e-07 0.005755968 7.334032
## cg13272280 4.559707 -2.099665 17.25531 2.599766e-07 0.005755968 7.099628
## cg22263007 4.438420 -1.010994 17.12384 2.749857e-07 0.005755968 7.060036
## cg03556069 5.456754 -1.811718 17.00720 2.891269e-07 0.005755968 7.024476
## cg08443814 4.597347 -2.062275 16.80835 3.151706e-07 0.005755968 6.962907
## cg18672939 5.159383 -0.705992 16.65643 3.368597e-07 0.005755968 6.915046
## cg24385334 4.157473 -1.943370 16.59313 3.463909e-07 0.005755968 6.894890
## cg18044663 4.426118 -1.197724 16.57851 3.486357e-07 0.005755968 6.890216
The results of this can then be used to define ECPs for stage 2, as in the previous example.
topl1 <- topTable(lfit2, num=Inf)
## Removing intercept from test coefficients
head(topl1)
## logFC AveExpr t P.Value adj.P.Val B
## cg07155336 6.037439 -1.276764 19.22210 1.175108e-07 0.005755968 7.635736
## cg04743961 4.887986 -2.317315 19.21709 1.177367e-07 0.005755968 7.634494
## cg03607359 4.393946 -2.191871 18.07007 1.852304e-07 0.005755968 7.334032
## cg13272280 4.559707 -2.099665 17.25531 2.599766e-07 0.005755968 7.099628
## cg22263007 4.438420 -1.010994 17.12384 2.749857e-07 0.005755968 7.060036
## cg03556069 5.456754 -1.811718 17.00720 2.891269e-07 0.005755968 7.024476
ctl3 <- rownames(M) %in% rownames(topl1[topl1$adj.P.Val > 0.5,])
table(ctl3)
## ctl3
## FALSE TRUE
## 199150 286362
We can then use the ECPs to perform a second differential methylation
with RUV-inverse
as before.
# Perform RUV adjustment and fit
rfit5 <- RUVfit(data=M, design=des, coef=2, ctl=ctl3) # Stage 2 analysis
rfit6 <- RUVadj(rfit5)
# Look at table of top results
topRUV(rfit6)
## X1 X1 X1 p.BH p.ebayes
## cg06463958 5.910598 16.764282 0.001658268 0.2879799 7.201871e-67
## cg07155336 5.909549 16.280730 0.001775943 0.2879799 7.594724e-67
## cg02467990 5.841079 7.509890 0.010693351 0.2879799 2.388032e-65
## cg00024472 5.823529 16.922147 0.001622249 0.2879799 5.742351e-65
## cg01893212 5.699627 6.496989 0.014865392 0.2879799 2.611317e-62
## cg11396157 5.699331 11.927112 0.003673561 0.2879799 2.649365e-62
## cg13355248 5.658606 10.663862 0.004765630 0.2879799 1.924338e-61
## cg00817367 5.649284 14.067684 0.002499571 0.2879799 3.023717e-61
## cg16306898 5.610118 6.246593 0.016244793 0.2879799 2.002510e-60
## cg16556906 5.567659 6.525888 0.014716909 0.2879799 1.531939e-59
## p.ebayes.BH
## cg06463958 1.843665e-61
## cg07155336 1.843665e-61
## cg02467990 3.864727e-60
## cg00024472 6.969951e-60
## cg01893212 2.143831e-57
## cg11396157 2.143831e-57
## cg13355248 1.334699e-56
## cg00817367 1.835064e-56
## cg16306898 1.080270e-55
## cg16556906 7.437748e-55
To visualise the effect that the RUVm adjustment is having on the data,
using an MDS plot for example, the getAdjusted
function can be used to extract
the adjusted values from the RUVm fit object. NOTE: The adjusted values
should only be used for plotting - it is NOT recommended that they are used in
any downstream analysis.
Madj <- getAdjusted(M, rfit6) # get adjusted values
The MDS plots below show how the relationship between the samples changes with and without RUVm adjustment. RUVm reduces the distance between the samples in each group by removing unwanted variation. It can be useful to examine this type of plot when trying to decide on the best set of ECPs or to help select the optimal value of \(k\), if using RUV-4 or RUV-2.
par(mfrow=c(1,2))
plotMDS(Mval, labels=targets$Sample_Name, col=as.integer(factor(targets$status)),
main="Unadjusted")
legend("topleft",legend=c("Cancer","Normal"),pch=16,cex=1,col=1:2)
plotMDS(Madj, labels=targets$Sample_Name, col=as.integer(factor(targets$status)),
main="Adjusted: RUV-inverse")
legend("topleft",legend=c("Cancer","Normal"),pch=16,cex=1,col=1:2)