Nothing
#######################################################
# replaceNAs - this replaces all NAs with a set number
setMethod("replaceNAs", signature = "qPCRBatch", definition =
function(qPCRBatch, newNA) {
exprs(qPCRBatch)[is.na(exprs(qPCRBatch))] <- newNA
return(qPCRBatch)
}
)
###############################################################################################
# replaceAboveCutOff - this replaces anything above a given number with a (supplied) new value
setMethod("replaceAboveCutOff", signature = "qPCRBatch", definition =
function(qPCRBatch, newVal = NA, cutOff = 38) {
exprs(qPCRBatch)[exprs(qPCRBatch) > cutOff] <- newVal
return(qPCRBatch)
}
)
################################################################################################################
# makeAllNAs - for each detector, if you have > a given number of NAs, then all values are all replaced with NA
# This means we can ignore any NAs in future calculations (since they can be dealt with using these functions
setMethod("makeAllNAs", signature = "qPCRBatch", definition =
function(qPCRBatch, contrastM, sampleMaxM) {
expM <- exprs(qPCRBatch)
for (detector in featureNames(qPCRBatch)) {
for(phenotype in colnames(sampleMaxM)) {
pColumns <- row.names(contrastM)[contrastM[,phenotype] == 1]
if(sum(is.na(expM[detector,pColumns])) >= sampleMaxM[,phenotype]) expM[detector,pColumns] <- NA
}
}
exprs(qPCRBatch) <- expM
return(qPCRBatch)
}
)
###################################################################################################
# for each detector, if you have > a given number of NAs, then all values are all replaced with
# a given value. Done for case and control
setMethod("makeAllNewVal", signature = "qPCRBatch", definition =
function(qPCRBatch, contrastM, sampleMaxM, newVal=NA) {
expM <- exprs(qPCRBatch)
for (detector in featureNames(qPCRBatch)) {
for(phenotype in colnames(sampleMaxM)) {
pColumns <- row.names(contrastM)[contrastM[,phenotype] == 1]
if(sum(is.na(expM[detector,pColumns])) >= sampleMaxM[,phenotype]) expM[detector,pColumns] <- newVal
}
}
exprs(qPCRBatch) <- expM
return(qPCRBatch)
}
)
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.