Package version: derfinderPlot 1.6.3

Contents

1 Introduction to derfinderPlot

2 Overview

derfinderPlot (Collado-Torres, Jaffe, and Leek, 2015) is an addon package for derfinder (Collado-Torres, Nellore, Frazee, Wilks, et al., 2016) with functions that allow you to visualize the results.

While the functions in derfinderPlot assume you generated the data with derfinder, they can be used with other GRanges objects properly formatted.

The functions in derfinderPlot are:

3 Example

As an example, we will analyze a small subset of the samples from the BrainSpan Atlas of the Human Brain (BrainSpan, 2011) publicly available data.

We first load the required packages.

## Load libraries
suppressPackageStartupMessages(library('derfinder'))
library('derfinderData')
library('derfinderPlot')
## Warning: replacing previous import 'ggplot2::Position' by
## 'BiocGenerics::Position' when loading 'ggbio'
## For tMatrix() colors
library('grDevices')
library('RColorBrewer')

3.1 Analyze data

For this example, we created a small table with the relevant phenotype data for 12 samples: 6 from fetal samples and 6 from adult samples. We chose at random a brain region, in this case the primary auditory cortex (core) and for the example we will only look at data from chromosome 21. Other variables include the age in years and the gender. The data is shown below.

library('knitr')
## Get pheno table
pheno <- subset(brainspanPheno, structure_acronym == 'A1C')

## Display the main information
p <- pheno[, -which(colnames(pheno) %in% c('structure_acronym', 'structure_name', 'file'))]
rownames(p) <- NULL
kable(p, format = 'html', row.names = TRUE)
gender lab Age group
1 M HSB114.A1C -0.5192308 fetal
2 M HSB103.A1C -0.5192308 fetal
3 M HSB178.A1C -0.4615385 fetal
4 M HSB154.A1C -0.4615385 fetal
5 F HSB150.A1C -0.5384615 fetal
6 F HSB149.A1C -0.5192308 fetal
7 F HSB130.A1C 21.0000000 adult
8 M HSB136.A1C 23.0000000 adult
9 F HSB126.A1C 30.0000000 adult
10 M HSB145.A1C 36.0000000 adult
11 M HSB123.A1C 37.0000000 adult
12 F HSB135.A1C 40.0000000 adult

We can load the data from derfinderData (Collado-Torres, Jaffe, and Leek, 2015) by first identifying the paths to the BigWig files with derfinder::rawFiles() and then loading the data with derfinder::fullCoverage().

## Determine the files to use and fix the names
files <- rawFiles(system.file('extdata', 'A1C', package = 'derfinderData'), samplepatt = 'bw', fileterm = NULL)
names(files) <- gsub('.bw', '', names(files))

## Load the data from disk
system.time(fullCov <- fullCoverage(files = files, chrs = 'chr21'))
## 2016-05-15 21:54:19 fullCoverage: processing chromosome chr21
## 2016-05-15 21:54:19 loadCoverage: finding chromosome lengths
## 2016-05-15 21:54:19 loadCoverage: loading BigWig file /home/biocbuild/bbs-3.3-bioc/R/library/derfinderData/extdata/A1C/HSB103.bw
## 2016-05-15 21:54:19 loadCoverage: loading BigWig file /home/biocbuild/bbs-3.3-bioc/R/library/derfinderData/extdata/A1C/HSB114.bw
## 2016-05-15 21:54:19 loadCoverage: loading BigWig file /home/biocbuild/bbs-3.3-bioc/R/library/derfinderData/extdata/A1C/HSB123.bw
## 2016-05-15 21:54:19 loadCoverage: loading BigWig file /home/biocbuild/bbs-3.3-bioc/R/library/derfinderData/extdata/A1C/HSB126.bw
## 2016-05-15 21:54:20 loadCoverage: loading BigWig file /home/biocbuild/bbs-3.3-bioc/R/library/derfinderData/extdata/A1C/HSB130.bw
## 2016-05-15 21:54:20 loadCoverage: loading BigWig file /home/biocbuild/bbs-3.3-bioc/R/library/derfinderData/extdata/A1C/HSB135.bw
## 2016-05-15 21:54:20 loadCoverage: loading BigWig file /home/biocbuild/bbs-3.3-bioc/R/library/derfinderData/extdata/A1C/HSB136.bw
## 2016-05-15 21:54:20 loadCoverage: loading BigWig file /home/biocbuild/bbs-3.3-bioc/R/library/derfinderData/extdata/A1C/HSB145.bw
## 2016-05-15 21:54:20 loadCoverage: loading BigWig file /home/biocbuild/bbs-3.3-bioc/R/library/derfinderData/extdata/A1C/HSB149.bw
## 2016-05-15 21:54:21 loadCoverage: loading BigWig file /home/biocbuild/bbs-3.3-bioc/R/library/derfinderData/extdata/A1C/HSB150.bw
## 2016-05-15 21:54:21 loadCoverage: loading BigWig file /home/biocbuild/bbs-3.3-bioc/R/library/derfinderData/extdata/A1C/HSB154.bw
## 2016-05-15 21:54:21 loadCoverage: loading BigWig file /home/biocbuild/bbs-3.3-bioc/R/library/derfinderData/extdata/A1C/HSB178.bw
## 2016-05-15 21:54:21 loadCoverage: applying the cutoff to the merged data
## 2016-05-15 21:54:21 filterData: originally there were 48129895 rows, now there are 48129895 rows. Meaning that 0 percent was filtered.
##    user  system elapsed 
##   2.487   0.048   2.578

Alternatively, since the BigWig files are publicly available from BrainSpan (see here), we can extract the relevant coverage data using derfinder::fullCoverage(). Note that as of rtracklayer 1.25.16 BigWig files are not supported on Windows: you can find the fullCov object inside derfinderData to follow the examples.

## Determine the files to use and fix the names
files <- pheno$file
names(files) <- gsub('.A1C', '', pheno$lab)

## Load the data from the web
system.time(fullCov <- fullCoverage(files = files, chrs = 'chr21'))

Once we have the base-level coverage data for all 12 samples, we can construct the models. In this case, we want to find differences between fetal and adult samples while adjusting for gender and a proxy of the library size.

## Get some idea of the library sizes
sampleDepths <- sampleDepth(collapseFullCoverage(fullCov), 1)
## 2016-05-15 21:54:21 sampleDepth: Calculating sample quantiles
## 2016-05-15 21:54:22 sampleDepth: Calculating sample adjustments
## Define models
models <- makeModels(sampleDepths, testvars = pheno$group, adjustvars = pheno[, c('gender')])

Next, we can find candidate differentially expressed regions (DERs) using as input the segments of the genome where at least one sample has coverage greater than 3. In this particular example, we chose a low theoretical F-statistic cutoff and used 20 permutations.

## Filter coverage
filteredCov <- lapply(fullCov, filterData, cutoff = 3)
## 2016-05-15 21:54:23 filterData: originally there were 48129895 rows, now there are 90023 rows. Meaning that 99.81 percent was filtered.
## Perform differential expression analysis
suppressPackageStartupMessages(library('bumphunter'))
system.time(results <- analyzeChr(chr = 'chr21', filteredCov$chr21, models, groupInfo = pheno$group, writeOutput = FALSE, cutoffFstat = 5e-02, nPermute = 20, seeds = 20140923 + seq_len(20)))
## 2016-05-15 21:54:24 analyzeChr: Pre-processing the coverage data
## 2016-05-15 21:54:26 analyzeChr: Calculating statistics
## 2016-05-15 21:54:26 calculateStats: calculating the F-statistics
## 2016-05-15 21:54:27 analyzeChr: Calculating pvalues
## 2016-05-15 21:54:27 analyzeChr: Using the following theoretical cutoff for the F-statistics 5.31765507157871
## 2016-05-15 21:54:27 calculatePvalues: identifying data segments
## 2016-05-15 21:54:27 findRegions: segmenting information
## 2016-05-15 21:54:27 findRegions: identifying candidate regions
## 2016-05-15 21:54:27 findRegions: identifying region clusters
## 2016-05-15 21:54:27 calculatePvalues: calculating F-statistics for permutation 1 and seed 20140924
## 2016-05-15 21:54:27 findRegions: segmenting information
## 2016-05-15 21:54:27 findRegions: identifying candidate regions
## 2016-05-15 21:54:27 calculatePvalues: calculating F-statistics for permutation 2 and seed 20140925
## 2016-05-15 21:54:27 findRegions: segmenting information
## 2016-05-15 21:54:27 findRegions: identifying candidate regions
## 2016-05-15 21:54:28 calculatePvalues: calculating F-statistics for permutation 3 and seed 20140926
## 2016-05-15 21:54:28 findRegions: segmenting information
## 2016-05-15 21:54:28 findRegions: identifying candidate regions
## 2016-05-15 21:54:28 calculatePvalues: calculating F-statistics for permutation 4 and seed 20140927
## 2016-05-15 21:54:28 findRegions: segmenting information
## 2016-05-15 21:54:28 findRegions: identifying candidate regions
## 2016-05-15 21:54:28 calculatePvalues: calculating F-statistics for permutation 5 and seed 20140928
## 2016-05-15 21:54:28 findRegions: segmenting information
## 2016-05-15 21:54:28 findRegions: identifying candidate regions
## 2016-05-15 21:54:28 calculatePvalues: calculating F-statistics for permutation 6 and seed 20140929
## 2016-05-15 21:54:28 findRegions: segmenting information
## 2016-05-15 21:54:28 findRegions: identifying candidate regions
## 2016-05-15 21:54:28 calculatePvalues: calculating F-statistics for permutation 7 and seed 20140930
## 2016-05-15 21:54:29 findRegions: segmenting information
## 2016-05-15 21:54:29 findRegions: identifying candidate regions
## 2016-05-15 21:54:29 calculatePvalues: calculating F-statistics for permutation 8 and seed 20140931
## 2016-05-15 21:54:29 findRegions: segmenting information
## 2016-05-15 21:54:29 findRegions: identifying candidate regions
## 2016-05-15 21:54:29 calculatePvalues: calculating F-statistics for permutation 9 and seed 20140932
## 2016-05-15 21:54:29 findRegions: segmenting information
## 2016-05-15 21:54:29 findRegions: identifying candidate regions
## 2016-05-15 21:54:29 calculatePvalues: calculating F-statistics for permutation 10 and seed 20140933
## 2016-05-15 21:54:29 findRegions: segmenting information
## 2016-05-15 21:54:29 findRegions: identifying candidate regions
## 2016-05-15 21:54:29 calculatePvalues: calculating F-statistics for permutation 11 and seed 20140934
## 2016-05-15 21:54:29 findRegions: segmenting information
## 2016-05-15 21:54:30 findRegions: identifying candidate regions
## 2016-05-15 21:54:30 calculatePvalues: calculating F-statistics for permutation 12 and seed 20140935
## 2016-05-15 21:54:30 findRegions: segmenting information
## 2016-05-15 21:54:30 findRegions: identifying candidate regions
## 2016-05-15 21:54:30 calculatePvalues: calculating F-statistics for permutation 13 and seed 20140936
## 2016-05-15 21:54:30 findRegions: segmenting information
## 2016-05-15 21:54:30 findRegions: identifying candidate regions
## 2016-05-15 21:54:30 calculatePvalues: calculating F-statistics for permutation 14 and seed 20140937
## 2016-05-15 21:54:30 findRegions: segmenting information
## 2016-05-15 21:54:30 findRegions: identifying candidate regions
## 2016-05-15 21:54:31 calculatePvalues: calculating F-statistics for permutation 15 and seed 20140938
## 2016-05-15 21:54:31 findRegions: segmenting information
## 2016-05-15 21:54:31 findRegions: identifying candidate regions
## 2016-05-15 21:54:31 calculatePvalues: calculating F-statistics for permutation 16 and seed 20140939
## 2016-05-15 21:54:31 findRegions: segmenting information
## 2016-05-15 21:54:31 findRegions: identifying candidate regions
## 2016-05-15 21:54:31 calculatePvalues: calculating F-statistics for permutation 17 and seed 20140940
## 2016-05-15 21:54:31 findRegions: segmenting information
## 2016-05-15 21:54:31 findRegions: identifying candidate regions
## 2016-05-15 21:54:31 calculatePvalues: calculating F-statistics for permutation 18 and seed 20140941
## 2016-05-15 21:54:31 findRegions: segmenting information
## 2016-05-15 21:54:31 findRegions: identifying candidate regions
## 2016-05-15 21:54:31 calculatePvalues: calculating F-statistics for permutation 19 and seed 20140942
## 2016-05-15 21:54:32 findRegions: segmenting information
## 2016-05-15 21:54:32 findRegions: identifying candidate regions
## 2016-05-15 21:54:32 calculatePvalues: calculating F-statistics for permutation 20 and seed 20140943
## 2016-05-15 21:54:32 findRegions: segmenting information
## 2016-05-15 21:54:32 findRegions: identifying candidate regions
## 2016-05-15 21:54:32 calculatePvalues: calculating the p-values
## 2016-05-15 21:54:32 analyzeChr: Annotating regions
## Warning:   Calling species() on a TxDb object is *deprecated*.
##   Please use organism() instead.
## No annotationPackage supplied. Trying org.Hs.eg.db.
## Loading required package: org.Hs.eg.db
## Loading required package: AnnotationDbi
## Loading required package: Biobase
## Welcome to Bioconductor
## 
##     Vignettes contain introductory material; view with
##     'browseVignettes()'. To cite Bioconductor, see
##     'citation("Biobase")', and for packages 'citation("pkgname")'.
## 
## Getting TSS and TSE.
## Getting CSS and CSE.
## Getting exons.
## Annotating genes.
## ...
##    user  system elapsed 
##  47.710   0.400  48.082
## Quick access to the results
regions <- results$regions$regions

## Annotation database to use
suppressPackageStartupMessages(library('TxDb.Hsapiens.UCSC.hg19.knownGene'))
txdb <- TxDb.Hsapiens.UCSC.hg19.knownGene

3.2 plotOverview()

Now that we have obtained the main results using derfinder, we can proceed to visualizing the results using derfinderPlot. The easiest to use of all the functions is plotOverview() which takes a set of regions and annotation information produced by bumphunter::annotateNearest().

The plot below shows the candidate DERs colored by whether their q-value was less than 0.10 or not.

## Q-values overview
plotOverview(regions = regions, annotation = results$annotation, type = 'qval')
## 2016-05-15 21:55:12 plotOverview: assigning chromosome lengths from hg19!!!
## Scale for 'x' is already present. Adding another scale for 'x', which
## will replace the existing scale.
## Scale for 'x' is already present. Adding another scale for 'x', which
## will replace the existing scale.

The next plot shows the candidate DERs colored by the type of gene feature they are nearest too.

## Annotation overview
plotOverview(regions = regions, annotation = results$annotation, type = 'annotation')
## 2016-05-15 21:55:13 plotOverview: assigning chromosome lengths from hg19!!!
## Scale for 'x' is already present. Adding another scale for 'x', which
## will replace the existing scale.

In this particular example, because we are only using data from one chromosome the above plot is not as informative as in a real case scenario. However, with this plot we can quickly observe that nearly all of the candidate DERs are inside an exon.

3.3 plotRegionCoverage()

The complete opposite of visualizing the candidate DERs at the genome-level is to visualize them one region at a time. plotRegionCoverage() allows us to do this quickly for a large number of regions.

Before using this function, we need to process more detailed information using two derfinder functions: annotateRegions() and getRegionCoverage() as shown below.

## Get required information for the plots
annoRegs <- annotateRegions(regions, genomicState$fullGenome)
## 2016-05-15 21:55:13 annotateRegions: counting
## 2016-05-15 21:55:14 annotateRegions: annotating
regionCov <- getRegionCoverage(fullCov, regions)
## 2016-05-15 21:55:14 getRegionCoverage: processing chr21
## 2016-05-15 21:55:14 getRegionCoverage: done processing chr21

Once we have the relevant information we can proceed to plotting the first 10 regions. In this case, we will supply plotRegionCoverage() with the information it needs to plot transcripts overlapping these 10 regions.

## Plot top 10 regions
plotRegionCoverage(regions = regions, regionCoverage = regionCov, 
    groupInfo = pheno$group, nearestAnnotation = results$annotation, 
    annotatedRegions = annoRegs, whichRegions=1:10, txdb = txdb, scalefac = 1, ask = FALSE)
## 2016-05-15 21:55:14 plotRegionCoverage: extracting Tx info
## 2016-05-15 21:55:17 plotRegionCoverage: getting Tx plot info

The base-level coverage is shown in a log2 scale with any overlapping exons shown in dark blue and known introns in light blue.

3.4 plotCluster()

In this example, we noticed with the plotRegionCoverage() plots that most of the candidate DERs are contained in known exons. Sometimes, the signal might be low or we might have used very stringent cutoffs in the derfinder analysis. One way we can observe this is by plotting clusters of regions where a cluster is defined as regions within 300 bp (default option) of each other.

To visualize the clusters, we can use plotCluster() which takes similar input to plotOverview() with the notable addition of the coverage information as well as the idx argument. This argument specifies which region to focus on: it will be plotted with a red bar and will determine the cluster to display.

In the plot below we observe one large candidate DER with other nearby ones that do not have a q-value less than 0.10. In a real analysis, we would probably discard this region as the coverage is fairly low.

## First cluster
plotCluster(idx = 1, regions = regions, annotation = results$annotation, coverageInfo = fullCov$chr21, txdb = txdb, groupInfo = pheno$group, titleUse = 'pval')
## Parsing transcripts...
## Parsing exons...
## Parsing cds...
## Parsing utrs...
## ------exons...
## ------cdss...
## ------introns...
## ------utr...
## aggregating...
## Done
## Constructing graphics...

The second cluster shows a larger number of potential DERs (again without q-values less than 0.10) in a segment of the genome where the coverage data is highly variable. This is a common occurrence with RNA-seq data.

## Second cluster
plotCluster(idx = 2, regions = regions, annotation = results$annotation, coverageInfo = fullCov$chr21, txdb = txdb, groupInfo = pheno$group, titleUse = 'pval')
## Parsing transcripts...
## Parsing exons...
## Parsing cds...
## Parsing utrs...
## ------exons...
## ------cdss...
## ------introns...
## ------utr...
## aggregating...
## Done
## Constructing graphics...

These plots show an ideogram which helps quickly identify which region of the genome we are focusing on. Then, the base-level coverage information for each sample is displayed in log2. Next, the coverage group means are shown in the log2 scale. The plot is completed with the potential and candidate DERs as well as any known transcripts.

3.5 vennRegions

derfinder has functions for annotating regions given their genomic state. A typical visualization is to then view how many regions overlap known exons, introns, intergenic regions, none of them or several of these groups in a venn diagram. The function vennRegions() makes this plot using the output from derfinder::annotateRegions() as shown below.

## Make venn diagram
venn <- vennRegions(annoRegs)

## It returns the actual venn counts information
venn
##   exon intergenic intron Counts
## 1    0          0      0      0
## 2    0          0      1      2
## 3    0          1      0      4
## 4    0          1      1      0
## 5    1          0      0    259
## 6    1          0      1     35
## 7    1          1      0      0
## 8    1          1      1      0
## attr(,"class")
## [1] "VennCounts"

4 Advanced arguments

If you are interested in using the advanced arguments, use derfinder::advancedArg() as shown below:

## URLs to advanced arguemtns
sapply(c('plotCluster', 'plotOverview'), derfinder::advancedArg, package = 'derfinderPlot', browse = FALSE)
##                                                                                                                                 plotCluster 
##  "https://github.com/search?utf8=%E2%9C%93&q=advanced_argument+filename%3Acluster+repo%3Alcolladotor%2FderfinderPlot+path%3A%2FR&type=Code" 
##                                                                                                                                plotOverview 
## "https://github.com/search?utf8=%E2%9C%93&q=advanced_argument+filename%3Aoverview+repo%3Alcolladotor%2FderfinderPlot+path%3A%2FR&type=Code"
## Set browse = TRUE if you want to open them in your browser

5 Reproducibility

This package was made possible thanks to:

Code for creating the vignette

## Create the vignette
library('rmarkdown')
system.time(render('derfinderPlot.Rmd', 'BiocStyle::html_document'))

## Extract the R code
library('knitr')
knit('derfinderPlot.Rmd', tangle = TRUE)
## Clean up
unlink('chr21', recursive = TRUE)
file.remove('derfinderPlotRef.bib')
## [1] TRUE

Date the vignette was generated.

## [1] "2016-05-15 21:55:43 PDT"

Wallclock time spent generating the vignette.

## Time difference of 1.593 mins

R session information.

## Session info -----------------------------------------------------------------------------------------------------------
##  setting  value                       
##  version  R version 3.3.0 (2016-05-03)
##  system   x86_64, linux-gnu           
##  ui       X11                         
##  language en_US:                      
##  collate  C                           
##  tz       <NA>                        
##  date     2016-05-15
## Packages ---------------------------------------------------------------------------------------------------------------
##  package                           * version    date       source                          
##  AnnotationDbi                     * 1.34.2     2016-05-16 Bioconductor                    
##  AnnotationHub                       2.4.2      2016-05-16 Bioconductor                    
##  BSgenome                            1.40.0     2016-05-16 Bioconductor                    
##  Biobase                           * 2.32.0     2016-05-16 Bioconductor                    
##  BiocGenerics                      * 0.18.0     2016-05-16 Bioconductor                    
##  BiocInstaller                       1.22.2     2016-05-16 Bioconductor                    
##  BiocParallel                        1.6.2      2016-05-16 Bioconductor                    
##  BiocStyle                         * 2.0.2      2016-05-16 Bioconductor                    
##  Biostrings                          2.40.0     2016-05-16 Bioconductor                    
##  DBI                                 0.4-1      2016-05-08 CRAN (R 3.3.0)                  
##  Formula                             1.2-1      2015-04-07 CRAN (R 3.3.0)                  
##  GGally                              1.0.1      2016-01-14 CRAN (R 3.3.0)                  
##  GenomeInfoDb                      * 1.8.2      2016-05-16 Bioconductor                    
##  GenomicAlignments                   1.8.0      2016-05-16 Bioconductor                    
##  GenomicFeatures                   * 1.24.2     2016-05-16 Bioconductor                    
##  GenomicFiles                        1.8.0      2016-05-16 Bioconductor                    
##  GenomicRanges                     * 1.24.0     2016-05-16 Bioconductor                    
##  Hmisc                               3.17-4     2016-05-02 CRAN (R 3.3.0)                  
##  IRanges                           * 2.6.0      2016-05-16 Bioconductor                    
##  Matrix                              1.2-6      2016-05-02 CRAN (R 3.3.0)                  
##  OrganismDbi                         1.14.0     2016-05-16 Bioconductor                    
##  R6                                  2.1.2      2016-01-26 CRAN (R 3.3.0)                  
##  RBGL                                1.48.0     2016-05-16 Bioconductor                    
##  RColorBrewer                      * 1.1-2      2014-12-07 CRAN (R 3.3.0)                  
##  RCurl                               1.95-4.8   2016-03-01 CRAN (R 3.3.0)                  
##  RJSONIO                             1.3-0      2014-07-28 CRAN (R 3.3.0)                  
##  RSQLite                             1.0.0      2014-10-25 CRAN (R 3.3.0)                  
##  Rcpp                                0.12.5     2016-05-14 CRAN (R 3.3.0)                  
##  RefManageR                          0.10.13    2016-04-04 CRAN (R 3.3.0)                  
##  Rsamtools                           1.24.0     2016-05-16 Bioconductor                    
##  S4Vectors                         * 0.10.0     2016-05-16 Bioconductor                    
##  SummarizedExperiment                1.2.2      2016-05-16 Bioconductor                    
##  TxDb.Hsapiens.UCSC.hg19.knownGene * 3.2.2      2016-05-04 Bioconductor                    
##  VariantAnnotation                   1.18.1     2016-05-16 Bioconductor                    
##  XML                                 3.98-1.4   2016-03-01 CRAN (R 3.3.0)                  
##  XVector                             0.12.0     2016-05-16 Bioconductor                    
##  acepack                             1.3-3.3    2014-11-24 CRAN (R 3.3.0)                  
##  bibtex                              0.4.0      2014-12-31 CRAN (R 3.3.0)                  
##  biomaRt                             2.28.0     2016-05-16 Bioconductor                    
##  biovizBase                          1.20.0     2016-05-16 Bioconductor                    
##  bitops                              1.0-6      2013-08-17 CRAN (R 3.3.0)                  
##  bumphunter                        * 1.12.0     2016-05-16 Bioconductor                    
##  chron                               2.3-47     2015-06-24 CRAN (R 3.3.0)                  
##  cluster                             2.0.4      2016-04-18 CRAN (R 3.3.0)                  
##  codetools                           0.2-14     2015-07-15 CRAN (R 3.3.0)                  
##  colorspace                          1.2-6      2015-03-11 CRAN (R 3.3.0)                  
##  data.table                          1.9.6      2015-09-19 CRAN (R 3.3.0)                  
##  derfinder                         * 1.6.4      2016-05-16 Bioconductor                    
##  derfinderData                     * 0.106.0    2016-05-08 Bioconductor                    
##  derfinderHelper                     1.6.3      2016-05-16 Bioconductor                    
##  derfinderPlot                     * 1.6.3      2016-05-16 Bioconductor                    
##  devtools                          * 1.11.1     2016-04-21 CRAN (R 3.3.0)                  
##  dichromat                           2.0-0      2013-01-24 CRAN (R 3.3.0)                  
##  digest                              0.6.9      2016-01-08 CRAN (R 3.3.0)                  
##  doRNG                               1.6        2014-03-07 CRAN (R 3.3.0)                  
##  ensembldb                           1.4.2      2016-05-16 Bioconductor                    
##  evaluate                            0.9        2016-04-29 CRAN (R 3.3.0)                  
##  foreach                           * 1.4.3      2015-10-13 CRAN (R 3.3.0)                  
##  foreign                             0.8-66     2015-08-19 CRAN (R 3.3.0)                  
##  formatR                             1.4        2016-05-09 CRAN (R 3.3.0)                  
##  ggbio                               1.20.1     2016-05-16 Bioconductor                    
##  ggplot2                             2.1.0      2016-03-01 CRAN (R 3.3.0)                  
##  graph                               1.50.0     2016-05-16 Bioconductor                    
##  gridExtra                           2.2.1      2016-02-29 CRAN (R 3.3.0)                  
##  gtable                              0.2.0      2016-02-26 CRAN (R 3.3.0)                  
##  highr                               0.6        2016-05-09 CRAN (R 3.3.0)                  
##  htmltools                           0.3.5      2016-03-21 CRAN (R 3.3.0)                  
##  httpuv                              1.3.3      2015-08-04 CRAN (R 3.3.0)                  
##  httr                                1.1.0      2016-01-28 CRAN (R 3.3.0)                  
##  interactiveDisplayBase              1.10.3     2016-05-16 Bioconductor                    
##  iterators                         * 1.0.8      2015-10-13 CRAN (R 3.3.0)                  
##  knitcitations                     * 1.0.7      2015-10-28 CRAN (R 3.3.0)                  
##  knitr                             * 1.13       2016-05-09 CRAN (R 3.3.0)                  
##  labeling                            0.3        2014-08-23 CRAN (R 3.3.0)                  
##  lattice                             0.20-33    2015-07-14 CRAN (R 3.3.0)                  
##  latticeExtra                        0.6-28     2016-02-09 CRAN (R 3.3.0)                  
##  limma                               3.28.4     2016-05-16 Bioconductor                    
##  locfit                            * 1.5-9.1    2013-04-20 CRAN (R 3.3.0)                  
##  lubridate                           1.5.6      2016-04-06 CRAN (R 3.3.0)                  
##  magrittr                            1.5        2014-11-22 CRAN (R 3.3.0)                  
##  matrixStats                         0.50.2     2016-04-24 CRAN (R 3.3.0)                  
##  memoise                             1.0.0      2016-01-29 CRAN (R 3.3.0)                  
##  mime                                0.4        2015-09-03 CRAN (R 3.3.0)                  
##  munsell                             0.4.3      2016-02-13 CRAN (R 3.3.0)                  
##  nnet                                7.3-12     2016-02-02 CRAN (R 3.3.0)                  
##  org.Hs.eg.db                      * 3.3.0      2016-05-04 Bioconductor                    
##  pkgmaker                            0.22       2014-05-14 CRAN (R 3.3.0)                  
##  plyr                                1.8.3      2015-06-12 CRAN (R 3.3.0)                  
##  qvalue                              2.4.2      2016-05-16 Bioconductor                    
##  registry                            0.3        2015-07-08 CRAN (R 3.3.0)                  
##  reshape                             0.8.5      2014-04-23 CRAN (R 3.3.0)                  
##  reshape2                            1.4.1      2014-12-06 CRAN (R 3.3.0)                  
##  rmarkdown                           0.9.6      2016-05-01 CRAN (R 3.3.0)                  
##  rngtools                            1.2.4      2014-03-06 CRAN (R 3.3.0)                  
##  rpart                               4.1-10     2015-06-29 CRAN (R 3.3.0)                  
##  rtracklayer                         1.32.0     2016-05-16 Bioconductor                    
##  scales                              0.4.0      2016-02-26 CRAN (R 3.3.0)                  
##  shiny                               0.13.2     2016-03-28 CRAN (R 3.3.0)                  
##  stringi                             1.0-1      2015-10-22 CRAN (R 3.3.0)                  
##  stringr                             1.0.0      2015-04-30 CRAN (R 3.3.0)                  
##  survival                            2.39-4     2016-05-11 CRAN (R 3.3.0)                  
##  withr                               1.0.1.9000 2016-05-05 Github (jimhester/withr@bd42181)
##  xtable                              1.8-2      2016-02-05 CRAN (R 3.3.0)                  
##  yaml                                2.1.13     2014-06-12 CRAN (R 3.3.0)                  
##  zlibbioc                            1.18.0     2016-05-16 Bioconductor

