#' Function that checks if there is a batch effect using Principal Variation Component Analysis. Use plot.pvca() function to plot results
#' @description Function that checks for a batch effect
#' @param eset: object of a class ExpressionSet
#' @param batch.factors: factors checked for batch effect
#' @param threshold: amount of variation to be explained (range 0 to 1)
#' @param include.inter: interaction to be inlcuded
#' @examples
#' pvcaBatch<-pvcaBatchAssess.MSF(eset,batch.factors= c('Batch','Tissue','WEEK','Treatment'), threshold=0.9,include.inter=c('WEEK:Treatment'))
#' plot.pvca(pvcaBatch,fname='./PVCA/PVCA_Batch')
pvcaBatchAssess.MSF<-function (eset, batch.factors, threshold,include.inter=NULL) {
require(lme4)
#theDataMatrix <- exprs(vsn2(abatch, verbose = FALSE))
theDataMatrix <- exprs(eset)
dataRowN <- nrow(theDataMatrix)
dataColN <- ncol(theDataMatrix)
theDataMatrixCentered <- matrix(data = 0, nrow = dataRowN, ncol = dataColN)
theDataMatrixCentered_transposed <- apply(theDataMatrix, 1, scale, center = TRUE, scale = FALSE)
theDataMatrixCentered <- t(theDataMatrixCentered_transposed)
theDataCor <- cor(theDataMatrixCentered)
eigenData <- eigen(theDataCor)
eigenValues <- eigenData$values
ev_n <- length(eigenValues)
eigenVectorsMatrix <- eigenData$vectors
eigenValuesSum <- sum(eigenValues)
percents_PCs <- eigenValues/eigenValuesSum
expInfo <- pData(eset)[, batch.factors]
exp_design <- as.data.frame(expInfo)
expDesignRowN <- nrow(exp_design)
expDesignColN <- ncol(exp_design)
my_counter_2 <- 0
my_sum_2 <- 1
for (i in ev_n:1) {
my_sum_2 = my_sum_2 - percents_PCs[i]
if ((my_sum_2) <= threshold) {
my_counter_2 = my_counter_2 + 1
}
}
if (my_counter_2 < 3) {
pc_n = 3
} else {
pc_n = my_counter_2
}
pc_data_matrix <- matrix(data = 0, nrow = (expDesignRowN * pc_n), ncol = 1)
mycounter = 0
for (i in 1:pc_n) {
for (j in 1:expDesignRowN) {
mycounter <- mycounter + 1
pc_data_matrix[mycounter, 1] = eigenVectorsMatrix[j, i]
}
}
AAA <- exp_design[rep(1:expDesignRowN, pc_n), ]
Data <- cbind(AAA, pc_data_matrix)
variables <- c(colnames(exp_design))
for (i in 1:length(variables)) {
Data$variables[i] <- as.factor(Data$variables[i])
}
op <- options(warn = (-1))
model.func <- c()
index <- 1
for (i in 1:length(variables)) {
mod = paste("(1|", variables[i], ")", sep = "")
model.func[index] = mod
index = index + 1
}
for (i in 1:(length(variables) - 1)) {
for (j in (i + 1):length(variables)) {
mod = paste("(1|", variables[i], ":", variables[j], ")", sep = "")
model.func[index] = mod
index = index + 1
}
}
i.delete.RE<-setdiff(grep(":", model.func),grep(include.inter, model.func))
delete.RE<-model.func[i.delete.RE]
model.func<-setdiff(model.func,delete.RE)
effects_n = length(model.func) + 1
randomEffectsMatrix <- matrix(data = 0, nrow = pc_n, ncol = effects_n)
function.mods <- paste(model.func, collapse = " + ")
for (i in 1:pc_n) {
y = (((i - 1) * expDesignRowN) + 1)
funct <- paste("pc_data_matrix", function.mods, sep = " ~ ")
Rm1ML <- lmer(funct, Data[y:(((i - 1) * expDesignRowN) + expDesignRowN), ], REML = TRUE, verbose = FALSE,
na.action = na.omit)
randomEffects <- Rm1ML
randomEffectsMatrix[i, ] <- c(unlist(VarCorr(Rm1ML)), resid = sigma(Rm1ML)^2)
}
effectsNames <- c(names(getME(Rm1ML, "cnms")), "resid")
randomEffectsMatrixStdze <- matrix(data = 0, nrow = pc_n, ncol = effects_n)
for (i in 1:pc_n) {
mySum = sum(randomEffectsMatrix[i, ])
for (j in 1:effects_n) {
randomEffectsMatrixStdze[i, j] = randomEffectsMatrix[i,j]/mySum
}
}
randomEffectsMatrixWtProp <- matrix(data = 0, nrow = pc_n,
ncol = effects_n)
for (i in 1:pc_n) {
weight = eigenValues[i]/eigenValuesSum
for (j in 1:effects_n) {
randomEffectsMatrixWtProp[i, j] = randomEffectsMatrixStdze[i,
j] * weight
}
}
randomEffectsSums <- matrix(data = 0, nrow = 1, ncol = effects_n)
randomEffectsSums <- colSums(randomEffectsMatrixWtProp)
totalSum <- sum(randomEffectsSums)
randomEffectsMatrixWtAveProp <- matrix(data = 0, nrow = 1,
ncol = effects_n)
for (j in 1:effects_n) {
randomEffectsMatrixWtAveProp[j] = randomEffectsSums[j]/totalSum
}
return(list(dat = randomEffectsMatrixWtAveProp, label = effectsNames))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.