Skip to content

Commit

Permalink
fix input file definition
Browse files Browse the repository at this point in the history
  • Loading branch information
ttedeschi authored May 31, 2024
1 parent fedf52f commit e083303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handles.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ def produce_arc_singularity_script(containers, metadata, commands, input_files):
else:
input_string = ""
for file_ in input_files:
input_string = input_string + f'("{file_}" "") '
input_string = input_string + f'("{file_.split("/")[-1]}" "{file_}") '
job = f"""
&( executable = "{executable_path}" )
( jobname = "wn" )
Expand Down

0 comments on commit e083303

Please sign in to comment.