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
I'm getting some unexpected failures trying to download some large plant genomes. My guess is that these downloads take a lot longer, so I need to modify parameters to avoid blocking by NCBI.
To fix:
could make # semaphore permits a modifiable parameter (currently 3, but maybe use 1 for large genomes).
can we use an API key to get a higher download limit?
need to double check that we're not attempting protein downloads when we're not keeping fastas + not generating protein signatures. Despite tests and outputs, I do see some "protein" filenames in the failures file, so let's check again. Attempting these downloads might be the cause of hitting ncbi download limits.
The text was updated successfully, but these errors were encountered:
This PR integrates the changes to `BuildUtils` (`MultiSelection`
details, minor changes to `BuildCollection` filtering + writing) that
arose from integration into branchwater. It also makes the number of
simultaneous downloads tunable, since I was having trouble when using
the 3 default permits with large eukaryotic genomes.
It also handles changes associated with zipfile handling from
sourmash-bio/sourmash#3431 arising from updating
sourmash core to 0.18.0
ref #134
modifiable permits was implemented in #154 and using the NCBI REST API was implemented in #181. The changes in #181 also mean that genome/protein files are downloaded together if both are needed, so inclusion of genomes/proteomes should no longer impact the number of downloads/second. #183 also adds a delay before retrying to try to improve.
I'm getting some unexpected failures trying to download some large plant genomes. My guess is that these downloads take a lot longer, so I need to modify parameters to avoid blocking by NCBI.
To fix:
The text was updated successfully, but these errors were encountered: