Nothing
# compute distance for lesions
dist.lsn=function(lsn.mtx) # subjects in columns, genes in rows
{
n=ncol(lsn.mtx)
res=matrix(NA,n,n)
colnames(res)=rownames(res)=colnames(lsn.mtx)
diag(res)=0
for (i in 1:(n-1))
for (j in (i+1):n)
{
res[i,j]=res[j,i]=sum(lsn.mtx[,i]!=lsn.mtx[,j])
}
return(res)
}
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.