Nothing
# get BEDPE ID column from VCF
get.bedpe.id <- function(df) {
name <- df$ID;
if ('EVENT' %in% names(df)) {
name <- df$EVENT;
} else if (any(grepl('^Manta', name))) {
name <- gsub(':.$', '', df$ID);
} else if (any(grepl('_[12]$', name))) {
name <- gsub('_[12]$', '', df$ID);
}
return(name);
}
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.