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)
}

Try the TPP package in your browser

Any scripts or data that you put into this service are public.

TPP documentation built on Nov. 8, 2020, 5:55 p.m.