-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Adjust the call paramters for the seekpath_structure_analysis function accordingly. #4
Conversation
and aiidateam/aiida-quantumespresso@ec24908 `seekpath_structure_analysis`: expand parameter input into keywords So, adjust the call method for the seekpath_structure_analysis function accordingly.
I am not sure if you guys actually tested this, but I think this won't work. The
now it should be
|
I tested it with this example and it seems work. But it you are right, the call method is more complex now, we should judge the datatype of the arguments, converting them correctly before passing them into function. Regards |
I tested and it worked, because the aiida-wannier90-workflows/aiida_wannier90_workflows/workflows/bands.py Lines 220 to 226 in 725260e
is the one provided in the workflow inputs
which is always of type orm.Float , that's why it works.
A problem is line 222 where |
I still cannot figure out why you use the most simplified seekpath parameters for that. The seekpath package has many parameters for the dict defined by you:
But you only use one of them. Regards |
That's simply because |
See #3
and
aiidateam/aiida-quantumespresso@ec24908
seekpath_structure_analysis
: expand parameter input into keywordsSo, adjust the call method for the seekpath_structure_analysis function accordingly.