Nothing
## Compute relative expression level for realtime quantitative RT-PCR data
## x: vector containing RT-PCR data
## E: RT-PCR efficiency
## na.rm: remove NA values
relQuantPCR <- function(x, E = 2, na.rm = FALSE){
if(!is.numeric(x) && !is.complex(x) && !is.logical(x)){
warning("argument is not numeric or logical: returning NA")
return(as.numeric(NA))
}
if(na.rm) x <- x[!is.na(x)]
return(E^(min(x, na.rm = TRUE)-x))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.