Handling AvailableData
entries that end up as RemoteData
#132
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem is that
RemoteData
behaves likeRemoteFolderData
. Thus, we cannot specify the path to a file in our Sirocco input YAML files, because otherwise, theCalcInfo
object created byaiida-shell
contains instructions such as:meaning that the provided filename is assumed to be a directory name, and its contents are copied over/symlinked to the running directory. For
initial_conditions
, there are no contents, as this is actually a file, thus, nothing is copied over/symlinked to the directory where the dummy ICON task is being run, and the task fails.Changing the spec in our YAML file from:
to
Fixes it for now, but is not really a viable long-term solution, as the
initial_conditions
key in our example:just happens to be the filename we want to symlink, however, it could be anything, as it's just a reference to the
cycles
section.Notes
src
of script to be run on remoteComputer
by copying over?filenames
argument forlaunch_shell_job
symlink
true by default for remote data, rather than copying the files_aiidasubmit.sh
with the absolute paths on the local machineinitial_cond
here:end up literally in the call to the script, e.g.:
Thus, they must correspond to the actual filenames. Do we want this constraint?