TCGAanalyze: Analyze data from TCGA.

You can easily analyze data using following functions:

TCGAanalyze_Preprocessing: Preprocessing of Gene Expression data (IlluminaHiSeq_RNASeqV2)

You can easily search TCGA samples, download and prepare a matrix of gene expression.

The result is shown below:

Example of a matrix of gene expression (10 genes in rows and 2 samples in columns)
TCGA-E9-A1NG-11A-52R-A14M-07 TCGA-BH-A0AU-01A-11R-A12P-07
TGFB1|7040 2060.00 3277.00
EXO1|9156 28.00 457.00
?|388795 0.00 3.00
PKN3|29941 844.00 141.00
CUL7|9820 1722.99 2408.84
C4orf43|55319 828.00 1038.00
SYT2|127833 28.00 16.00
NRG2|9542 127.00 3.00
DENND2D|79961 1155.00 2200.00
NLN|57486 908.00 637.00

The result from TCGAanalyze_Preprocessing is shown below:

TCGAanalyze_DEA & TCGAanalyze_LevelTab: Differential expression analysis (DEA)

Perform DEA (Differential expression analysis) to identify differentially expressed genes (DEGs) using the TCGAanalyze_DEA function.

TCGAanalyze_DEA performs DEA using following functions from R :

  1. edgeR::DGEList converts the count matrix into an edgeR object.
  2. edgeR::estimateCommonDisp each gene gets assigned the same dispersion estimate.
  3. edgeR::exactTest performs pair-wise tests for differential expression between two groups.
  4. edgeR::topTags takes the output from exactTest(), adjusts the raw p-values using the False Discovery Rate (FDR) correction, and returns the top differentially expressed genes.

This function receives as arguments:

  • mat1 The matrix of the first group (in the example, group 1 is the normal samples),
  • mat2 The matrix of the second group (in the example, group 2 is tumor samples)
  • Cond1type Label for group 1
  • Cond1type Label for group 2

Next, we filter the output of dataDEGs by abs(LogFC) >=1, and uses the TCGAanalyze_LevelTab function to create a table with DEGs (differentially expressed genes), log Fold Change (FC), false discovery rate (FDR), the gene expression level for samples in Cond1type, and Cond2type, and Delta value (the difference of gene expression between the two conditions multiplied logFC).

The result is shown below:

Table of DEGs after DEA
mRNA logFC FDR Tumor Normal Delta
FN1 2.88 1.296151e-19 347787.48 41234.12 1001017.3
COL1A1 1.77 1.680844e-08 358010.32 89293.72 633086.3
C4orf7 5.20 2.826474e-50 87821.36 2132.76 456425.4
COL1A2 1.40 9.480478e-06 273385.44 91241.32 383242.9
GAPDH 1.32 3.290678e-05 179057.44 63663.00 236255.5
CLEC3A 6.79 7.971002e-74 27257.16 259.60 185158.6
IGFBP5 1.24 1.060717e-04 128186.88 53323.12 158674.6
CPB1 4.27 3.044021e-37 37001.76 2637.72 157968.8
CARTPT 6.72 1.023371e-72 21700.96 215.16 145872.8
DCD 7.26 1.047988e-80 19941.20 84.80 144806.3

Other examples are in the next sections.

HTSeq data: Downstream analysis BRCA

CancerProject <- "TCGA-BRCA"
DataDirectory <- paste0("../GDC/",gsub("-","_",CancerProject))
FileNameData <- paste0(DataDirectory, "_","HTSeq_Counts",".rda")

query <- GDCquery(project = CancerProject,
                  data.category = "Transcriptome Profiling",
                  data.type = "Gene Expression Quantification", 
                  workflow.type = "HTSeq - Counts")

samplesDown <- getResults(query,cols=c("cases"))

dataSmTP <- TCGAquery_SampleTypes(barcode = samplesDown,
                                  typesample = "TP")

dataSmNT <- TCGAquery_SampleTypes(barcode = samplesDown,
                                  typesample = "NT")
dataSmTP_short <- dataSmTP[1:10]
dataSmNT_short <- dataSmNT[1:10]

queryDown <- GDCquery(project = CancerProject, 
                      data.category = "Transcriptome Profiling",
                      data.type = "Gene Expression Quantification", 
                      workflow.type = "HTSeq - Counts", 
                      barcode = c(dataSmTP_short, dataSmNT_short))
                    
GDCdownload(query = queryDown,
            directory = DataDirectory)

dataPrep <- GDCprepare(query = queryDown, 
                       save = TRUE, 
                       directory =  DataDirectory,
                       save.filename = FileNameData)

dataPrep <- TCGAanalyze_Preprocessing(object = dataPrep, 
                                      cor.cut = 0.6,
                                      datatype = "HTSeq - Counts")                      

dataNorm <- TCGAanalyze_Normalization(tabDF = dataPrep,
                                      geneInfo = geneInfoHT,
                                      method = "gcContent") 

boxplot(dataPrep, outline = FALSE)

boxplot(dataNorm, outline = FALSE)

dataFilt <- TCGAanalyze_Filtering(tabDF = dataNorm,
                                  method = "quantile", 
                                  qnt.cut =  0.25)   

dataDEGs <- TCGAanalyze_DEA(mat1 = dataFilt[,dataSmTP_short],
                            mat2 = dataFilt[,dataSmNT_short],
                            Cond1type = "Normal",
                            Cond2type = "Tumor",
                            fdr.cut = 0.01 ,
                            logFC.cut = 1,
                            method = "glmLRT")  

miRNA expression data: Downstream analysis BRCA

require(TCGAbiolinks)

CancerProject <- "TCGA-BRCA"
DataDirectory <- paste0("../GDC/",gsub("-","_",CancerProject))
FileNameData <- paste0(DataDirectory, "_","miRNA_gene_quantification",".rda")

query.miR <- GDCquery(project = CancerProject, 
                  data.category = "Gene expression",
                  data.type = "miRNA gene quantification",
                  file.type = "hg19.mirna",
                  legacy = TRUE)

samplesDown.miR <- getResults(query.miR,cols=c("cases"))

dataSmTP.miR <- TCGAquery_SampleTypes(barcode = samplesDown.miR,
                                  typesample = "TP")

dataSmNT.miR <- TCGAquery_SampleTypes(barcode = samplesDown.miR,
                                  typesample = "NT")
dataSmTP_short.miR <- dataSmTP.miR[1:10]
dataSmNT_short.miR <- dataSmNT.miR[1:10]

queryDown.miR <- GDCquery(project = CancerProject, 
                      data.category = "Gene expression",
                      data.type = "miRNA gene quantification",
                      file.type = "hg19.mirna",
                      legacy = TRUE,
                      barcode = c(dataSmTP_short.miR, dataSmNT_short.miR))

GDCdownload(query = queryDown.miR,
            directory = DataDirectory)

dataAssy.miR <- GDCprepare(query = queryDown.miR, 
                           save = TRUE, 
                           save.filename = FileNameData, 
                           summarizedExperiment = TRUE,
                           directory =DataDirectory )
rownames(dataAssy.miR) <- dataAssy.miR$miRNA_ID

# using read_count's data 
read_countData <-  colnames(dataAssy.miR)[grep("count", colnames(dataAssy.miR))]
dataAssy.miR <- dataAssy.miR[,read_countData]
colnames(dataAssy.miR) <- gsub("read_count_","", colnames(dataAssy.miR))

dataFilt <- TCGAanalyze_Filtering(tabDF = dataAssy.miR,
                                  method = "quantile", 
                                  qnt.cut =  0.25)   

dataDEGs <- TCGAanalyze_DEA(mat1 = dataFilt[,dataSmNT_short.miR],
                            mat2 = dataFilt[,dataSmTP_short.miR],
                            Cond1type = "Normal",
                            Cond2type = "Tumor",
                            fdr.cut = 0.01 ,
                            logFC.cut = 1,
                            method = "glmLRT")  

TCGAanalyze_EAcomplete & TCGAvisualize_EAbarplot: Enrichment Analysis

Researchers, in order to better understand the underlying biological processes, often want to retrieve a functional profile of a set of genes that might have an important role. This can be done by performing an enrichment analysis.

We will perform an enrichment analysis on gene sets using the TCGAanalyze_EAcomplete function. Given a set of genes that are up-regulated under certain conditions, an enrichment analysis will identify classes of genes or proteins that are over-represented using annotations for that gene set.

