You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# this worksrentrez::entrez_search(db='taxonomy', term='Bacteria[NXLV]')
# this doesn'trentrez::entrez_search(db='taxonomy', term='Bacteria[Next+Level]')
# but if I remove the plus sign, all's wellrentrez::entrez_search(db='taxonomy', term='Bacteria[Next Level]')
This is pretty trivial (I'm even a little embarrassed to bring it up), but it could cause some confusion for people who copy and paste queries from URLs.
The text was updated successfully, but these errors were encountered:
Sorry for the delay in getting to this: end of the year is a busy time. I can see how this could be confusing for folks moving queries from the web to rentrez. I'll leave this issue open until I make a note in the in-line docs, the vignette or both.
Thanks for submitting the issue, always like to hear how users are getting on with rentrez!
Entrez supports long and short versions of tags, for example:
esearch.fcgi?db=taxonomy&term=Bacteria[Next+Level]
Is equivalent to
esearch.fcgi?db=taxonomy&term=Bacteria[NXLV]
But in
rentrez
:This is pretty trivial (I'm even a little embarrassed to bring it up), but it could cause some confusion for people who copy and paste queries from URLs.
The text was updated successfully, but these errors were encountered: