ropensci / restez

:sleeping: :open_file_folder: Create and Query a Local Copy of GenBank in R
https://docs.ropensci.org/restez
Other
25 stars 5 forks source link

MonetDBLite not available #26

Closed maelle closed 2 years ago

maelle commented 2 years ago

On https://ropensci.r-universe.dev/ui#builds we see that MonetDBLite is not available. Should this dependency be replaced, or installed via Remotes:?

joelnitta commented 2 years ago

{MonetDBLite} is no longer being maintained and was pulled from CRAN.

Short answer: the recommended alternative for now is to install from github using remotes or devtools:

devtools::install_github("MonetDB/MonetDBLite-R")

The long-term solution is to switch to using {duckdb} as mentioned in #18. #18 was still open because the previous maintainer of {restez} was waiting for {duckdb} to be available on CRAN. It is now on CRAN, so changing the database to {duckdb} is the top priority for me now as a new maintainer. Once I implement the refactor it should be possible to close this issue and get {restez} back on CRAN.

maelle commented 2 years ago

Thanks a ton @joelnitta for your work & this update!

joelnitta commented 2 years ago

Fixed in #31

maelle commented 2 years ago

:tada: awesome work!