Nothing
getDesignMat <- function(expressionData,
factorList=c("Study", "Platform", "Site", "Sample",
"Library", "Lane", "Barcode", "FlowCell",
"AlignMethod"), patternSplit = '_'){
designMatrix <- data.frame(countSet=
as.character(names(expressionData)[-c(1)]))
factorSet <- colsplit(designMatrix$countSet,pattern=patternSplit,
names=factorList)
factorSet <- data.frame(factorSet, stringsAsFactors= TRUE)
designMatrix <- cbind(designMatrix, factorSet)
designMatrix <- as.data.frame(lapply(designMatrix,as.factor))
return(designMatrix)
}
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.