Hi Roger,
you are almost there! The problem is that as the error message states,
it cannot find a `StructureData` with the given UUID.
This is because what you have imported is a `CifData` and not a
`StructureData`. It simply represents the raw CIF file you have imported.
However, you can very easily turn it into a structure though. Simply
open a `verdi shell` and do:
cif = load_node(88)
structure = cif.get_structure()
structure.store()
This should parse the CIF into a structure data node that you can then
store.
This you can now use for the `aiida-quantumespresso` command to launch a
pw.x calculation.
Good luck,
Sebastiaan