From 5459d822490f3ada85943ef0e7eec612cd91c77e Mon Sep 17 00:00:00 2001 From: Edward Wallace Date: Sat, 31 Oct 2020 09:21:35 +0000 Subject: [PATCH] calculate_efficiency warning correct, fixes #80 --- R/calculate_efficiency.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/calculate_efficiency.R b/R/calculate_efficiency.R index d586b22..457d481 100644 --- a/R/calculate_efficiency.R +++ b/R/calculate_efficiency.R @@ -29,7 +29,7 @@ #' calculate_efficiency <- function(cq_df_1, formula = cq ~ log2(dilution) + biol_rep) { if (length(unique(cq_df_1$target_id)) > 1) { - warning("multiple target_ids, did you mean calculate_efficiency_plate?") + warning("multiple target_ids, did you mean calculate_efficiency_bytargetid?") } slopefit <- stats::lm(formula = formula, data = cq_df_1) slopefitsummary <- summary(slopefit)