Skip to content

Commit

Permalink
fixed bug in IgBLAST error reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Stubbington committed Jun 29, 2018
1 parent c12c16f commit 103888e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tracerlib/tracer_func.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
import copy

import pdb

import pipes

def process_chunk(chunk):
store_VDJ_rearrangement_summary = False
Expand Down Expand Up @@ -1262,7 +1262,8 @@ def run_IgBlast(igblast, receptor, loci, output_dir, cell_name, index_location,
out.write(output.decode())
else:
print("CMD failed:")
print(" ").join(pipes.quote(s) for s in command)
print(" ".join([pipes.quote(s) for s in command]))
print()
print(error.decode())
exit(1)

Expand Down

0 comments on commit 103888e

Please sign in to comment.