I'm trying to blastx a Fasta file with a little over 23000 genes in it. I have downloaded the full nr database and unzipped all the tar.gz files. I have downloaded the standalone Blast tool. This is the command I am running:
blastx -query "C:\Program Files\NCBI\blast-2.17.0+\bin\Ha_Trinity_denovo_assembly.fasta" -db nr -outfmt 10 -out "Ha_blastx_results.csv" -max_target_seqs 100 -num_threads 4
I am using the correct path for the Fasta file. I am running it in a command line from the folder that contains the database. But after waiting for 2 hours, nothing has appeared in the .csv file. There is no error message in the command prompt window. It just shows that the command is still running. I also tried this with one gene (362bp) and waiting 10 minutes, and one gene with the output file being a text file instead of csv. The problem is the same every time. Any idea what I might be doing wrong?
Sorry if this is a very base-level question, I have looked everywhere online and can't find an answer.
How much memory does your windows machine have? With
nr
database you will need at least 50-60 GB of RAM.Hi, thanks for the reply. I currently have the nr database on a hard drive which has about 450 GB remaining. My computer says I have 16 GB of installed RAM. The local disk has about 160 GB remaining. I'm not great with computers, so I don't know if you're asking about my installed RAM or just memory, sorry about that.
Also just some additional information that I forgot to include in the original post, my computer has 4 cores, and I'm using all of them for this.