Nothing
RefFreeCellMix_wrapper <- function(Y, K) {
if (is(Y, "SummarizedExperiment")) {
se <- Y
Y <- assays(se)$counts
} else if (!is(Y, "matrix")) {
stop("Y should be a matrix
or a SummarizedExperiment object!")
}
if (K<0 | K>ncol(Y)) {
stop("K should be between 0 and N (samples)!")
}
outY <- RefFreeEWAS::RefFreeCellMix(Y,
mu0=RefFreeEWAS::RefFreeCellMixInitialize(Y,
K = K))
Prop0 <- outY$Omega
return(Prop0)
}
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.