Mercurial > repos > devteam > ncbi_blast_plus
view hide_stderr.py @ 2:ab1a8640f817 draft
Uploaded v0.0.12 again, without extra path
author | peterjc |
---|---|
date | Thu, 23 Aug 2012 07:32:06 -0400 |
parents | d375502056f1 |
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)