R/calculations.R

library(dplyr)
library(stringr)

calc_concentration <- function(qpcrdata) {
  #' Parse the text output from a Statagene qPCR machine.
  #'
  #' @param qpcrdata dataframe
  #' @return mutated dataframe
  #' @examples
  #' \dontrun{
  #' calc_concentration(df)
  #' }
}
calc_LOD <- function(qpcrdata) {
  #' Parse the text output from a Statagene qPCR machine.
  #'
  #' @param qpcrdata dataframe
  #' @return mutated dataframe
  #' @examples
  #' \dontrun{
  #' calc_concentration(df)
  #' }
}
aaronsaunders/stratRgene documentation built on May 10, 2019, 3:23 a.m.