Usage
renderReport(regions, project = "", pvalueVars = c(`P-values` = "pval"),
densityVars = NULL, significantVar = mcols(regions)$pval <= 0.05,="" annotation="NULL," nbestregions="500," customcode="NULL," outdir="regionExploration" ,="" output="regionExploration" browse="interactive()," txdb="NULL," device="png" densitytemplates="list(Pvalue" =="" templatepvaluedensity,="" common="templateDensity," manhattan="templateManhattan)," template="NULL," theme="NULL," digits="2," ...)<="" p="">templatePvalueDensity
templateDensity
templateManhattan
templatePvalueHistogram
templateHistogram
=>
Arguments
regions
The set of genomic regions of interest as a GRanges
object. All sequence lengths must be provided.
project
The title of the project.
pvalueVars
The names of the variables with values between 0 and 1 to
plot density values by chromosome and a table for commonly used cutoffs.
Most commonly used to explore p-value distributions. If a named
character vector is provided, the names are used in the plot titles.
densityVars
The names of variables to use for making density plots
by chromosome. Commonly used to explore scores and other variables given
by region. If a named character vector is provided, the names are used in
the plot titles.
significantVar
A logical
variable differentiating statistically
significant regions from the rest. When provided, both types of regions
are compared against each other to see differences in width, location, etc.
annotation
The output from matchGenes used on
regions
. Note that this can take time for a large set of regions
so it's better to pre-compute this information and save it. nBestRegions
The number of regions to include in the interactive
table.
customCode
An absolute path to a child R Markdown file with code to be
evaluated before the reproducibility section. Its useful for users who want
to customize the report by adding conclusions derived from the data and/or
further quality checks and plots.
outdir
The name of output directory.
output
The name of output HTML file (without the html extension).
browse
If TRUE
the HTML report is opened in your browser once
it's completed.
txdb
Specify the transcription database to use for identifying the
closest genes via matchGenes. If NULL
it will
use TxDb.Hsapiens.UCSC.hg19.knownGene by default. device
The graphical device used when knitting. See more at
http://yihui.name/knitr/options (dev
argument).
densityTemplates
A list of length 3 with templates for the p-value
density plots (variables from pvalueVars
), the continuous
variables density plots (variables from densityVars
), and Manhattan
plots for the p-value variables (pvalueVars
). These templates
are processed by whisker.render. Check the default templates
for more information. The densityTemplates
argument is available for
those users interested in customizing these plots. For example, to show
histograms instead of density plots use templatePvalueHistogram
and
templateHistogram
instead of templatePvalueDensity
and
templateDensity
respectively. template
Template file to use for the report. If not provided, will
use the default file found in regionExploration/regionExploration.Rmd
within the package source.
theme
A ggplot2 theme to use for the plots made with
ggplot2. digits
The number of digits to round to in the interactive table of
the top nBestRegions
. Note that p-values and adjusted p-values won't
be rounded.
...
Arguments passed to other methods and/or advanced arguments.