Get Repeat Dose Parallel Study IDs
Source:R/get_repeat_dose_parallel_studyids.R
get_repeat_dose_parallel_studyids.Rd
This function retrieves study IDs from a database that correspond to parallel-design studies involving repeat-dose toxicity. It optionally filters the studies for rat species.
Value
A vector of study IDs that meet the specified criteria. This includes:
Study IDs that match both the parallel design and repeat-dose toxicity criteria.
Optionally, study IDs that match rat species if
rat_studies = TRUE
.
Examples
if (FALSE) { # \dontrun{
# Example without filtering for rat studies
study_ids <- get_repeat_dose_parallel_studyids(path_db = "path/to/database.sqlite")
# Example with filtering for rat studies
study_ids_rats <- get_repeat_dose_parallel_studyids(path_db = "path/to/database.sqlite", rat_studies = TRUE)
} # }