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
@lorisercole@csadorf The flippercalc needs to work with the new AiiDA workchains and the imports from AIiDA >= 1.0. I will create a new branch migration-flippercalc and work on that branch to fix that
The text was updated successfully, but these errors were encountered:
With commit bf0f5bf FlipperCalc produces a valid outputfile that can be submitted by the daemon.
It remains to adapt the parser (parsers/flipper.py).
As a note, to re-run an import flippercalculation, I do the following:
cj = load_node('68020426-27a7-4b59-9890-74e7e656b472') # the calcJob importd
inputs_dict = {l.link_label:l.node for l in cj.get_incoming().all() if not l.link_label.startswith('pseudo')}
pseudos = {l.link_label.replace('pseudo_',''):l.node for l in cj.get_incoming().all() if l.link_label.startswith('pseudo')}
inputs_dict['pseudos'] = pseudos
inputs_dict['parent_folder'] = inputs_dict.pop('remote_folder')
inputs_dict['code'] = load_node(30419) # a new flipper code, or leave if imported works
run(FlipperCalculation, **inputs_dict)
@lorisercole @csadorf The flippercalc needs to work with the new AiiDA workchains and the imports from AIiDA >= 1.0. I will create a new branch migration-flippercalc and work on that branch to fix that
The text was updated successfully, but these errors were encountered: