Closed EmilyMarkowitz-NOAA closed 1 year ago
This is due to some odd behavior of the dependency package crul
on Windows. See:
https://github.com/ropensci/taxize/issues/888
I hope to have a fix for this released to CRAN in the next few days
This has been fixed - thanks for your hard work on this package!
I am getting "Not Found"'s when searching for WoRMS species IDs using species's scientific names. I tried this with a few other species from WoRMS and couldn't get the function to retrieve a species ID number for those species, either. Below I use the example from the
?taxize::classification
documentation. I also tried this code using the ITIS database and it worked fine. I suspect that thetaxize::classification()
function is just searching from the wrong column in WoRMS?I tried this with R 4.1.2 and the latest CRAN (0.9.99) and GitHub (0.9.99.947) versions of
{taxize}
and got the same result.classification(sci_id = 'Gadus morhua', db = 'worms')
# did not workHowever, if I search Gadus morhua's WoRMS ID (126436), I do get a return.
classification(sci_id = 126436, db = 'worms')
# worked