R/computeMinimalSlopes.R

Defines functions computeMinimalSlopes

computeMinimalSlopes <- function(xV, xT){
  ## Determine the minimum of the melting curve slopes estimated for Vehicle and 
  ## Treatment group for each protein.
  minSlopes <- pmin(xV, xT)
  return(minSlopes)
}
DoroChilds/TPP documentation built on Oct. 31, 2021, 4:38 a.m.