Nothing
filterClones <- function(MA, filterFunc, ...){
remove <- as.matrix(filterFunc(MA, ...))
for(i in 1:ncol(MA)){
MA$M[remove[,i],i] <- NA
}
MA
}
removeByWeights <- function(MA, weights=MA$weights, threshold = 0.2){
index <- weights[,] < threshold
as.matrix(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.