Nothing
bamIterPair <- function(bf, scParam) {
done <- FALSE
if (!Rsamtools::isOpen( bf))
open(bf)
function() {
if (done)
return(NULL)
yld=GenomicAlignments::readGAlignmentPairs(bf,
param=scParam)
if (length(yld) == 0L) {
close(bf)
done <<- TRUE
NULL
} else yld
}
}
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.