Skip to content

Commit

Permalink
calculate_efficiency warning correct, fixes #80
Browse files Browse the repository at this point in the history
  • Loading branch information
ewallace committed Oct 31, 2020
1 parent 3f4c714 commit 5459d82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/calculate_efficiency.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 5459d82

Please sign in to comment.