Skip to content

Commit

Permalink
get target conc and vol after summary
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiAragaki committed Apr 16, 2024
1 parent c717b13 commit 953a1f1
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions R/qp_report.R
Original file line number Diff line number Diff line change
Expand Up @@ -254,13 +254,18 @@ dil_summary <- function(qp) {
target_conc <- qp$.target_conc
target_vol <- qp$.target_vol

qp |>
qp <- qp |>
dplyr::summarize(
.by = c(
".sample_name", ".pred_conc_mean", ".target_conc",
".target_vol", "sample_type"
)
) |>
)

target_conc <- qp$.target_conc
target_vol <- qp$.target_vol

qp |>
qp_dilute(
target_conc = target_conc,
target_vol = target_vol
Expand Down

0 comments on commit 953a1f1

Please sign in to comment.