#'Make a new scell class from a file
#'@param FileIn An scell S4 object
#'@export ReadNewSCell
#'
ReadNewSCell <- function(FileIn){
datain <- read.delim(FileIn,row.names=1,header=T,sep="\t")
newscell <- new("scell",data=as.matrix(datain))
newscell
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.