Nothing
pValFct_addMPdiff_and_MinSlope_Columns <- function(expNameV, expNameT, parDF){
## Helper function for p-value calculation:
## Compute melting point differences and minimal slopes, and attach to data
## frame with fitted melting curve parameters.
mpV <- parDF[, paste("meltPoint", expNameV, sep="_")]
mpT <- parDF[, paste("meltPoint", expNameT, sep="_")]
slV <- parDF[, paste("slope", expNameV, sep="_")]
slT <- parDF[, paste("slope", expNameT, sep="_")]
mpDiffs <- computeMPdiffs(xV=mpV, xT=mpT)
minSl <- computeMinimalSlopes(xV=slV, xT=slT)
## Store computed values in output table:
mpDiffDF <- data.frame(mpDiffs, stringsAsFactors=FALSE)
minSlDF <- data.frame(minSl, stringsAsFactors=FALSE)
colnames(mpDiffDF) <- paste("diff_meltP", expNameT, "vs", expNameV, sep="_")
colnames(minSlDF) <- paste("min_slope" , expNameT, "vs", expNameV, sep="_")
return(list(mpDiffs=mpDiffDF,
minSl = minSlDF))
}
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.