Wrapping a script which implicitly expects a local file

@sdunc in this case, we would normally symlink the files at the start of the command. If the steps are running as part of the same script, you can always mkdir and mv files as they are generated in the working directory.

ex.

mkdir new_dir &&
ln -s $input_1_varname new_dir/prefix_I_want.ext &&
ln -s $input_2_varname new_dir/prefix_I_want.ext2 &&
EmmaScript -t new_dir/<prefix>
1 Like