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
As the title states the group metagenomes is not a RefSeq category (yet).
Currently requesting it will result in an 404 error and an endless loop (at least no termination)
$ ncbi-genome-download -F fasta -s refseq --retries 3 --parallel 10 --no-cache --verbose --debug -o genomes metagenomes
DEBUG: Checking for a cached summary file
DEBUG: Downloading summary for 'refseq'/'metagenomes' uri: 'https://ftp.ncbi.nih.gov/genomes'
DEBUG: Starting new HTTPS connection (1): ftp.ncbi.nih.gov:443
DEBUG: https://ftp.ncbi.nih.gov:443 "GET /genomes/refseq/metagenomes/assembly_summary.txt HTTP/1.1" 404 None
I tried to make an exception for it, but could not find a smart location to do so.
Basically all that's needed is to
ifsection=="refseq"andgroup=="metagenomes":
raiseValueError("Unsupported group in refseq: {}".format(group))
Maybe this can be fixed
The text was updated successfully, but these errors were encountered:
As the title states the group metagenomes is not a RefSeq category (yet).
Currently requesting it will result in an 404 error and an endless loop (at least no termination)
I tried to make an exception for it, but could not find a smart location to do so.
Basically all that's needed is to
Maybe this can be fixed
The text was updated successfully, but these errors were encountered: