Nozzle is an R package for generation of reports in high-throughput data analysis pipelines. Nozzle reports are implemented in HTML, JavaScript, and Cascading Style Sheets (CSS), but developers do not need any knowledge of these technologies to work with Nozzle. Instead they can use a simple R API to design and implement powerful reports with advanced features such as foldable sections, zoomable figures, sortable tables, and supplementary information. Please cite our Bioinformatics paper if you are using Nozzle in your work.
Nozzle is available on CRAN and can be installed directly from the R shell.
Archived Versions
For reference only. As of version 1.0-0 Nozzle should be obtained from CRAN. Please note that the releases before 1.0-0 do not contain any documentation within the R package.
Technical Notes on Integrating Nozzle into Firehose Modules
The path to nozzle libraries can be passed into your R script using the special variable in your manifest/hydrant.deploy file: <nozzle.path> (evaluates to /xchip/tcga/Tools/Nozzle/v1.current). In other words, Firehose will take care of providing this value without the need to expose it to the task configuration (just like <libdir>).
To load the libraries in R: require("Nozzle.R1", lib.loc=nozzlePath, quietly=TRUE); Where nozzlePath is a variable passed into the R script containing <nozzle.path>.
All the resources referenced in your report must be in the top directory. For example, nesting of directories for figure image files will not display correctly in the Firehose UI.
The report must be named nozzle.html. This is the default file name produced by writeReport(myReport). However, writeReport(myReport, filename="report.html")will not work.
In some cases, use of the <R> variable in the manifest/hydrant.deploy file has caused problems. When to use <R> and when to use a direct path to Rscript is currently unclear.