Nothing
.build_path <-
function(path)
{
if (.Platform$OS.type == "windows") {
path <- normalizePath(path)
if (grepl(' ', path, fixed=TRUE))
path <- utils::shortPathName(path)
path <- gsub("\\\\", "/", path)
}
path
}
.pkgMk <-
function()
{
if (.Platform$OS.type != "windows")
stop(".pkgMk() expects windows operating system")
path <- system.file(package="Rsamtools", "usretc", .Platform$r_arch,
"Rsamtools.mk", mustWork=TRUE)
.build_path(path)
}
.pkgLd <-
function()
{
path <- system.file(package="Rsamtools", "usrlib", .Platform$r_arch,
mustWork=TRUE)
.build_path(path)
}
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.