Nothing
#Remove short inserts
rmShortInserts <- function(bam, isizeMin=100) {
sel <- abs(bam$isize)>isizeMin
xs <- bam$tag$XS[sel]
ans <- lapply(bam[names(bam)!='tag'],function(z) z[sel])
ans$tag <- list(XS=xs)
return(ans)
}
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.