report | R Documentation |
This generic function summarizes results from evaluation of
qa
into a report. Available report formats vary
depending on the data analysed.
report(x, ..., dest=tempfile(), type="html")
report_html(x, dest, type, ...)
x |
An object returned by |
... |
Additional arguments used by specific methods. All methods with See specific methods for details on additional |
dest |
The output destination for the final report. For
|
type |
A text string defining the type of report; available
report types depend on the type of object |
report_html
is meant for use by package authors wishing to add
methods for creating HTML reports; users should always invoke
report
.
The following methods are defined:
x="BowtieQA", ..., dest=tempfile(), type="html"
Produce an HTML-based report from an object of class
BowtieQA
.
x="FastqQA", ..., dest=tempfile(), type="html"
Produce an HTML-based report from an object of class
FastqQA
.
x="MAQMapQA", ..., dest=tempfile(), type="html"
Produce an HTML-based report from an object of class
MAQMapQA
.
x="SolexaExportQA", ..., dest=tempfile(), type="html"
Produce an HTML-based report from an object of class
SolexaExportQA
.
x="SolexaExportQA", ..., dest=tempfile(), type="pdf"
(Deprecated) Produce an PDF report from an object of class
SolexaExportQA
.
x="SolexaPath", ..., dest=tempfile(), type="html"
Produce an HTML report by first visiting all _export.txt
files in the analysisPath
directory of x
to create a
SolexaExportQA
instance.
x="SolexaPath", ..., dest=tempfile(), type="pdf"
(Deprecated) Produce an PDF report by first visiting all
_export.txt
files in the analysisPath
directory of
x
to create a SolexaExportQA
instance.
x="ANY", ..., dest=tempfile(), type="ANY"
This method is used internally
This function is invoked for its side effect; the return value is the name of the directory or file where the report was created.
Martin Morgan <mtmorgan@fhcrc.org>
SolexaExportQA
showMethods("report")
## default CSS file
cssFile <- c(QA.css=system.file("template", "QA.css",
package="ShortRead"))
noquote(readLines(cssFile))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.