This link covers the (in my opinion) two fastest options.
The first is to download directly in fastq format from ENA, and the second is prefetch followed by parallel-fastq-dump. See the thread for details including code examples. Don't use any of the "dump" commands to download data directly, too slow and too unstable in my experience.
I've installed sratoolkit.2.10.0 at my home on a cluster. I have to download a numerous SRR accessions to my home directory. There are a several options, as i can understand:
fastq-dump- run
prefetchutility, then convert resultedsrafiles tofastqbyfastq-dump fasterq-dump(able to use multi-threading, but if i'm correct can not employ list ofSRRaccessions as input)
Which option is the fastest? Could you please provide a command line example which will be suitable for my purposes?
I've found very useful a post here: download from SRA However it seems too old.
2 answers
Your best bet is to use this: Fast download of FASTQ files from the European Nucleotide Archive (ENA) instead.
Assuming you are using bash, you can employ an accession list (or any text file with accessions separated by returns) for faster-dump as follows:
cat SraAccList.txt | xargs fasterq-dump - this also takes parameters eg --outdir
Log in to answer this question.