Nothing
setMethod(scanVcfHeader, "missing",
function(file, ...)
{
VCFHeader()
})
setMethod(scanVcfHeader, "character",
function(file, ...)
{
if (length(file)) {
hdr <- scanBcfHeader(file[[1]], ...)[[1]]
VCFHeader(hdr$Reference, hdr$Sample, hdr$Header)
} else {
VCFHeader()
}
})
setMethod(scanVcfHeader, "TabixFile",
function(file, ...)
{
scanVcfHeader(path(file), ...)
})
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.