To view the results you can use the TCGAvisualize_EAbarplot function as shown below.

The result is shown below:

The figure shows canonical pathways significantly overrepresented (enriched) by the DEGs (differentially expressed genes). The most statistically significant canonical pathways identified in DEGs list are listed according to their p value corrected FDR (-Log) (colored bars) and the ratio of list genes found in each pathway over the total number of genes in that pathway (Ratio, red line).

TCGAanalyze_survival: Survival Analysis

When analyzing survival, different problems come up than the ones discussed so far. One question is how do we deal with subjects dropping out of a study. For example, assuming that we test a new cancer drug. While some subjects die, others may believe that the new drug is not effective, and decide to drop out of the study before the study is finished. A similar problem would be faced when we investigate how long a machine lasts before it breaks down.

Using the clinical data, it is possible to create a survival plot with the function TCGAanalyze_survival as follows:

The arguments of TCGAanalyze_survival are:

  • clinical_patient TCGA Clinical patient with the information days_to_death
  • clusterCol Column with groups to plot. This is a mandatory field, the caption will be based in this column
  • legend Legend title of the figure
  • xlim xlim x axis limits e.g. xlim = c(0, 1000). Present narrower X axis, but not affect survival estimates.
  • main main title of the plot
  • ylab y-axis text of the plot
  • xlab x-axis text of the plot
  • filename The name of the pdf file
  • color Define the colors of the lines.
  • pvalue Show pvalue in the plot.
  • risk.table Show or not the risk table
  • conf.int Show confidence intervals for point estimates of survival curves.

The result is shown below:

TCGAanalyze_DMR: Differentially methylated regions Analysis

We will search for differentially methylated CpG sites using the TCGAanalyze_DMR function. In order to find these regions we use the beta-values (methylation values ranging from 0.0 to 1.0) to compare two groups.

First, it calculates the difference between the mean DNA methylation of each group for each probe.

Second, it test for differential expression between two groups using the wilcoxon test adjusting by the Benjamini-Hochberg method. The default arguments was set to require a minimum absolute beta-values difference of 0.2 and an adjusted p-value of < 0.01.

After these tests, we save a volcano plot (x-axis:diff mean methylation, y-axis: statistical significance) that will help the user identify the differentially methylated CpG sites, then the results are saved in a csv file (DMR_results.groupCol.group1.group2.csv) and finally the object is returned with the calculus in the rowRanges.

The arguments of TCGAanalyze_DMR are:

Argument Description
data SummarizedExperiment obtained from the TCGAPrepare
groupCol Columns with the groups inside the SummarizedExperiment object. (This will be obtained by the function colData(data))
group1 In case our object has more than 2 groups, you should set the name of the group
group2 In case our object has more than 2 groups, you should set the name of the group
calculate.pvalues.probes In order to get the probes faster the user can select to calculate the pvalues only for the probes with a difference in DNA methylation. The default is to calculate to all probes. Possible values: “all”, “differential”. Default “all”
plot.filename Filename. Default: volcano.pdf, volcano.svg, volcano.png. If set to FALSE, there will be no plot.
ylab y axis text
xlab x axis text
title main title. If not specified it will be “Volcano plot (group1 vs group2)
legend Legend title
color vector of colors to be used in graph
label vector of labels to be used in the figure. Example: c(“Not Significant”,“Hypermethylated in group1”, “Hypomethylated in group1”))
xlim x limits to cut image
ylim y limits to cut image
p.cut p values threshold. Default: 0.01
probe.names is probe.names
diffmean.cut diffmean threshold. Default: 0.2
paired Wilcoxon paired parameter. Default: FALSE
adj.method Adjusted method for the p-value calculation
overwrite Overwrite the pvalues and diffmean values if already in the object for both groups? Default: FALSE
cores Number of cores to be used in the non-parametric test Default = groupCol.group1.group2.rda
save Save object with results? Default: TRUE

The output will be a plot such as the figure below. The green dots are the probes that are hypomethylated in group 2 compared to group 1, while the red dots are the hypermethylated probes in group 2 compared to group 1

Also, the TCGAanalyze_DMR function will save the plot as pdf and return the same SummarizedExperiment that was given as input with the values of p-value, p-value adjusted, diffmean and the group it belongs in the graph (non significant, hypomethylated, hypermethylated) in the rowRanges. The columns will be (where group1 and group2 are the names of the groups):

  • diffmean.group1.group2 (mean.group2 - mean.group1)
  • diffmean.group2.group1 (mean.group1 - mean.group2)
  • p.value.group1.group2
  • p.value.adj.group1.group2
  • status.group1.group2 (Status of probes in group2 in relation to group1)
  • status.group2.group1 (Status of probes in group1 in relation to group2)

This values can be view/acessed using the rowRanges acessesor (rowRanges(data)).

Observation: Calling the same function again, with the same arguments will only plot the results, as it was already calculated. If you want to have them recalculated, please set overwrite to TRUE or remove the calculated columns.

TCGAvisualize: Visualize results from analysis functions with TCGA’s data.

You can easily visualize results from some following functions:

TCGAvisualize_Heatmap: Create heatmaps with cluster bars

In order to have a better view of clusters, we normally use heatmaps. TCGAvisualize_Heatmap will plot a heatmap and add to each sample bars representing different features. This function is a wrapper to the package ComplexHeatmap package,

The arguments of this function are:

  • data The object with the heatmap data (expression, methylation)
  • col.metadata Metadata for the columns (patients). It should have the column bcr_patient_barcode or patient or ID with the patients barcodes.
  • row.metadata Metadata for the rows genes (expression) or probes (methylation)
  • col.colors A list of names colors
  • row.colors A list of named colors
  • show_column_names Show column names names? Default: FALSE
  • show_row_names Show row names? Default: FALSE
  • cluster_rows Cluster rows ? Default: FALSE
  • cluster_columns Cluster columns ? Default: FALSE
  • sortCol Name of the column to be used to sort the columns
  • title Title of the plot
  • type Select the colors of the heatmap values. Possible values are “expression” (default), “methylation”
  • scale Use z-score to make the heamat? If we want to show differences between genes, it is good to make Z-score by samples (force each sample to have zero mean and standard deviation=1). If we want to show differences between samples, it is good to make Z-score by genes (force each gene to have zero mean and standard deviation=1). Possibilities: “row”, “col. Default”none"

For more information please take a look on case study #2.

The result is shown below:

TCGAvisualize_Volcano: Create volcano plot

Creates a volcano plot for DNA methylation or expression

The arguments of this function are:

Argument Description
x x-axis data
y y-axis data
filename Filename. Default: volcano.pdf, volcano.svg, volcano.png
ylab y axis text
xlab x axis text
title main title. If not specified it will be “Volcano plot (group1 vs group2)
legend Legend title
label vector of labels to be used in the figure. Example: c(“Not Significant”,“Hypermethylated in group1”, “Hypomethylated in group1”))#’
xlim x limits to cut image
ylim y limits to cut image
color vector of colors to be used in graph
names Names to be plotted if significant. Should be the same size of x and y
names.fill Names should be filled in a color box? Default: TRUE
show.names What names will be showd? Possibilities: “both”, “significant”, “highlighted”
x.cut x-axis threshold. Default: 0.0 If you give only one number (e.g. 0.2) the cut-offs will be -0.2 and 0.2. Or you can give different cut-offs as a vector (e.g. c(-0.3,0.4))
y.cut p-values threshold.
height Figure height
width Figure width
highlight List of genes/probes to be highlighted. It should be in the names argument.
highlight.color Color of the points highlighted
names.size Size of the names text
dpi Figure dpi

For more information please take a look on case study #3.

TCGAvisualize_PCA: Principal Component Analysis plot for differentially expressed genes

In order to better understand our genes, we can perform a PCA to reduce the number of dimensions of our gene set. The function TCGAvisualize_PCA will plot the PCA for different groups.

The arguments of this function are:

  • dataFilt The expression matrix after normalization and quantile filter
  • dataDEGsFiltLevel The TCGAanalyze_LevelTab output
  • ntopgenes number of DEGs genes to plot in PCA
  • ** group1 a string containing the barcode list of the samples in control group
  • ** group2 a string containing the barcode list of the samples in disease group

The result is shown below:

TCGAvisualize_meanMethylation: Mean DNA Methylation Analysis

Using the data and calculating the mean DNA methylation per group, it is possible to create a mean DNA methylation boxplot with the function TCGAvisualize_meanMethylation as follows:

##   groups      Mean    Median       Max       Min
## 1     NT 0.5002087 0.4988427 0.5219407 0.4802272
## 2     TP 0.4988416 0.5026087 0.5270083 0.4699520
## 3     TR 0.4876009 0.4808549 0.5257488 0.4735241
##           NT        TP        TR
## NT        NA 0.8861297 0.1707025
## TP 0.8861297        NA 0.3087482
## TR 0.1707025 0.3087482        NA

The arguments of TCGAvisualize_meanMethylation are:

Argument Description
data SummarizedExperiment object obtained from GDCPrepare
groupCol Columns in colData(data) that defines the groups. If no columns defined a columns called “Patients” will be used
subgroupCol Columns in colData(data) that defines the subgroups.
shapes Shape vector of the subgroups. It must have the size of the levels of the subgroups. Example: shapes = c(21,23) if for two levels
print.pvalue Print p-value for two groups
plot.jitter Plot jitter? Default TRUE
jitter.size Plot jitter size? Default 3
filename The name of the pdf that will be saved
ylab y axis text in the plot
xlab x axis text in the plot
title main title in the plot
labels Labels of the groups
group.legend Name of the group legend. DEFAULT: groupCol
subgroup.legend Name of the subgroup legend. DEFAULT: subgroupCol
color vector of colors to be used in graph
y.limits Change lower/upper y-axis limit
sort Sort boxplot by mean or median. Possible values: mean.asc, mean.desc, median.asc, median.desc
order Order of the boxplots
legend.position Legend position (“top”, “right”,“left”,“bottom”)
legend.title.position Legend title position (“top”, “right”,“left”,“bottom”)
legend.ncols Number of columns of the legend
add.axis.x.text Add text to x-axis? Default: FALSE
width Plot width default:10
height Plot height default:10
dpi Pdf dpi default:600
axis.text.x.angle Angle of text in the x axis

Other examples using the parameters:

##   groups      Mean    Median       Max       Min
## 1     NT 0.5002087 0.4988427 0.5219407 0.4802272
## 2     TP 0.4988416 0.5026087 0.5270083 0.4699520
## 3     TR 0.4876009 0.4808549 0.5257488 0.4735241
##           NT        TP        TR
## NT        NA 0.8861297 0.1707025
## TP 0.8861297        NA 0.3087482
## TR 0.1707025 0.3087482        NA

##   groups      Mean    Median       Max       Min
## 1     NT 0.5002087 0.4988427 0.5219407 0.4802272
## 2     TP 0.4988416 0.5026087 0.5270083 0.4699520
## 3     TR 0.4876009 0.4808549 0.5257488 0.4735241
##           NT        TP        TR
## NT        NA 0.8861297 0.1707025
## TP 0.8861297        NA 0.3087482
## TR 0.1707025 0.3087482        NA

##   groups      Mean    Median       Max       Min
## 1 group1 0.4897408 0.4866560 0.5086151 0.4735241
## 2 group2 0.4893977 0.4813792 0.5270083 0.4699520
## 3 group3 0.5075127 0.5030055 0.5257488 0.4916182
##           group1     group2     group3
## group1        NA 0.97079982 0.04515770
## group2 0.9707998         NA 0.07477282
## group3 0.0451577 0.07477282         NA

##   groups      Mean    Median       Max       Min
## 1 group1 0.4897408 0.4866560 0.5086151 0.4735241
## 2 group2 0.4893977 0.4813792 0.5270083 0.4699520
## 3 group3 0.5075127 0.5030055 0.5257488 0.4916182
##           group1     group2     group3
## group1        NA 0.97079982 0.04515770
## group2 0.9707998         NA 0.07477282
## group3 0.0451577 0.07477282         NA

##   groups      Mean    Median       Max       Min
## 1 group1 0.4897408 0.4866560 0.5086151 0.4735241
## 2 group2 0.4893977 0.4813792 0.5270083 0.4699520
## 3 group3 0.5075127 0.5030055 0.5257488 0.4916182
##           group1     group2     group3
## group1        NA 0.97079982 0.04515770
## group2 0.9707998         NA 0.07477282
## group3 0.0451577 0.07477282         NA

##   groups      Mean    Median       Max       Min
## 1  ALIVE 0.4988416 0.5026087 0.5270083 0.4699520
## 2   DEAD 0.4939048 0.4923451 0.5257488 0.4735241
##           ALIVE      DEAD
## ALIVE        NA 0.5983875
## DEAD  0.5983875        NA

TCGAvisualize_starburst: Integration of gene expression and DNA methylation data

The starburst plot is proposed to combine information from two volcano plots, and is applied for a study of DNA methylation and gene expression. It first introduced in 2010 (Noushmehr et al. 2010). In order to reproduce this plot, we will use the TCGAvisualize_starburst function.

The function creates Starburst plot for comparison of DNA methylation and gene expression. The log10 (FDR-corrected P value) for DNA methylation is plotted in the x axis, and for gene expression in the y axis, for each gene. The black dashed line shows the FDR-adjusted P value of 0.01.

The arguments of this function are:

Argument Description
exp Object obtained by DEArnaSEQ function
group1 The name of the group 1 Obs: Column p.value.adj.group1.group2 should exist
group2 The name of the group 2. Obs: Column p.value.adj.group1.group2 should exist
exp.p.cut expression p value cut-off
met.p.cut methylation p value cut-off
diffmean.cut If set, the probes with diffmean higher than methylation cut-off will be highlighted in the plot. And the data frame return will be subseted.
logFC.cut If set, the probes with expression fold change higher than methylation cut-off will be highlighted in the plot. And the data frame return will be subseted.
met.platform DNA methylation platform (“27K”,“450K” or “EPIC”)
genome Genome of reference (“hg38” or “hg19”) used to identify nearest probes TSS
names Add the names of the significant genes? Default: FALSE
names.fill Names should be filled in a color box? Default: TRUE
filename The filename of the file (it can be pdf, svg, png, etc)
return.plot If true only plot object will be returned (pdf will not be created)
ylab y axis text
xlab x axis text
title main title
legend legend title
color vector of colors to be used in graph
label vector of labels to be used in graph
xlim x limits to cut image
ylim y limits to cut image
height Figure height
width Figure width
dpi Figure dpi

As a result, the function will a plot the figure below and return a matrix with the Gene_symbol and it status in relation to expression (up regulated/down regulated) and to methylation (Hyper/Hypo methylated). The case study 3, shows the complete pipeline for creating this figure.

Session Information


