createReport_exploratory-DsATAC-method.Rd
Create a report summarizing exploratory analyses of an accessibility dataset
# S4 method for DsATAC
createReport_exploratory(
.object,
reportDir,
chromVarObj = NULL,
itLsiObj = NULL,
geneActSe = NULL
)
DsATAC
object
directory in which the report will be created
[optional] pre-computed result of a call to run_atac_chromvar(...)
[for single-cell only; optional] pre-computed result of a call to iterativeLSI(.object, ...)
[for single-cell only; optional] pre-computed result of a call to getCiceroGeneActivities(.object, ...)
(invisible) muReportR::Report
object containing the report
if (FALSE) {
dsa <- ChrAccRex::loadExample("dsAtac_ia_example")
dsa_qnorm <- transformCounts(dsa, method="quantile")
setConfigElement("annotationColumns", c("cellType", "donor", "stimulus"))
setConfigElement("regionTypes", setdiff(getRegionTypes(dsa), c("promoters_gc_protein_coding", "t10k")))
reportDir <- file.path(".", "ChrAccR_reports")
createReport_exploratory(dsa_qnorm, reportDir)
}