Skip to content

Commit

Permalink
fix folder name in postprocess snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
saraloo committed Jan 4, 2024
1 parent ee9096d commit 1480bde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postprocessing/postprocess_snapshot.R
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ setup_prefix <- paste0(config$name,
ifelse(is.null(config$seir_modifiers$scenarios),"",paste0("_",config$seir_modifiers$scenarios[scenario_num])),
ifelse(is.null(config$outcome_modifiers$scenarios),"",paste0("_",config$outcome_modifiers$scenarios[scenario_num])))

res_dir <- file.path(opt$results_path, config$model_output_dirname)
res_dir <- file.path(opt$results_path, ifelse(is.null(config$model_output_dirname),"model_output", config$model_output_dirname))
print(res_dir)

results_filelist <- file.path(res_dir,
Expand Down

0 comments on commit 1480bde

Please sign in to comment.