Install a package from a DataSHIELD source repository on GitHub.

dsadmin.install_github_package(
  opal,
  pkg,
  username = "datashield",
  ref = "master",
  profile = NULL
)

Arguments

opal

Opal object or list of opal objects.

pkg

Package name.

username

GitHub username/organization of the git repository. Default is 'datashield'.

ref

Desired git reference (could be a commit, tag, or branch name). Default is 'master'.

profile

The DataSHIELD profile name to which operation applies. See also dsadmin.profiles.

Value

TRUE if installed

Examples

if (FALSE) {
o <- opal.login('administrator','password', url='https://opal-demo.obiba.org')
dsadmin.install_github_package(o, 'dsOmics', username='isglobal-brge')
opal.logout(o)
}