Install and create binaries for R packages.

kube_install_single_package(pkg, lib_path, bin_path, logs_path)

Arguments

pkg

character() name of R or Bioconductor package.

lib_path

character() path where R package libraries are stored.

bin_path

character() path where R package binaries are stored.

logs_path

character() path where R package binary build logs are stored.

Value

`kube_install_single_package()` returns invisibly.

Details

The package given by `pkg` is installed in the given library path `lib_path`, and the binaries are created in the `bin_path`.

Examples

if (FALSE) {
kube_install_single_package(
    pkg = 'AnVIL',
    lib_path = "/host/library",
    bin_path = "/host/binaries"
)
}