Nothing
write.tight.clust <-
function(x, ...) {
data<-x$data
cluster<-matrix(x$cluster,ncol=1)
colnames(cluster)<-"Cluster"
data<-cbind(data,cluster)
order.genes<-unlist(lapply(c(1:max(cluster),-1),function(i) which(cluster==i)))
data<-data[order.genes,]
write.table(data, ...)
}
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.