I am trying to convert .sra files to fastq using fastq-dump on a CentOS machine. I already have the sra files downloaded so I do not want to redownload them. The command sratoolkit.2.3.5-2-centos_linux64/bin/fastq-dump SRR554454.sra
seems to do nothing. There is no error, no output, and it does not seem to be using up any cpu or network either. What am I doing wrong?
You are using the correct command. This link says "fastq-dump would still attempt to contact NCBI to obtain the references needed to convert the data to fastq". So is it possible that there is a network connection problem? I would suggest using a small dataset first, since the process takes a while. And also try to do
fastq-dump SRR554454
directly, which download the data from SRA and then output the data in fastq format.It's important to use the
--split-files
if it is paired end, otherwise you will get a very messy fastq fileYou sure the sra file is in the same directory as you invoke fastq-dump?