Psiblast Standalone Tool Giving Zero-Sized Files As Output
0
0
Entering edit mode
10.2 years ago
System : PSI-BLAST 2.2.29+, Linux - 64Bit. (RAM-512 GB; Processors- 48(nproc))

psiblast -query in.fasta -db /Path/To/NR/nr -outfmt 7 -num_iterations 3 -out out.out

I am running several psi-blast in a script in different directories. Some of the psiblast invocations are giving some output but most of them are giving zero sized output. I have taken one such instance of zero-sized and tried the same command in a different directory then I got expected result.

Why I am getting a problem like this ?

• 1.8k views
ADD COMMENT
1
Entering edit mode

I have taken one such instance of zero-sized and tried the same command in a different directory then I got expected result.

This indicates that the effect is not caused by psiblast, but by problem with the local system (hint: volume/disk full?). Check for existence of all files, permissions and check free space with df.

I am running several psi-blast in a script in different directories.

Indicates that probably your script doesn't handle exit status error codes or discards STDERR, look for error messages in your output.

use return value checking by wrapping psiblast calls using some code like this:

if psiblast ...
then echo psiblast successful
else echo psiblast error
exit $?
fi
ADD REPLY

Login before adding your answer.

Traffic: 2636 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6