Installation of generated R API Client¶
Requirements¶
- R
Instructions¶
Install¶
-
Install dependencies in advance
-
Install the latest version:
-
(Optional) Install specific version:
genestackRepo <- "https://public-nexus.devops.gs.team/repository/r-releases" install_specific_version_from_nexus <- function(pkg, version = NULL) { pkg_name <- paste0(pkg, "_", version, ".tar.gz") url <- paste(genestackRepo, "src/contrib", pkg_name, sep = "/") install.packages(url, repos = NULL, method="libcurl") } odmApiVersion <- "1.57.0" install_specific_version_from_nexus("odmApi", version = odmApiVersion)