Nothing
# calculate background by excluding combined binding sites
.bg_SET <- function( L, mu, R, n_group ) {
denom <- R + L - 1 - L
if ( n_group > 1 ) {
for ( g in seq(from = 2, to = n_group)) {
denom <- denom - as.numeric( mu[g] - mu[(g-1)] <= L ) * abs( mu[g] - mu[(g-1)] ) -
as.numeric( mu[g] - mu[(g-1)] > L ) * L
}
}
denom <- pmax( denom, 1 ) # avoid non-positive values
return( denom )
}
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.