Install a package from a source repository on GitHub.
Usage
oadmin.install_github_package(
opal,
pkg,
username = getOption("github.user"),
ref = "master",
profile = NULL
)Arguments
- opal
Opal object or list of opal objects.
- pkg
Package name.
- username
GitHub user or organization name.
- ref
Desired git reference. Could be a commit, tag, or branch name. Defaults to "master".
- profile
The R servers profile name to which operation applies. See also opal.profiles.
See also
Other administration functions:
oadmin.install_bioconductor_package(),
oadmin.install_cran_package(),
oadmin.install_devtools(),
oadmin.install_local_package(),
oadmin.install_package(),
oadmin.installed_devtools(),
oadmin.installed_package(),
oadmin.installed_packages(),
oadmin.package_description(),
oadmin.remove_package()
Examples
if (FALSE) { # \dontrun{
o <- opal.login('administrator','password', url='https://opal-demo.obiba.org')
oadmin.install_github_package(o, 'opalr', 'obiba')
opal.logout(o)
} # }