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.
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
Fairmat 2024: several new base classes in NXsample and NXsample_component #1413
base: main
Are you sure you want to change the base?
Fairmat 2024: several new base classes in NXsample and NXsample_component #1413
Changes from all commits
052672c
cdd4526
37a5815
75ed0d7
043212e
756babd
dd334e8
0646f1c
94cff3b
3e1659f
6fedba0
5ba496b
d76192c
d92ffc7
881b56f
5f898ee
9d5117d
47cd822
191621c
766f70b
dd5c9e9
85bdf7d
b5106c9
1cb49af
e624ea8
67452c4
9741b8c
a74a268
efba790
b364d33
fbd687c
8092ae8
af3ff9f
8f27d2e
db4b40e
910d0d4
6180f23
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Having both the
identifier_inchi_str
field and theidentifier_inchi_key
seems redundant. If you have one, you should be able to figure out the other. If so, do we really need to store (or support storing) both?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.
The idea here is that you could enter either one of these concepts and then, if you are using a proper RDM system (like the one we are building with NOMAD), all the other concepts can be filled automatically. So this is really for the case where you may have the str or the key on hand and just want to fill out the rest from the database.
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.
Why support storing non-canonical representations?
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 think people often work with just the SMILES system (not the canonical one) and there is an algorithm to create the canonical version based on that. So again, you could enter the smiles and the canonical version would get calculated automatically.
But I am certainly no expert on this, so would be open to changing this.