Extract tables from a happy_compare
object and combine into a single
data.frame
. Appends samplesheet metadata to the original happy
results.
extract_metrics(happy_compare, table = c("summary", "extended", "pr.all", "pr.snp.all", "pr.snp.pass", "pr.snp.sel", "pr.indel.all", "pr.indel.pass", "pr.indel.sel", "build.metrics"))
happy_compare | A |
---|---|
table | Table of data to extract from each |
A data.frame
with combined information from the selected
happy_result
and its samplesheet
.
# NOT RUN { summary <- extract_metrics(happy_compare, table = 'summary') roc <- extract_metrics(happy_compare, table = 'pr.snp.pass') build_metrics <- extract_metrics(happy_compare, table = 'build.metrics') # }