Skip to content

Commit

Permalink
Merge pull request #16 from Boehringer-Ingelheim/add-teal-packages
Browse files Browse the repository at this point in the history
add teal packages to image
  • Loading branch information
zsigmas authored Jan 30, 2025
2 parents 21a9750 + 342fdcd commit c72f749
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions scripts/install_r_pkgs.R
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,20 @@ tinytex::install_tinytex()

# Remove DaVinci packages from image
grep("^dv.", rownames(installed.packages()), value = TRUE) |> sapply(remove.packages)


# Install teal packages
teal_pkgs <- c(
"teal.data",
"teal.modules.clinical",
"teal.modules.general",
"teal.slice",
"teal.transform"
)

pak::pak(
pkg = teal_pkgs,
dependencies = TRUE,
ask = FALSE,
upgrade = FALSE
)

0 comments on commit c72f749

Please sign in to comment.