bgCorr: Background noise correction of expression data
Description
This helper function performs a background noise correction before subjecting the corrected matrix to the peakDetection
function. Genes with an expression lower than the 5
Usage
bgCorr(exprmat)
Arguments
exprmat
A numeric matrix with time-series expression data with variables as rownames.
# NOT RUN {# Example based on the heat-shock datasetdata(heat)
heat = as.matrix(heat)
# Execute the bgCorr functionexprmat_corrected <- bgCorr(heat)
# }