Skip to content

Commit

Permalink
Remove multi-card filter
Browse files Browse the repository at this point in the history
  • Loading branch information
dfsnow committed Jan 9, 2025
1 parent 7e32eff commit 93825d4
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions reports/_setup.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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)
Expand Down

0 comments on commit 93825d4

Please sign in to comment.