Nothing
findBreakPoints <- function (seg, array)
{
states <- seg$state[,array]
chr <- seg$genes$Chr
bpoints <- c(1)
for (i in 2:length(states)) {
if (states[i] != states[i - 1] || chr[i] != chr[i -1])
bpoints <- c(bpoints, i - 1, i)
}
bpoints <- c(bpoints, length(states))
bpoints
}
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.