Connects to the master DuckDB for telemetry and logs. Follows APAF Bioinformatics mandatory pattern for database persistence.
Examples
if (FALSE) { # \dontrun{
# Connect to the master bot history for auditing
con <- init_bot_history(read_only = TRUE)
# Use DBI to query the execution logs
library(DBI)
dbListTables(con)
dbDisconnect(con)
} # }