This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Psiblast Standalone Tool Giving Zero-Sized Files As Output
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 ?

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

0 answers

No answers yet.

Log in to answer this question.