R/section-keys.R

Defines functions yg_section_keys

Documented in yg_section_keys

#' get a tibble of all the keys in all the section that may exist in one or
#' more yeast grower / ACCESS files.
#' @export
yg_section_keys <- function() {
    file <- system.file('yg-data-section-keys.csv', package = 'readyg')
    readr::read_csv(file, col_types = readr::cols(
        section = readr::col_character(),
        key = readr::col_character()
    ))
}
npjc/readyg documentation built on Oct. 21, 2019, 4:59 p.m.