You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd assume the actual name in the YAML file is just a placeholder to link inputs/outputs of the cycles section to the data section? How should the actual file/directory name be determined? I'd say from the src provided in the relevant data entry.
E.g., using initial_cond in the YAML file leads to the following calcinfo.json (this file is dumped by AiiDA in the working directory of the process in the hidden .aiida folder, and contains instructions on the execution of the process):
The text was updated successfully, but these errors were encountered:
GeigerJ2
changed the title
Data.name ends up as the actual file name in ShellTaskData.name ends up as the actual file name in the actual command line arguments to a ShellTaskMar 21, 2025
As discussed with @agoscinski, there are 3 options:
We first make a quick fix in aiida-shell to check if RemoteData points to file or dir and modify the instructions for the remote_[copy,symlink]_list accordingly.
We extend the API of RemoteData (at least add is_dir/is_file). However, as we take much longer with releases in aiida-core a fix in aiida-shell is probably simpler for now.
In addition, even though the instruction in the remote_symlink_list doesn't make any sense, we do not get an error in aiida-core. The problem here is that we construct the RemoteData from the absolute path to a file, while in aiida-shell, when the instruction of the CalcInfo is created in the prepare_for_submission, this path is expanded by a tailing /*.
Other, hacky possible solution in Sirocco: Use filenames argument, either resolved automatically from src, or expose to the user, but preferred that we fix this in AiiDA.
NOTE: Currently working off #126.
I'd assume the actual name in the YAML file is just a placeholder to link inputs/outputs of the
cycles
section to thedata
section? How should the actual file/directory name be determined? I'd say from thesrc
provided in the relevantdata
entry.E.g., using
initial_cond
in the YAML file leads to the followingcalcinfo.json
(this file is dumped by AiiDA in the working directory of the process in the hidden.aiida
folder, and contains instructions on the execution of the process):This could be fixed by setting the
filenames
argument to theShellJob/ShellTask
.Alternatively, fix could be applied in the
resolve_ports
method here:https://github.com/GeigerJ2/Sirocco/blob/ca2152ec2f72c349947db22db0b14bf52280007c/src/sirocco/parsing/yaml_data_models.py#L286
-> Probably not, though, as this method still yields placeholders...
The text was updated successfully, but these errors were encountered: