Skip to content

Instantly share code, notes, and snippets.

@schifferl
Created June 15, 2020 18:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schifferl/babdf5cc2c97daf9087871b98ae966be to your computer and use it in GitHub Desktop.
Save schifferl/babdf5cc2c97daf9087871b98ae966be to your computer and use it in GitHub Desktop.
library(magrittr)
file_url <-
"https://bioconductor.org/checkResults/3.12/bioc-LATEST/STATUS_DB.txt"
temp_file <-
base::tempfile()
utils::download.file(file_url, temp_file)
col_names <-
base::c("package", "machine", "type", "status")
status_db <-
base::readLines(temp_file) %>%
base::as.data.frame() %>%
tidyr::separate(1, col_names, sep = "#|:")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment