-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #725 from OpenFreeEnergy/doc_drive_2
Doc drive 2
- Loading branch information
Showing
8 changed files
with
110 additions
and
101 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
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
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,21 @@ | ||
OpenMM Molecular Dynamics Protocol | ||
================================== | ||
|
||
This Protocol implements a standard MD execution for a solvated protein system. | ||
|
||
Protocol Settings | ||
----------------- | ||
|
||
.. module:: openfe.protocols.openmm_md | ||
|
||
.. autopydantic_model:: PlainMDProtocolSettings | ||
:model-show-json: False | ||
:model-show-field-summary: False | ||
:model-show-config-member: False | ||
:model-show-config-summary: False | ||
:model-show-validator-members: False | ||
:model-show-validator-summary: False | ||
:field-list-validators: False | ||
:inherited-members: SettingsBaseModel | ||
:exclude-members: get_defaults | ||
:member-order: bysource |
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