I forgot to mention one more thing: since you'll be downloading a lot of data and files, I would recommend you to use the --dehydrated flag option when downloading. Like this:
datasets download genome accession \
--inputfile ecoli_usa_accessions.txt \
--dehydrated \
--filename ecoli_usa_dehydrated.zip
This option will give you the metadata files and a txt with the paths to retrieve the data. Data retrieval will be faster and can be resumed if it fails. Here are the next steps:
Unzip the dehydrated package:
unzip ecoli_usa_dehydrated.zip -d ecoli_usaRehydrate (aka retrieve/download) ALL data files:
datasets rehydrate --directory ecoli_usaAs an alternative, you can retrieve only the genomic assembly files, like this:
datasets rehydrate --directory ecoli_usa --match "GC.*/GC.*genomic.fna"
I hope it helps!