This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Issue With Sra To Fastq Conversion

I have downloaded a SRA file from here. Now, I want to convert it into Fastq format.

So, what I did is following,

1) Download SRA Toolkit from here. (MS Windows 64 bit architecture - as I am using windows 7 64 bit)

2) Put SRA file on "sratoolkit.2.1.10-win64\bin"

3) Run command "fastq-dump SRR493095.sra"

However, I can't understand why it is giving error ?

Error is given here.

Can anybody help me why is this happening ?

fastq sra

1 answer

First things first. This is how you should proceed:

1- Let's look at the generated error:

Path incorrect while opening manager

It also says:

failed SRR493095.sra

And you also learn that:

a report was generated into the file ...

2- What does this mean?

That "fastq-dump" cannot find your SRA file because you are telling him exactly where it is. You should probably call:

fastq-dump C:\Users\ArupGhosh\the\correct\path\to\this\file\SRR493095.sra

Thanks a lot. I am checking it.

You are correct. I tried with another .sra and downloaded current version of toolkit again. Works fine. Thanks.

Next time, before asking here, you should Google the error message you get. This is just what I did, and see, it solved your problem.

Log in to answer this question.