Skip to contents

Parse Plot Data from MultiQC JSON

Usage

multiqc_parse_plots(j, plot_names = NULL)

Arguments

j

Path to multiqc_data.json file.

plot_names

Names of plots to parse. Use "everything" if you wantz all the plotz.

Value

Nested tibble with plot name and result as list column (use tidyr::unnest to access).

Examples

if (FALSE) {
j <- "dracarys_gds_sync/multiqc_data.json"
multiqc_parse_plots(j, plot_names = c("dragen_coverage_per_contig"))
multiqc_parse_plots(j, plot_names = "everything")
multiqc_parse_plots(j, plot_names = NULL)
}