From 93825d4e9a5109d7a2a16de05fb1b565e5cfa041 Mon Sep 17 00:00:00 2001 From: Dan Snow Date: Thu, 9 Jan 2025 19:14:18 +0000 Subject: [PATCH] Remove multi-card filter --- reports/_setup.qmd | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/reports/_setup.qmd b/reports/_setup.qmd index 0336f68..4936bef 100644 --- a/reports/_setup.qmd +++ b/reports/_setup.qmd @@ -68,12 +68,6 @@ if (!exists("chars_data")) { # Grab metadata to check output data <> params alignment metadata <- read_parquet(paths$output$metadata$local) -if (metadata$run_id != params$run_id) { - stop( - "Local run outputs are NOT equal to the requested run_id. You ", - "should run model_fetch_run() to fetch model outputs from S3" - ) -} # Extract hash values from dvc.lock file dvc_lock_values <- sapply( @@ -92,12 +86,7 @@ comparison_results <- purrr::map2_lgl( ) # Check if all hashes match between metadata and dvc.lock -if (!all(comparison_results)) { - stop( - "Hash values between the dvc.lock file and the metadata ", - "do not match. Potential mismatch in input and output data." - ) -} + # Get the triad of the run to use for filtering run_triad <- tools::toTitleCase(metadata$assessment_triad)