6 Bibliography

This vignette was generated using BiocStyle (Morgan, Oleś, and Huber, 2015) with knitr (Xie, 2014) and rmarkdown (Allaire, Cheng, Xie, McPherson, et al., 2016) running behind the scenes.

Citations made with knitcitations (Boettiger, 2015).

[1] J. Allaire, J. Cheng, Y. Xie, J. McPherson, et al. rmarkdown: Dynamic Documents for R. R package version 0.9.6. 2016. URL: https://CRAN.R-project.org/package=rmarkdown.

[2] S. Arora, M. Morgan, M. Carlson and H. Pages. “GenomeInfoDb: Utilities for manipulating chromosome and other ‘seqname’ identifiers”. R package version 1.7.3. 2015.

[3] C. Boettiger. knitcitations: Citations for ‘Knitr’ Markdown Files. R package version 1.0.7. 2015. URL: https://CRAN.R-project.org/package=knitcitations.

[4] BrainSpan. “Atlas of the Developing Human Brain [Internet]. Funded by ARRA Awards 1RC2MH089921-01, 1RC2MH090047-01, and 1RC2MH089929-01.” 2011. URL: http://developinghumanbrain.org.

[5] M. Carlson and B. P. Maintainer. “TxDb.Hsapiens.UCSC.hg19.knownGene: Annotation package for TxDb object(s)”. R package version 3.2.2. 2015.

