Skip to content

Commit

Permalink
Fix last-minute change typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Maiken Pedersen committed Sep 13, 2023
1 parent 91a20f3 commit 88451b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/jobs/runners/arc.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,11 +456,11 @@ def prepare_job(self, job_wrapper):
tool_input_tag = input_data.name
file_realname = input_data.dataset.get_display_name()

arc_job.inputs[real_name] = "file://" + file_source
arc_job.inputs[file_realname] = "file://" + file_source

""" This is just for the ARC test-tool, will not be used in the final version using generic tools. """
if "exe" in tool_input_tag:
arc_job.exe_path = "./" + real_name
arc_job.exe_path = "./" + file_realname


""" Potentially more than one file - but currently actually only one, so the for-loop here is currently not actually needed """
Expand Down

0 comments on commit 88451b1

Please sign in to comment.