From 252ef02083d9ff766094faa8f2ffe9b403837182 Mon Sep 17 00:00:00 2001 From: Andreas Gattringer <andreas.gattringer@univie.ac.at> Date: Sat, 3 Jun 2023 21:30:46 +0200 Subject: [PATCH] updated vignette to reference configuration file Astmons-quick.conf for shorter simulations --- vignettes/catsr.Rmd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vignettes/catsr.Rmd b/vignettes/catsr.Rmd index 822ed25..e891aa1 100644 --- a/vignettes/catsr.Rmd +++ b/vignettes/catsr.Rmd @@ -138,7 +138,7 @@ install.dir <- "catsr-test" dir.create(install.dir) cats_path <- download_and_install_cats(install.dir) data_path <- download_cats_quickstart_data(install.dir) -config_file <- file.path(data_path, "Astmons-short.conf") +config_file <- file.path(data_path, "Astmons-quick.conf") result <- run_cats(config_file, working_directory=data_path, path_to_cats=cats_path) plot_cats_run(result, config_file) ``` @@ -151,7 +151,7 @@ dir.create(install.dir) # Don't reinstall or reextract the data if it already exists cats_path <- download_and_install_cats(install.dir, redownload=F, reextract=F) data_path <- download_cats_quickstart_data(install.dir, redownload=F, reextract=F) -config_file <- file.path(data_path, "Astmons-short.conf") +config_file <- file.path(data_path, "Astmons-quick.conf") config <- load_cats_configuration(config_file) # We load the configuration file config$general.run_name = "Test" # and modify the data frame before we run it result <- run_cats(config, working_directory=data_path, path_to_cats=cats_path) @@ -168,7 +168,7 @@ dir.create(install.dir) # Don't reinstall or reextract the data if it already exists cats_path <- download_and_install_cats(install.dir, redownload=F, reextract=F) data_path <- download_cats_quickstart_data(install.dir, redownload=F, reextract=F) -config_file <- file.path(data_path, "Astmons-short.conf") +config_file <- file.path(data_path, "Astmons-quick.conf") config <- load_cats_configuration(config_file) # We load the configuration file # Create new configurations by creating all permutation of the specified values for -- GitLab