-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into oechemless-registry
- Loading branch information
Showing
49 changed files
with
1,979 additions
and
458 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
<!-- | ||
Thank you for pull request. | ||
Below are a few things we ask you kindly to self-check before getting a review. Remove checks that are not relevant. | ||
--> | ||
|
||
<!-- | ||
Please note any issues this fixes using [closing keywords]( https://help.github.com/articles/closing-issues-using-keywords/ ): | ||
--> | ||
|
||
<!-- | ||
see https://regro.github.io/rever-docs/news.html for details on how to add news entry (you do not need to run the rever command) | ||
--> | ||
|
||
Checklist | ||
* [ ] Added a ``news`` entry | ||
|
||
## Developers certificate of origin | ||
- [ ] I certify that this contribution is covered by the MIT License [here](https://github.com/OpenFreeEnergy/openfe/blob/main/LICENSE) and the **Developer Certificate of Origin** at <https://developercertificate.org/>. |
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 |
---|---|---|
|
@@ -170,3 +170,9 @@ docs/ExampleNotebooks/ | |
|
||
# duecredit | ||
.duecredit.p | ||
|
||
# Some charge stuff | ||
*.model.pt | ||
|
||
# Rever | ||
rever/ |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
ci: | ||
autofix_commit_msg: | | ||
[pre-commit.ci] auto fixes from pre-commit.com hooks | ||
for more information, see https://pre-commit.ci | ||
autofix_prs: true | ||
autoupdate_branch: '' | ||
autoupdate_commit_msg: '[pre-commit.ci] pre-commit autoupdate' | ||
autoupdate_schedule: quarterly | ||
skip: [] | ||
submodules: false | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: check-added-large-files |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
coverage: | ||
status: | ||
project: off |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
================= | ||
openfe Change Log | ||
================= | ||
|
||
.. current developments |
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 |
---|---|---|
@@ -0,0 +1,80 @@ | ||
.. _Atom Mappers: | ||
|
||
Atom Mappings | ||
============= | ||
|
||
Tools for mapping atoms in one molecule to those in another. Used to generate efficient ligand networks. | ||
|
||
.. module:: openfe.setup.atom_mapping | ||
|
||
.. rubric:: Abstract Base Class | ||
|
||
.. autosummary:: | ||
:nosignatures: | ||
:toctree: generated/ | ||
|
||
LigandAtomMapper | ||
|
||
.. rubric:: Implementations | ||
|
||
.. autosummary:: | ||
:nosignatures: | ||
:toctree: generated/ | ||
|
||
LomapAtomMapper | ||
PersesAtomMapper | ||
|
||
.. rubric:: Data Types | ||
|
||
.. autosummary:: | ||
:nosignatures: | ||
:toctree: generated/ | ||
|
||
LigandAtomMapping | ||
|
||
.. _Atom Map Scorers: | ||
|
||
Atom Map Scorers | ||
---------------- | ||
|
||
Scoring functions for a mapping between ligands. These are used as objective functions for :any:`Ligand Network Planners`. | ||
|
||
|
||
Lomap Scorers | ||
~~~~~~~~~~~~~ | ||
|
||
Scorers implemented by the `LOMAP <https://github.com/OpenFreeEnergy/Lomap>`_ package. | ||
|
||
.. apparently we need the atom_mapping because internally autofunction is | ||
trying ``import openfe.setup.lomap_scorers``, which doesn't work (whereas | ||
``from openfe.setup import lomap_scorers`` does) | ||
.. module:: openfe.setup.atom_mapping.lomap_scorers | ||
|
||
.. autosummary:: | ||
:nosignatures: | ||
:toctree: generated/ | ||
|
||
default_lomap_score | ||
ecr_score | ||
mcsr_score | ||
mncar_score | ||
atomic_number_score | ||
hybridization_score | ||
sulfonamides_score | ||
heterocycles_score | ||
transmuting_methyl_into_ring_score | ||
transmuting_ring_sizes_score | ||
|
||
|
||
Perses Scorers | ||
~~~~~~~~~~~~~~ | ||
|
||
Scorers implemented by the `Perses <https://github.com/choderalab/perses>`_ package. | ||
|
||
.. module:: openfe.setup.atom_mapping.perses_scorers | ||
|
||
.. autosummary:: | ||
:nosignatures: | ||
:toctree: generated/ | ||
|
||
default_perses_scorer |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.