Entering edit mode
3.2 years ago
Riku
▴
80
Hi all.
I would like to evaluate the assembly quality by running BLAST to the fasta file output by Trinity. I ran the command as follows, but this job was stopped with an error message.
$ ~/miniconda3/envs/py27/bin/blastx \
-query /home/nkarim/avenae/trinity_even_out_dir/Trinity.300.longest.fasta \
-db /home/nkarim/blast/db/nr \
-outfmt 6 \
-evalue 1e-3 \
-out /home/nkarim/blast/output/avenae.out
Error: NCBI C++ Exception:
T0 "/opt/conda/conda-bld/blast_1626166529662/work/blast/c++/src/corelib/ncbiobj.cpp", line 980: Critical: (CCoreException::eNullPtr) ncbi::CObject::ThrowNullPointerException() - Attempt to access NULL pointer.
Stack trace:
/lustre7/home/lustre5/nkarim/miniconda3/envs/py27/bin/../lib/ncbi-blast+/libxncbi.so ???:0 ncbi::CObject::ThrowNullPointerException() offset=0xB7 addr=0x7ffff635daa7
/lustre7/home/lustre5/nkarim/miniconda3/envs/py27/bin/../lib/ncbi-blast+/libxblast.so ???:0 ncbi::blast::CBlastTracebackSearch::Run() offset=0x9C2 addr=0x7ffff7863ba2
/lustre7/home/lustre5/nkarim/miniconda3/envs/py27/bin/../lib/ncbi-blast+/libxblast.so ???:0 ncbi::blast::CLocalBlast::Run() offset=0x1659 addr=0x7ffff780acb9
/home/nkarim/miniconda3/envs/py27/bin/blastx ???:0 CBlastxApp::x_RunMTBySplitDB() offset=0xDEF addr=0x555555576e8f
/home/nkarim/miniconda3/envs/py27/bin/blastx ???:0 CBlastxApp::Run() offset=0x49 addr=0x555555578689
/lustre7/home/lustre5/nkarim/miniconda3/envs/py27/bin/../lib/ncbi-blast+/libxncbi.so ???:0 ncbi::CNcbiApplicationAPI::x_TryMain(ncbi::EAppDiagStream, char const*, int*, bool*) offset=0x17B addr=0x7ffff62a3d6b
/lustre7/home/lustre5/nkarim/miniconda3/envs/py27/bin/../lib/ncbi-blast+/libxncbi.so ???:0 ncbi::CNcbiApplicationAPI::AppMain(int, char const* const*, char const* const*, ncbi::EAppDiagStream, char const*, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) offset=0x5FE addr=0x7ffff62a752e
/home/nkarim/miniconda3/envs/py27/bin/blastx ???:0 main offset=0x77 addr=0x55555556f6a7
/lib64/libc.so.6 ???:0 __libc_start_main offset=0xF5 addr=0x7ffff5c513d5
/home/nkarim/miniconda3/envs/py27/bin/blastx ???:0 offset=0x1BFE9 addr=0x55555556ffe9
I'm working on a Linux environment using miniconda. I found some people having similar errors, but they seemed to be having Windows specific errors. What could be wrong with my command?
Thank you very much for your help!
How much memory did you assign to this job? Newest blast version are quite memory-hungry so it is not unlikely it just ran out of memory.
Can you check the memory (and mem-usage) of that job/process ?
I appreciate for your advices.
I'm using a supercomputer called "DDBJ", and I asigned 64GB memory. Would I be able to run this with more memory?
yes, in default settings you will need much more mem assigned to that job, try with something like 200Gb and see what that gives
To find out how much memory you have:
And then get the blastx version:
And check if your blastdb is ok:
After that, you could try to install an older blast version. Try e.g. 2.9.0 or 2.10.1 Maybe they need a little less memory.
I appreciated your kind help.
I have ran the command according to you.
Although I got this information, this is the information of login node. I was using another node in this job, and I asigned 64GB memory.
It seemed I have latest version BLAST. I may need to downgrade BLAST with Anaconda.
I also used the command you specified, but same error message was outputed. I thought there were too many paths, so I tried this command but an error occurred. In this case, which do you think the cause is BLAST version or database?
Sorry, try
If that works, then try a downgrade to 2.11. That is working fine for me.
Thank you for your many replies.
It doesn't seem to be working, so it seem that there is the problem in database.
I downloaded as follows. Is there are problem? There are the files from "nr.00.tar.gz" to "nr.55.tar.gz" and their decompression files in the downloaded directory.
I have never used that download script, however make sure the files exist and are where you think they are:
If that shows files, possibly your download is broken anyway, try using update_blastdb.pl for db updates, it might be slower than the other script but is more reliable. Also:
and wait.... check nohup.out from time to time. Once you got 56 volume files you can try again.
Your command have worked. Just as you said, the files might be broken.
But I just asigned 600GB memory, and it seem the task is working. If this job goes to the end without a problem, then the problem might had been in the memory.
If an errors occured in this job, I will try to download again according to you. If I still get an error, I hope you can help me again.
Finally, thank you very much for your kind advices everytime!