# obtain exec file from package path
obtain_exec = function(caller = c("cnv", "mutation", "indel"), out = getwd()) {
caller = match.arg(caller)
if (caller == "cnv") {
caller_path = system.file("extdata/cnv_pipe.R", package = "VSHunter")
file.copy(from = caller_path, to = out)
} else {
stop ("Not support for now.")
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.