Skip to content

Commit

Permalink
chore: update R to 4.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
slsevilla committed Feb 15, 2024
1 parent 35a58b8 commit aa81f97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/scripts/_carlisle_functions.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
########################################################################
# LIBRARY
########################################################################
carlisle_handle_packages<-function(pkg_df){
CARLISLE_HANDLE_PACKAGES<-function(pkg_df){
for (rowid in rownames(pkg_df)){
pkg=pkg_df[rowid,"package"]
source=pkg_df[rowid,"source"]
Expand All @@ -13,7 +13,7 @@ carlisle_handle_packages<-function(pkg_df){
print(paste0("Installing: ", pkg))
if (source=="bc") BiocManager::install(pkg,ask=FALSE,update=FALSE)
if (source=="cr") install.packages(pkg,version=version,repos = "http://cran.us.r-project.org",
local = FALSE,ask=FALSE,update=FALSE)
local = FALSE,ask=FALSE,update=FALSE,dependencies=TRUE)
if (source=="gh") remotes::install_github(gh_name,version=version,local = FALSE,update=FALSE)
}

Expand Down

0 comments on commit aa81f97

Please sign in to comment.