Description
I'm wondering how I can write a dag/submit pair where each node in the dag simply requires a different value of a single argument, but that the arguments parameter in the submit file contains other things, e.g.
$ cat test.sub
universe = vanilla
executable = /bin/cat
arguments = "-n $(ARG1)"
transfer_input_files = $(ARG1)
...
$ cat test.dag
JOB 1 test.sub
VARS 1 ARG1="file1.txt"
JOB 2 test.sub
VARS 2 ARG1="file2.txt"
Is this possible within the confines of the current Job implementation, if so, how? Apologies if this is in the docs and I just can't search properly.