Nothing
filter.NA <- function(eset,thres=0.25){
index <- logical(dim(exprs(eset))[1])
for (i in 1:dim(exprs(eset))[1]){
index[i] <- (((sum(is.na(exprs(eset)[i,]))/dim(exprs(eset))[2])) > thres)
}
cat(paste(sum(index),"genes excluded.\n"))
eset[!index,]
}
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.