This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Error while downloading fastq files from SRA

I would like to download the fastq file associated to this SRA entry SRR6755970 I would use sra toolkit as follow

fasterq-dump SRR6755970

but I am getting error messages like

> 2020-03-17T15:29:15 fasterq-dump.2.10.4 err: name not found while
> resolving query within virtual file system module - failed to resolve
> accession 'CM000667.1' - Cannot resolve accession ( 404 )
> 2020-03-17T15:29:16 fasterq-dump.2.10.4 err: name not found while
> resolving query within virtual file system module - failed to resolve
> accession 'CM000681.1' - Cannot resolve accession ( 404 )
> 2020-03-17T15:29:21 fasterq-dump.2.10.4 err: name not found while
> resolving query within virtual file system module - failed to resolve
> accession 'CM000681.1' - Cannot resolve accession ( 404 )
> 2020-03-17T15:29:27 fasterq-dump.2.10.4 err: name not found while
> resolving query within virtual file system module - failed to resolve
> accession 'CM000681.1' - Cannot resolve accession ( 404 )
> ^Cfasterq-dump (PID 21865) was killed (signal 2)

it works for other data like SRR6755975, SRR6755976... no idea what is causing the issue, suggestions?

rna-seq

1 answer

As above answers, use prefetch to download sra files.

Besides, in your example, the file (SRR6755970, 23GB) is larger than default maximum allowed (20GB). you could change it to a larger number.

$ prefetch --max-size 24G SRR6755970

Log in to answer this question.