## R version 3.6.2 (2019-12-12)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 18.04.3 LTS
## 
## Matrix products: default
## BLAS:   /home/biocbuild/bbs-3.10-bioc/R/lib/libRblas.so
## LAPACK: /home/biocbuild/bbs-3.10-bioc/R/lib/libRlapack.so
## 
## 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] grid      parallel  stats4    stats     graphics  grDevices utils    
##  [8] datasets  methods   base     
## 
## other attached packages:
##  [1] jpeg_0.1-8.1                png_0.1-7                  
##  [3] DT_0.12                     dplyr_0.8.4                
##  [5] SummarizedExperiment_1.16.1 DelayedArray_0.12.2        
##  [7] BiocParallel_1.20.1         matrixStats_0.55.0         
##  [9] Biobase_2.46.0              GenomicRanges_1.38.0       
## [11] GenomeInfoDb_1.22.0         IRanges_2.20.2             
## [13] S4Vectors_0.24.3            BiocGenerics_0.32.0        
## [15] TCGAbiolinks_2.14.1         testthat_2.3.1             
## 
## loaded via a namespace (and not attached):
##   [1] backports_1.1.5          aroma.light_3.16.0       BiocFileCache_1.10.2    
##   [4] selectr_0.4-2            plyr_1.8.5               lazyeval_0.2.2          
##   [7] splines_3.6.2            usethis_1.5.1            ggplot2_3.2.1           
##  [10] sva_3.34.0               digest_0.6.25            foreach_1.4.8           
##  [13] htmltools_0.4.0          fansi_0.4.1              magrittr_1.5            
##  [16] memoise_1.1.0            doParallel_1.0.15        limma_3.42.2            
##  [19] remotes_2.1.1            readr_1.3.1              Biostrings_2.54.0       
##  [22] annotate_1.64.0          R.utils_2.9.2            askpass_1.1             
##  [25] prettyunits_1.1.1        colorspace_1.4-1         ggrepel_0.8.1           
##  [28] rvest_0.3.5              blob_1.2.1               rappdirs_0.3.1          
##  [31] xfun_0.12                callr_3.4.2              crayon_1.3.4            
##  [34] RCurl_1.98-1.1           jsonlite_1.6.1           genefilter_1.68.0       
##  [37] iterators_1.0.12         survival_3.1-8           zoo_1.8-7               
##  [40] glue_1.3.1               survminer_0.4.6          gtable_0.3.0            
##  [43] zlibbioc_1.32.0          XVector_0.26.0           pkgbuild_1.0.6          
##  [46] scales_1.1.0             DESeq_1.38.0             DBI_1.1.0               
##  [49] edgeR_3.28.1             ggthemes_4.2.0           Rcpp_1.0.3              
##  [52] xtable_1.8-4             progress_1.2.2           bit_1.1-15.2            
##  [55] km.ci_0.5-2              htmlwidgets_1.5.1        httr_1.4.1              
##  [58] RColorBrewer_1.1-2       ellipsis_0.3.0           farver_2.0.3            
##  [61] pkgconfig_2.0.3          XML_3.99-0.3             R.methodsS3_1.8.0       
##  [64] dbplyr_1.4.2             locfit_1.5-9.1           labeling_0.3            
##  [67] tidyselect_1.0.0         rlang_0.4.4              AnnotationDbi_1.48.0    
##  [70] munsell_0.5.0            tools_3.6.2              downloader_0.4          
##  [73] cli_2.0.1                generics_0.0.2           RSQLite_2.2.0           
##  [76] devtools_2.2.2           broom_0.5.4              evaluate_0.14           
##  [79] stringr_1.4.0            yaml_2.2.1               processx_3.4.2          
##  [82] knitr_1.28               bit64_0.9-7              fs_1.3.1                
##  [85] survMisc_0.5.5           purrr_0.3.3              EDASeq_2.20.0           
##  [88] nlme_3.1-144             R.oo_1.23.0              postlogic_0.1.0.1       
##  [91] xml2_1.2.2               biomaRt_2.42.0           compiler_3.6.2          
##  [94] rstudioapi_0.11          curl_4.3                 parsetools_0.1.1        
##  [97] ggsignif_0.6.0           tibble_2.1.3             geneplotter_1.64.0      
## [100] stringi_1.4.6            highr_0.8                ps_1.3.2                
## [103] GenomicFeatures_1.38.2   desc_1.2.0               lattice_0.20-40         
## [106] Matrix_1.2-18            KMsurv_0.1-5             vctrs_0.2.3             
## [109] purrrogress_0.1.1        pillar_1.4.3             lifecycle_0.1.0         
## [112] data.table_1.12.8        bitops_1.0-6             rtracklayer_1.46.0      
## [115] R6_2.4.1                 latticeExtra_0.6-29      hwriter_1.3.2           
## [118] ShortRead_1.44.3         gridExtra_2.3            pkgcond_0.1.0           
## [121] codetools_0.2-16         sessioninfo_1.1.1        assertthat_0.2.1        
## [124] pkgload_1.0.2            openssl_1.4.1            rprojroot_1.3-2         
## [127] withr_2.1.2              GenomicAlignments_1.22.1 Rsamtools_2.2.3         
## [130] GenomeInfoDbData_1.2.2   testextra_0.1.0.1        mgcv_1.8-31             
## [133] hms_0.5.3                tidyr_1.0.2              rmarkdown_2.1           
## [136] ggpubr_0.2.5

Noushmehr, Houtan, Daniel J Weisenberger, Kristin Diefes, Heidi S Phillips, Kanan Pujara, Benjamin P Berman, Fei Pan, et al. 2010. “Identification of a Cpg Island Methylator Phenotype That Defines a Distinct Subgroup of Glioma.” Cancer Cell 17 (5). Elsevier:510–22.