-
Notifications
You must be signed in to change notification settings - Fork 93
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
Add "desire paths" to API #1192
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
513f998
Re-export fundamental types from openff.toolkit
Yoshanuikabundi 911fd71
Re-export parametertypes in new module
Yoshanuikabundi d02406c
Add ConstraintHandler and ConstraintType to API docs
Yoshanuikabundi ec621c8
Point API docs at re-exported parameter types
Yoshanuikabundi eb46a4a
Remove data and tests from __all__
Yoshanuikabundi 66f0c31
Fix sphinx warnings (including removing docs references to TopologyAt…
Yoshanuikabundi 81ee77f
Isort
Yoshanuikabundi 2c36a0c
Update changelog
Yoshanuikabundi be42146
Move top level re-exports to new app module
Yoshanuikabundi f00d6f9
Lazy imports for openff.toolkit
Yoshanuikabundi 4f4844f
Merge branch 'topology-biopolymer-refactor' into desire_paths
Yoshanuikabundi ed96e05
Add toolkits to app module
Yoshanuikabundi 50ed154
Remove app.py and move toolkit imports to openff.toolkit
Yoshanuikabundi 82e4af4
Move ParameterType re-exports to parameters module
Yoshanuikabundi 88bbb7e
Add test checking that all ParameterTypes have been re-exported
Yoshanuikabundi 9080c6f
Add abstract method to VirtualSiteType base class
Yoshanuikabundi 58cde36
isort
Yoshanuikabundi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,24 +49,25 @@ Parameter Type | |
These are usually initialized during ``ForceField`` creation, and can be inspected and modified by users via the Python API. | ||
For more information, see ``examples/forcefield_modification``. | ||
|
||
.. currentmodule:: openff.toolkit.typing.engines.smirnoff.parameters | ||
.. currentmodule:: openff.toolkit.typing.engines.smirnoff.parametertypes | ||
.. autosummary:: | ||
:nosignatures: | ||
:toctree: api/generated/ | ||
|
||
ParameterType | ||
BondHandler.BondType | ||
AngleHandler.AngleType | ||
ProperTorsionHandler.ProperTorsionType | ||
ImproperTorsionHandler.ImproperTorsionType | ||
vdWHandler.vdWType | ||
LibraryChargeHandler.LibraryChargeType | ||
GBSAHandler.GBSAType | ||
ChargeIncrementModelHandler.ChargeIncrementType | ||
VirtualSiteHandler.VirtualSiteBondChargeType | ||
VirtualSiteHandler.VirtualSiteMonovalentLonePairType | ||
VirtualSiteHandler.VirtualSiteDivalentLonePairType | ||
VirtualSiteHandler.VirtualSiteTrivalentLonePairType | ||
ConstraintType | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤦 Thanks for catching this! |
||
BondType | ||
AngleType | ||
ProperTorsionType | ||
ImproperTorsionType | ||
vdWType | ||
LibraryChargeType | ||
GBSAType | ||
ChargeIncrementType | ||
VirtualSiteBondChargeType | ||
VirtualSiteMonovalentLonePairType | ||
VirtualSiteDivalentLonePairType | ||
VirtualSiteTrivalentLonePairType | ||
|
||
Parameter Handlers | ||
~~~~~~~~~~~~~~~~~~ | ||
|
@@ -81,6 +82,7 @@ During ``System`` creation, each ``ParameterHandler`` registered to a ``ForceFie | |
|
||
ParameterList | ||
ParameterHandler | ||
ConstraintHandler | ||
BondHandler | ||
AngleHandler | ||
ProperTorsionHandler | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
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.
👍