Skip to content

Commit

Permalink
Fix run_and_annotate script for new command-line args
Browse files Browse the repository at this point in the history
  • Loading branch information
jlgreathouse committed Oct 22, 2018
1 parent 23e72a0 commit a567525
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/ibs_run_and_annotate/ibs_run_and_annotate
Original file line number Diff line number Diff line change
Expand Up @@ -391,8 +391,8 @@ def parse_and_run_ibs():

# After parsing all the arguments, set up directory and file paths
ibs_tools_dir = os.path.join(os.path.dirname(__file__), "..")
op_sample_file = os.path.join(args.temp_dir, args.op_samples)
fetch_sample_file = os.path.join(args.temp_dir, args.fetch_samples)
op_sample_file = os.path.join(args.temp_dir, args.op_sample_file)
fetch_sample_file = os.path.join(args.temp_dir, args.fetch_sample_file)
op_csv_file = os.path.join(args.temp_dir, args.op_csv)
fetch_csv_file = os.path.join(args.temp_dir, args.fetch_csv)
ld_debug_file = os.path.join(args.temp_dir, args.ld_debug_file)
Expand Down

0 comments on commit a567525

Please sign in to comment.