Skip to contents

Create a report for a protein quantificaiton experiment

Usage

qp_report(qp, output_file, other = list())

Arguments

qp

Likely the output from qp AND qp_dilute.

output_file

Character. The path of the file to export, including .html

other

Generally used for Shiny application. Assumes a named list of key-values that will be used to document report parameters.

Examples

if (FALSE) {
absorbances |>
  qp() |>
  qp_dilute() |>
  qp_report(
    "~/my_report.html",
    other = list(key = "value") # Essentially metadata
  )
}