view ncbi_blast_plus/hide_stderr.py @ 1:27d7e1deada4 draft

Uploaded v0.0.12 of the NCBI BLAST+ wrappers. Implements genetic code option for translation searches. Changes <parallelism> to 1000 sequences at a time (to cope with very large sets of queries where BLAST+ can become memory hungry). Include warning that BLAST+ with subject FASTA gives pairwise e-values.
author peterjc
date Thu, 23 Aug 2012 07:24:38 -0400
parents
children
line wrap: on
line source

#!/usr/bin/env python
"""A simple script to redirect stderr to stdout when the return code is zero.

See https://bitbucket.org/galaxy/galaxy-central/issue/325/

Currently Galaxy ignores the return code from command line tools (even if it
is non-zero which by convention indicates an error) and treats any output on
stderr as an error (even though by convention stderr is used for errors or
warnings).

This script runs the given command line, capturing all stdout and stderr in
memory, and gets the return code. For a zero return code, any stderr (which
should be warnings only) is added to the stdout. That way Galaxy believes
everything is fine. For a non-zero return code, we output stdout as is, and
any stderr, plus the return code to ensure there is some output on stderr.
That way Galaxy treats this as an error.

Once issue 325 is fixed, this script will not be needed.
"""
import sys
import subprocess

#Avoid using shell=True when we call subprocess to ensure if the Python
#script is killed, so too is the BLAST process.
try:
    words = []
    for w in sys.argv[1:]:
       if " " in w:
           words.append('"%s"' % w)
       else:
           words.append(w)
    cmd = " ".join(words)
    child = subprocess.Popen(sys.argv[1:],
                             stdout=subprocess.PIPE, stderr=subprocess.PIPE)
except Exception, err:
    sys.stderr.write("Error invoking command:\n%s\n\n%s\n" % (cmd, err))
    sys.exit(1)
#Use .communicate as can get deadlocks with .wait(),
stdout, stderr = child.communicate()
return_code = child.returncode

if return_code:
    sys.stdout.write(stdout)
    sys.stderr.write(stderr)
    sys.stderr.write("Return error code %i from command:\n" % return_code)
    sys.stderr.write("%s\n" % cmd)
else:
    sys.stdout.write(stdout)
    sys.stdout.write(stderr)