The column header types for the columns create_time and access_time are character vectors when non-empty, and double vectors when empty.
I expect that they should consistently return the same type; maybe character vectors always; although it's not clear why they are not date or datetime types instead.
Returning inconsistent types throws an error when trying to row bind join multiple queries using purrr::map_df where some of the queries are successful and some of them fail:
>files_remote
[1] "ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1480nnn/GSM1480327/suppl/GSM1480327_K562_PROseq_minus.bw"
[2] "ftp://ftp.ncbi.nlm.nih.gov/geo/samples/GSM1480nnn/GSM1480327/suppl/GSM1480327_K562_PROseq_plus.bw"> map_df(files_remote, bfcquery, x=bfc)
Error:Can't combine `create_time` <character> and `create_time` <double>.Run `rlang::last_error()` to see where the error occurred.> map_df(files_remote[1], bfcquery, x = bfc)# A tibble: 1 x 10 rid rname create_time access_time rpath rtype fpath last_modified_t… etag <chr> <chr> <chr> <chr> <chr> <chr> <chr> <dbl> <chr>1 BFC6 ftp:… 2020-06-29… 2020-06-29… /hom… web ftp:… NA NA # … with 1 more variable: expires <dbl>> map_df(files_remote[2], bfcquery, x = bfc)# A tibble: 0 x 10# … with 10 variables: rid <chr>, rname <chr>, create_time <dbl>,# access_time <dbl>, rpath <chr>, rtype <chr>, fpath <chr>,# last_modified_time <dbl>, etag <chr>, expires <dbl>>
The column header types for the columns
create_timeandaccess_timeare character vectors when non-empty, and double vectors when empty.I expect that they should consistently return the same type; maybe character vectors always; although it's not clear why they are not date or datetime types instead.
Returning inconsistent types throws an error when trying to row bind join multiple queries using
purrr::map_dfwhere some of the queries are successful and some of them fail: