startReport {RNAinteract} | R Documentation |
startReport
will open a html page and starts writing an html report for a RNAinteract screen. endReport
finishes the report and closes the html-file.
startReport(outputpath) endReport(report)
outputpath |
the path to the output directory were the report is written to. |
report |
An report object as returned by startReport or any report... function. |
~~ details ~~
startReport returns an report object. It is handed over to each report-function.
Bernd Fischer
RNAinteract-package
,
reportAnnotation
, reportStatistics
, reportGeneLists
, reportNetworks
, reportScreenData
, reportDoublePerturbation
, reportMainEffects
data("sgi") report <- startReport("report") reportAnnotation(sgi, report = report) endReport(report) # browseURL(file.path("report","index.html"))