MoTrPAC / MotrpacBicQC

R package for the MoTrPAC community
https://motrpac.github.io/MotrpacBicQC/index.html
MIT License
8 stars 4 forks source link

Replace data table in dl_read_gcp #232

Closed biodavidjm closed 8 months ago

biodavidjm commented 8 months ago

Replace data table by read_delim from readx

  if(file.exists(new_path)) {
    df <- readr ::read_delim(new_path, delim = sep, col_names = header, ...)
    return(df)
  } else {
    stop("- Problems loading the file. Possible reason: the file does not exist in the bucket anymore. Please, validate the address. Re-run this command again with `verbose = TRUE`)")
  }
biodavidjm commented 8 months ago

Same as #227