-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Converting GAMESS output with multistate calculation #40
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @neelravi !
I left a few comments. My main concern is about custom _state
suffix which breaks the way the converter used to work. Not sure if this is the way to go.
Also, if this PR closes issue #39 , you can add "- Closes #39" line to the PR description and this issue will be closed automatically when the PR is merged.
# ------ | ||
# Get the basename of the TREXIO file | ||
try: | ||
trexio_basename = os.path.splitext(os.path.basename(trexio_filename))[0] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think it is a good idea to do it this way. The user provided trexio_filename
via CLI for a reason - they would expect it to be the name of the output TREXIO file. The moment you start to modify this logic with custom suffixes (like _state
used here) - it becomes confusing and requires extra effort from the user. Now the ground state trexio files are all suffixed with _state_0
which basically breaks how the converter used to work and might affect the user workflows.
I personally think that it might be better to provide the state ID via CLI and let the user do the the conversion N times where N is the desired number of states. Yes, it will require N calls to resultsFile
but at least the user will have full control of the pipeline. @scemama @neelravi what do you think?
trexio.write_state_file_name(trexio_file, [f"{trexio_basename}_state_{i}.hdf5" for i in range(res.num_states)]) | ||
|
||
# CSF group | ||
# --------- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you sure it works as expected? What happens if resultsFile
instance does not contain csf_coefficients
array? What will be written in the TREXIO file in this case when you call write_csf_coefficient
?
raise NotImplementedError(f"Please remove the {trexio_filename} directory manually.") | ||
# Check if the TREXIO file already exists, remove it if it does | ||
trexio_basename = os.path.splitext(os.path.basename(trexio_filename))[0] | ||
existing_file = glob.glob(trexio_basename + "_state_" + "*.hdf5") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comment as above about custom suffix
@neelravi after a quick chat with @scemama , we believe that the best option would be to
|
@neelravi we are planning a PyPI release (for |
@q-posev I will work on it today. |
|
@neelravi thanks ! I left a few comments.
This is not correct (see my comments) for the ground state files. Please fix and adapt the CI so that I can merge this PR. |
This pull request offers a solution (Issue #39) to handle the conversion of gamess or gaussian multistate calculation into multiple trexio files.
The summary of the work:
for s in range(res.num_states):
_state_0.hdf5
or_state_1.hdf5