Skip to content

Commit

Permalink
changed stop halt to skip
Browse files Browse the repository at this point in the history
  • Loading branch information
RPSeaman committed Oct 14, 2024
1 parent 185b524 commit 400f460
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bin/Plotting.R
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,9 @@ try_generate_loupe_file <- function(MergedSO, params.ProjectName, max_tries = 5)
if (i < max_tries) {
Sys.sleep(60) # Wait for 1 minute before retrying
} else {
stop("Failed to generate Loupe file after ", max_tries, " attempts.")
message(paste0("Failed to generate Loupe file after ", max_tries, " attempts."))
message("Loupe browser will need to be generated externally.")
return(FALSE)
}
})
}
Expand Down

0 comments on commit 400f460

Please sign in to comment.