Skip to content
Snippets Groups Projects
Commit 698da77b authored by David Klein's avatar David Klein
Browse files

Add .Rprofile to the list of files that are copied into the results folder...

Add .Rprofile to the list of files that are copied into the results folder *before* prepare_and_run is called.
parent 8b6d5157
No related branches found
No related tags found
1 merge request!106Add .Rprofile to the list of files that are copied into the results f…
...@@ -43,7 +43,8 @@ submit <- function(cfg, restart = FALSE) { ...@@ -43,7 +43,8 @@ submit <- function(cfg, restart = FALSE) {
save(cfg,file=filename) save(cfg,file=filename)
# Copy files required to confiugre and start a run # Copy files required to confiugre and start a run
filelist <- c("prepare_and_run.R" = "scripts/start/prepare_and_run.R") filelist <- c("prepare_and_run.R" = "scripts/start/prepare_and_run.R",
".Rprofile" = ".Rprofile")
.copy.fromlist(filelist,cfg$results_folder) .copy.fromlist(filelist,cfg$results_folder)
# Do not remove .RData files from REMIND main folder because they are needed in case you need to manually restart subsequent runs. # Do not remove .RData files from REMIND main folder because they are needed in case you need to manually restart subsequent runs.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment