processingStepsTable | R Documentation |
Function that creates a printable table with all steps and numbers for each of the workflow steps that were carried out.
processingStepsTable(object, option = c("reduced", "full", "extended"))
object |
a |
option |
character; how detailed the table should be |
If option
is set to 'reduced', only the most necessary information
are collected. Option 'full' contains a full list of all options and parameters
that were set in any of the workflow functions. Option 'extended' contains
extra information about the binding site merging step.
a kableExtra
table
BSFind
# load data
files <- system.file("extdata", package="BindingSiteFinder")
load(list.files(files, pattern = ".rda$", full.names = TRUE))
# apply 5% filter
bds = pureClipGlobalFilter(object = bds, cutoff = 0.05)
processingStepsTable(bds)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.