Nothing
rawScore <- function(diff1, diff2, SDT1, SDT2) {
m.gamma <- 0.1
N1 <- N2 <- 1
rawS <- (diff1/N1-diff2/N2)/
sqrt(m.gamma^2*(diff1^2/(N1^2) + diff2^2/(N2^2))+
sum(SDT1^2)/(N1^2)+sum(SDT2^2)/(N2^2))
rawS[rawS > 15.0] <- 15.0
rawS[rawS < -15.0] <- -15.0
# Try reducing this threshold to see if helps with asymmetric MTA/CEL files
# rawS[rawS > 1.0] <- 1.0
# rawS[rawS < -1.0] <- -1.0
return(rawS)
}
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.