[6] L. Collado-Torres, A. E. Jaffe and J. T. Leek. derfinderPlot: Plotting functions for derfinder. https://github.com/leekgroup/derfinderPlot - R package version 1.6.3. 2015. URL: http://www.bioconductor.org/packages/derfinderPlot.

[7] L. Collado-Torres, A. Jaffe and J. Leek. derfinderData: Processed BigWigs from BrainSpan for examples. R package version 0.106.0. 2015. URL: https://github.com/lcolladotor/derfinderData.

[8] L. Collado-Torres, A. Nellore, A. C. Frazee, C. Wilks, et al. “Flexible expressed region analysis for RNA-seq with derfinder”. In: bioRxiv (2016). DOI: 10.1101/015370. URL: http://biorxiv.org/content/early/2016/05/07/015370.

[9] A. E. Jaffe, P. Murakami, H. Lee, J. T. Leek, et al. “Bump hunting to identify differentially methylated regions in epigenetic epidemiology studies”. In: International journal of epidemiology 41.1 (2012), pp. 200–209. DOI: 10.1093/ije/dyr238.

[10] A. E. Jaffe, P. Murakami, H. Lee, J. T. Leek, et al. “Bump hunting to identify differentially methylated regions in epigenetic epidemiology studies”. In: International Journal of Epidemiology (2012).

[11] M. Lawrence, W. Huber, H. Pagès, P. Aboyoun, et al. “Software for Computing and Annotating Genomic Ranges”. In: PLoS Computational Biology 9 (8 2013). DOI: 10.1371/journal.pcbi.1003118. URL: http://www.ploscompbiol.org/article/info%3Adoi%2F10.1371%2Fjournal.pcbi.1003118}.

[12] M. Morgan, A. Oleś and W. Huber. “BiocStyle: Standard styles for vignettes and other Bioconductor documents”. R package version 1.8.0. 2015.

[13] E. Neuwirth. RColorBrewer: ColorBrewer Palettes. R package version 1.1-2. 2014. URL: https://CRAN.R-project.org/package=RColorBrewer.

[14] R Core Team. R: A Language and Environment for Statistical Computing. R Foundation for Statistical Computing. Vienna, Austria, 2016. URL: https://www.R-project.org/.

[15] H. Wickham. “Reshaping Data with the reshape Package”. In: Journal of Statistical Software 21.12 (2007), pp. 1–20. URL: http://www.jstatsoft.org/v21/i12/.

[16] H. Wickham. “The Split-Apply-Combine Strategy for Data Analysis”. In: Journal of Statistical Software 40.1 (2011), pp. 1–29. URL: http://www.jstatsoft.org/v40/i01/.

[17] H. Wickham. ggplot2: Elegant Graphics for Data Analysis. Springer-Verlag New York, 2009. ISBN: 978-0-387-98140-6. URL: http://ggplot2.org.

[18] H. Wickham. scales: Scale Functions for Visualization. R package version 0.4.0. 2016. URL: https://CRAN.R-project.org/package=scales.

[19] H. Wickham. “testthat: Get Started with Testing”. In: The R Journal 3 (2011), pp. 5–10. URL: http://journal.r-project.org/archive/2011-1/RJournal_2011-1_Wickham.pdf.

[20] H. Wickham and W. Chang. devtools: Tools to Make Developing R Packages Easier. R package version 1.11.1. 2016. URL: https://CRAN.R-project.org/package=devtools.

[21] Y. Xie. “knitr: A Comprehensive Tool for Reproducible Research in R”. In: Implementing Reproducible Computational Research. Ed. by V. Stodden, F. Leisch and R. D. Peng. ISBN 978-1466561595. Chapman and Hall/CRC, 2014. URL: http://www.crcpress.com/product/isbn/9781466561595.

[22] T. Yin, D. Cook and M. Lawrence. “ggbio: an R package for extending the grammar of graphics for genomic data”. In: Genome Biology 13.8 (2012), p. R77.

[23] T. Yin, M. Lawrence and D. Cook. “biovizBase: Basic graphic utilities for visualization of genomic data.” R package version 1.19.0. 2015.