Add initial R project file for xMap biomarker analysis

This commit is contained in:
rpotter6298
2026-05-12 11:01:52 +02:00
commit 7b124dbe07
29 changed files with 15190 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import_libs <- function() {
function_files <- list.files(file.path("scripts", "backend"), full.names = TRUE)
for (file in function_files) {
import_env <- new.env()
source(file, local = import_env)
function_names <- ls(import_env)
function_list <- mget(function_names, import_env)
assign(basename(file), function_list, envir = .GlobalEnv)
}
}
worklib = import_libs()