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
Recently I've been trying to get taxonomic information for a variety of taxa and I've noticed that taxize gets 'stuck' and eventually times out when there are different downstream taxonomic ranks with the same names.
$ More than one UID found for taxon 'Euchloe'!
Enter rownumber of taxon (other inputs will return'NA'):
status rank division scientificname commonname uid genus
1 active subgenus butterflies Euchloe 415320
2 active genus butterflies Euchloe little whites 72254
species subsp modificationdate
1 2016/01/21 00:00
2 2017/06/14 00:00
Neither choice will work and eventually a time out occurs. All other ranks within 'Pieridae' seem to work with the 'downstream' command just fine.
Thanks!
The text was updated successfully, but these errors were encountered:
queries for certain ids, in this case two subgenera, returned themselves and species within those subgenera
so the while loop never ended
change ncbi_downstream to remove any ids from resulting searches that were in the search themselves
also changed to after takig bind rows, then taking unique to remove any duplicate rows
please try again after restarting R, then reinstalling like remotes::install_github("ropensci/taxize")
ncbi was doing a weird thing where when searching on the two subgenera within Euchloe, it always returned the subgenera themsleves and the species below them, and repeated it so it was stuck indefinitely. should work now
Recently I've been trying to get taxonomic information for a variety of taxa and I've noticed that taxize gets 'stuck' and eventually times out when there are different downstream taxonomic ranks with the same names.
For example, using the family 'Pieridae':
will not run because there is a subgenus and a genus (the genus containing the subgenus) called "Euchloe".
Running
returns
Neither choice will work and eventually a time out occurs. All other ranks within 'Pieridae' seem to work with the 'downstream' command just fine.
Thanks!
The text was updated successfully, but these errors were encountered: