rowan-python 3.1.10__tar.gz → 3.1.12__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {rowan_python-3.1.10 → rowan_python-3.1.12}/PKG-INFO +1 -1
- rowan_python-3.1.12/docs/api/api-keys.md +24 -0
- rowan_python-3.1.12/docs/api/calculation.md +11 -0
- rowan_python-3.1.12/docs/api/folder.md +11 -0
- rowan_python-3.1.12/docs/api/molecule.md +67 -0
- rowan_python-3.1.12/docs/api/project.md +23 -0
- rowan_python-3.1.12/docs/api/protein.md +23 -0
- rowan_python-3.1.12/docs/api/user.md +18 -0
- rowan_python-3.1.12/docs/api/webhooks.md +16 -0
- rowan_python-3.1.12/docs/api/workflow.md +23 -0
- rowan_python-3.1.12/docs/images/RowanLogoLarge.png +0 -0
- rowan_python-3.1.12/docs/images/RowanSquareLogo.png +0 -0
- rowan_python-3.1.12/docs/images/favicon.svg +3 -0
- rowan_python-3.1.12/docs/index.md +106 -0
- rowan_python-3.1.12/docs/stylesheets/colors.css +76 -0
- rowan_python-3.1.12/docs/workflows/admet.md +11 -0
- rowan_python-3.1.12/docs/workflows/analogue-docking.md +11 -0
- rowan_python-3.1.12/docs/workflows/basic-calculation.md +11 -0
- rowan_python-3.1.12/docs/workflows/batch-docking.md +11 -0
- rowan_python-3.1.12/docs/workflows/binding-affinity.md +11 -0
- rowan_python-3.1.12/docs/workflows/bond-dissociation-energy.md +11 -0
- rowan_python-3.1.12/docs/workflows/conformer-search-settings.md +21 -0
- rowan_python-3.1.12/docs/workflows/conformer-search.md +11 -0
- rowan_python-3.1.12/docs/workflows/covalent-inhibitor-scan.md +11 -0
- rowan_python-3.1.12/docs/workflows/descriptors.md +11 -0
- rowan_python-3.1.12/docs/workflows/docking.md +11 -0
- rowan_python-3.1.12/docs/workflows/double-ended-ts-search.md +11 -0
- rowan_python-3.1.12/docs/workflows/electronic-properties.md +11 -0
- rowan_python-3.1.12/docs/workflows/fukui.md +11 -0
- rowan_python-3.1.12/docs/workflows/hydrogen-bond-donor-acceptor-strength.md +11 -0
- rowan_python-3.1.12/docs/workflows/interaction-energy-decomposition.md +11 -0
- rowan_python-3.1.12/docs/workflows/ion-mobility.md +11 -0
- rowan_python-3.1.12/docs/workflows/irc.md +11 -0
- rowan_python-3.1.12/docs/workflows/logp.md +11 -0
- rowan_python-3.1.12/docs/workflows/macropka.md +11 -0
- rowan_python-3.1.12/docs/workflows/membrane-permeability.md +11 -0
- rowan_python-3.1.12/docs/workflows/msa.md +11 -0
- rowan_python-3.1.12/docs/workflows/multistage-optimization.md +11 -0
- rowan_python-3.1.12/docs/workflows/nmr.md +11 -0
- rowan_python-3.1.12/docs/workflows/pka.md +11 -0
- rowan_python-3.1.12/docs/workflows/pocket-detection.md +11 -0
- rowan_python-3.1.12/docs/workflows/pose-analysis-md.md +11 -0
- rowan_python-3.1.12/docs/workflows/protein-binder-design.md +11 -0
- rowan_python-3.1.12/docs/workflows/protein-cofolding.md +11 -0
- rowan_python-3.1.12/docs/workflows/protein-md.md +11 -0
- rowan_python-3.1.12/docs/workflows/protein-preparation.md +11 -0
- rowan_python-3.1.12/docs/workflows/rbfe-graph.md +11 -0
- rowan_python-3.1.12/docs/workflows/redox-potential.md +11 -0
- rowan_python-3.1.12/docs/workflows/relative-binding-free-energy-perturbation.md +11 -0
- rowan_python-3.1.12/docs/workflows/scan.md +11 -0
- rowan_python-3.1.12/docs/workflows/settings.md +43 -0
- rowan_python-3.1.12/docs/workflows/solubility.md +11 -0
- rowan_python-3.1.12/docs/workflows/solvent-dependent-conformers.md +11 -0
- rowan_python-3.1.12/docs/workflows/spin-states.md +11 -0
- rowan_python-3.1.12/docs/workflows/strain.md +11 -0
- rowan_python-3.1.12/docs/workflows/tautomer-search.md +11 -0
- rowan_python-3.1.12/docs/workflows/types.md +80 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/analogue_docking.py +1 -1
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/batch_docking.py +7 -5
- rowan_python-3.1.12/examples/batch_solubility.py +21 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/binding_affinity.py +1 -1
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/covalent_docking.py +22 -6
- rowan_python-3.1.12/examples/covalent_inhibitor_scan.py +59 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/docking.py +8 -4
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/docking_screen.py +7 -5
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/pocket_detection.py +7 -5
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/pose_analysis_md.py +9 -4
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/protein_md.py +7 -6
- rowan_python-3.1.12/examples/protein_preparation.py +18 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/relative_binding_free_energy_perturbation.py +7 -2
- rowan_python-3.1.12/mkdocs.yml +133 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/pixi.lock +476 -437
- {rowan_python-3.1.10 → rowan_python-3.1.12}/pyproject.toml +2 -2
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/__init__.py +1 -1
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/api_keys.py +54 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/protein.py +8 -5
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/types.py +1 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/__init__.py +7 -1
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/analogue_docking.py +2 -1
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/base.py +69 -5
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/batch_docking.py +4 -1
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/binding_affinity.py +2 -2
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/covalent_inhibitor_scan.py +2 -1
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/docking.py +2 -1
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/pocket_detection.py +2 -1
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/pose_analysis_md.py +2 -1
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/protein_md.py +2 -1
- rowan_python-3.1.12/rowan/workflows/protein_preparation.py +130 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/relative_binding_free_energy_perturbation.py +2 -1
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/solubility.py +110 -28
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/SKILL.md +2 -1
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/analogue_docking.md +3 -3
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/batch_docking.md +7 -5
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/binding_affinity.md +2 -2
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/covalent_inhibitor_scan.md +2 -2
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/docking.md +8 -6
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/pocket_detection.md +8 -6
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/pose_analysis_md.md +9 -4
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/protein_md.md +8 -6
- rowan_python-3.1.12/skills/computational-chemistry-and-biology/reference/protein_preparation.md +101 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/relative_binding_free_energy_perturbation.md +6 -3
- rowan_python-3.1.12/tests/test_workflow_submission.py +118 -0
- rowan_python-3.1.10/docs/images/deciduous-tree-favicon.png +0 -0
- rowan_python-3.1.10/docs/index.md +0 -521
- rowan_python-3.1.10/docs/stylesheets/colors.css +0 -6
- rowan_python-3.1.10/examples/covalent_inhibitor_scan.py +0 -38
- rowan_python-3.1.10/mkdocs.yml +0 -34
- rowan_python-3.1.10/skills/computational-chemistry-and-biology/reference/protein_prep.md +0 -79
- {rowan_python-3.1.10 → rowan_python-3.1.12}/.agents/plugins/marketplace.json +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/.claude-plugin/marketplace.json +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/.codex-plugin/plugin.json +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/.envrc +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/.github/workflows/build-and-deploy-docs.yml +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/.github/workflows/publish-skill.yml +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/.github/workflows/python-publish.yml +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/.github/workflows/test.yml +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/.gitignore +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/.pre-commit-config.yaml +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/AGENTS.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/CLAUDE.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/GEMINI.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/LICENSE +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/README.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/PROTAC_solubility.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/admet.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/aqueous_solubility.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/basic_calculation.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/basic_calculation_from_json.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/basic_calculation_with_constraint.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/basic_calculation_with_solvent.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/bde.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/boltz_paired_msa.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/boltz_single_msa.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/chai_paired_msa.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/chai_single_msa.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/cofolding_screen.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/colabfold_paired_msa.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/colabfold_single_msa.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/conformer_dependent_redox.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/conformers.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/conformers_screen.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/data/1iep_receptorH.pdb +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/data/Al_FCC.xyz +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/data/citalopram_1iep.xyz +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/data/ibuprofen_conformers.sdf +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/data/tyk2_ligands.sdf +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/data/tyk2_structure.pdb +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/data/workflow_example.json +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/dcd_download.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/descriptors.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/double_ended_ts_search.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/electronic_properties.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/estimate_workflow.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/fukui_index.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/hydrogen_bond_basicity.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/interaction_energy_decomposition.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/ion_mobility.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/irc.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/logp.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/macropka.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/membrane_permeability.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/multistage_optimization.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/nmr.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/optimization.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/pdb_download.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/periodic_dft.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/phenol_pka.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/pka.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/project_scoped_api_key.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/protein_binder_design.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/protein_cofolding.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/protein_cofolding_with_constraints.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/protein_cofolding_with_templates.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/rbfe_graph.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/rbfe_resubmit.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/redox_potential.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/resubmit_with_perturbations.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/retrieve_workflow.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/scan.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/solvent_dependent_conformers.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/spin_states.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/strain.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/tautomer.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/template.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/examples/webhook.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/calculation.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/config.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/constants.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/folder.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/molecule.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/project.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/py.typed +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/user.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/utils.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/admet.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/basic_calculation.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/bde.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/conformer_search.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/constants.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/descriptors.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/double_ended_ts_search.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/electronic_properties.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/fukui.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/hydrogen_bond_donor_acceptor_strength.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/interaction_energy_decomposition.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/ion_mobility.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/irc.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/logp.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/macropka.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/membrane_permeability.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/msa.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/multistage_optimization.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/nmr.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/pka.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/protein_binder_design.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/protein_cofolding.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/rbfe_graph.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/redox_potential.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/scan.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/solvent_dependent_conformers.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/spin_states.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/strain.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/rowan/workflows/tautomer_search.py +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/admet.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/basic_calculation.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/bde.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/conformer_search.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/descriptors.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/double_ended_ts_search.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/electronic_properties.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/folders_and_projects.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/fukui.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/hydrogen_bond_donor_acceptor_strength.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/interaction_energy_decomposition.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/ion_mobility.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/irc.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/logp.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/macropka.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/mcp_execution.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/membrane_permeability.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/msa.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/multistage_optimization.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/nmr.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/pka.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/protein_binder_design.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/protein_cofolding.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/python_sdk.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/rbfe_graph.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/redox_potential.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/scan.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/solubility.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/solvent_dependent_conformers.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/spin_states.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/strain.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/tautomer_search.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/reference/webhooks.md +0 -0
- {rowan_python-3.1.10 → rowan_python-3.1.12}/skills/computational-chemistry-and-biology/scripts/check_env.py +0 -0
- {rowan_python-3.1.10/rowan → rowan_python-3.1.12/tests}/test_utils.py +0 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# API Keys
|
|
2
|
+
|
|
3
|
+
::: rowan.api_keys
|
|
4
|
+
handler: python
|
|
5
|
+
options:
|
|
6
|
+
show_source: false
|
|
7
|
+
show_root_heading: false
|
|
8
|
+
show_root_toc_entry: false
|
|
9
|
+
members_order: source
|
|
10
|
+
group_by_category: true
|
|
11
|
+
filters: ["!^_"]
|
|
12
|
+
|
|
13
|
+
::: rowan.utils
|
|
14
|
+
handler: python
|
|
15
|
+
options:
|
|
16
|
+
show_source: false
|
|
17
|
+
show_root_heading: false
|
|
18
|
+
show_root_toc_entry: false
|
|
19
|
+
members_order: source
|
|
20
|
+
group_by_category: true
|
|
21
|
+
filters: ["!^_"]
|
|
22
|
+
members:
|
|
23
|
+
- api_credentials
|
|
24
|
+
- get_api_key
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# Molecule
|
|
2
|
+
|
|
3
|
+
::: rowan.molecule
|
|
4
|
+
handler: python
|
|
5
|
+
options:
|
|
6
|
+
show_source: false
|
|
7
|
+
show_root_heading: false
|
|
8
|
+
show_root_toc_entry: false
|
|
9
|
+
members_order: source
|
|
10
|
+
group_by_category: true
|
|
11
|
+
filters: ["!^_"]
|
|
12
|
+
|
|
13
|
+
::: rowan.utils
|
|
14
|
+
handler: python
|
|
15
|
+
options:
|
|
16
|
+
show_source: false
|
|
17
|
+
show_root_heading: false
|
|
18
|
+
show_root_toc_entry: false
|
|
19
|
+
members_order: source
|
|
20
|
+
group_by_category: true
|
|
21
|
+
filters: ["!^_"]
|
|
22
|
+
members:
|
|
23
|
+
- smiles_to_stjames
|
|
24
|
+
|
|
25
|
+
::: stjames.atom
|
|
26
|
+
handler: python
|
|
27
|
+
options:
|
|
28
|
+
show_source: false
|
|
29
|
+
show_root_heading: false
|
|
30
|
+
show_root_toc_entry: false
|
|
31
|
+
members_order: source
|
|
32
|
+
group_by_category: true
|
|
33
|
+
filters: ["!^_"]
|
|
34
|
+
|
|
35
|
+
::: stjames.molecule
|
|
36
|
+
handler: python
|
|
37
|
+
options:
|
|
38
|
+
show_source: false
|
|
39
|
+
show_root_heading: false
|
|
40
|
+
show_root_toc_entry: false
|
|
41
|
+
members_order: source
|
|
42
|
+
group_by_category: true
|
|
43
|
+
filters: ["!^_"]
|
|
44
|
+
members:
|
|
45
|
+
- VibrationalMode
|
|
46
|
+
|
|
47
|
+
::: stjames.periodic_cell
|
|
48
|
+
handler: python
|
|
49
|
+
options:
|
|
50
|
+
show_source: false
|
|
51
|
+
show_root_heading: false
|
|
52
|
+
show_root_toc_entry: false
|
|
53
|
+
members_order: source
|
|
54
|
+
group_by_category: true
|
|
55
|
+
filters: ["!^_"]
|
|
56
|
+
|
|
57
|
+
::: stjames.periodic_properties
|
|
58
|
+
handler: python
|
|
59
|
+
options:
|
|
60
|
+
show_source: false
|
|
61
|
+
show_root_heading: false
|
|
62
|
+
show_root_toc_entry: false
|
|
63
|
+
members_order: source
|
|
64
|
+
group_by_category: true
|
|
65
|
+
filters: ["!^_"]
|
|
66
|
+
members:
|
|
67
|
+
- BandStructure
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Project
|
|
2
|
+
|
|
3
|
+
::: rowan.project
|
|
4
|
+
handler: python
|
|
5
|
+
options:
|
|
6
|
+
show_source: false
|
|
7
|
+
show_root_heading: false
|
|
8
|
+
show_root_toc_entry: false
|
|
9
|
+
members_order: source
|
|
10
|
+
group_by_category: true
|
|
11
|
+
filters: ["!^_"]
|
|
12
|
+
|
|
13
|
+
::: rowan.utils
|
|
14
|
+
handler: python
|
|
15
|
+
options:
|
|
16
|
+
show_source: false
|
|
17
|
+
show_root_heading: false
|
|
18
|
+
show_root_toc_entry: false
|
|
19
|
+
members_order: source
|
|
20
|
+
group_by_category: true
|
|
21
|
+
filters: ["!^_"]
|
|
22
|
+
members:
|
|
23
|
+
- get_project_uuid
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Protein
|
|
2
|
+
|
|
3
|
+
::: rowan.protein
|
|
4
|
+
handler: python
|
|
5
|
+
options:
|
|
6
|
+
show_source: false
|
|
7
|
+
show_root_heading: false
|
|
8
|
+
show_root_toc_entry: false
|
|
9
|
+
members_order: source
|
|
10
|
+
group_by_category: true
|
|
11
|
+
filters: ["!^_"]
|
|
12
|
+
|
|
13
|
+
::: stjames.protein
|
|
14
|
+
handler: python
|
|
15
|
+
options:
|
|
16
|
+
show_source: false
|
|
17
|
+
show_root_heading: false
|
|
18
|
+
show_root_toc_entry: false
|
|
19
|
+
members_order: source
|
|
20
|
+
group_by_category: true
|
|
21
|
+
filters: ["!^_"]
|
|
22
|
+
members:
|
|
23
|
+
- ProteinSequence
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# User
|
|
2
|
+
|
|
3
|
+
::: rowan.user
|
|
4
|
+
handler: python
|
|
5
|
+
options:
|
|
6
|
+
show_source: false
|
|
7
|
+
show_root_heading: false
|
|
8
|
+
show_root_toc_entry: false
|
|
9
|
+
members_order: source
|
|
10
|
+
group_by_category: true
|
|
11
|
+
filters: ["!^_"]
|
|
12
|
+
members:
|
|
13
|
+
- User
|
|
14
|
+
- Organization
|
|
15
|
+
- OrganizationRole
|
|
16
|
+
- SubscriptionPlan
|
|
17
|
+
- IndividualSubscription
|
|
18
|
+
- whoami
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Webhooks
|
|
2
|
+
|
|
3
|
+
::: rowan.user
|
|
4
|
+
handler: python
|
|
5
|
+
options:
|
|
6
|
+
show_source: false
|
|
7
|
+
show_root_heading: false
|
|
8
|
+
show_root_toc_entry: false
|
|
9
|
+
members_order: source
|
|
10
|
+
group_by_category: true
|
|
11
|
+
filters: ["!^_"]
|
|
12
|
+
members:
|
|
13
|
+
- get_webhook_secret
|
|
14
|
+
- create_webhook_secret
|
|
15
|
+
- rotate_webhook_secret
|
|
16
|
+
- verify_webhook_secret
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Workflow
|
|
2
|
+
|
|
3
|
+
::: rowan.workflows.base
|
|
4
|
+
handler: python
|
|
5
|
+
options:
|
|
6
|
+
show_source: false
|
|
7
|
+
show_root_heading: false
|
|
8
|
+
show_root_toc_entry: false
|
|
9
|
+
members_order: source
|
|
10
|
+
group_by_category: true
|
|
11
|
+
filters: ["!^_"]
|
|
12
|
+
members:
|
|
13
|
+
- Workflow
|
|
14
|
+
- WorkflowResult
|
|
15
|
+
- WorkflowError
|
|
16
|
+
- DispatchInfo
|
|
17
|
+
- Message
|
|
18
|
+
- submit_workflow
|
|
19
|
+
- retrieve_workflow
|
|
20
|
+
- retrieve_workflows
|
|
21
|
+
- list_workflows
|
|
22
|
+
- batch_submit_workflow
|
|
23
|
+
- batch_poll_status
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M23.9999 0.100006C28.8538 0.100006 32.7894 4.06917 32.7894 8.96587C32.7894 10.7904 32.2414 12.485 31.3049 13.8946C32.3442 12.5606 33.7738 11.5125 35.4936 10.9487C40.1098 9.4354 45.0674 11.9846 46.5675 16.6415C48.0671 21.2983 45.542 26.3001 40.926 27.8134C39.207 28.3769 37.441 28.3759 35.8234 27.9137C37.4013 28.4988 38.8306 29.5461 39.8931 31.0212C42.7458 34.9825 41.8749 40.5264 37.949 43.4049C34.0221 46.2831 28.5256 45.4063 25.6725 41.445C24.6097 39.9691 24.0636 38.2735 23.9999 36.5778C23.9362 38.2733 23.3916 39.9691 22.3287 41.445C19.4757 45.4063 13.9804 46.284 10.0537 43.4063C6.12684 40.5279 5.25514 34.9828 8.10823 31.0212C9.17046 29.5463 10.599 28.4988 12.1765 27.9137C10.5592 28.3755 8.79387 28.3768 7.07529 27.8134C2.45914 26.3003 -0.0672141 21.2985 1.43234 16.6415C2.93236 11.9844 7.89139 9.4354 12.5075 10.9487C14.2241 11.5115 15.651 12.5573 16.6897 13.8879C15.7563 12.4798 15.2119 10.7871 15.2119 8.96587C15.2119 4.0693 19.1463 0.100293 23.9999 0.100006ZM30.9434 14.397C29.3352 16.4856 26.8245 17.8318 23.9999 17.8318C21.1781 17.8317 18.6686 16.4891 17.0605 14.4037C18.5297 16.5911 19.0211 19.4143 18.1492 22.1219C17.2765 24.8304 15.2327 26.8222 12.7685 27.7199C15.2856 26.9848 18.1005 27.3871 20.3846 29.0612C22.6696 30.7365 23.9165 33.3144 23.9999 35.9578C24.0836 33.314 25.3325 30.7351 27.618 29.0598C29.9008 27.3872 32.7132 26.985 35.2288 27.7186C32.7659 26.82 30.7241 24.8279 29.8521 22.1206C28.9795 19.4106 29.4712 16.585 30.9434 14.397Z" fill="#24B256"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
{ width="320" }
|
|
2
|
+
|
|
3
|
+
# Rowan Python API
|
|
4
|
+
|
|
5
|
+
The `rowan` package is the official Python client for the [Rowan](https://rowansci.com) computational
|
|
6
|
+
chemistry platform. Submit workflows, poll or stream results, and manage
|
|
7
|
+
molecules, proteins, folders, and projects—all from plain Python.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
=== "pip"
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
pip install rowan-python
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
=== "pixi"
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pixi add --pypi rowan-python
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
=== "uv"
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
uv add rowan-python
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Authentication
|
|
30
|
+
|
|
31
|
+
Create an API key on your [account page](https://labs.rowansci.com/account), then either export
|
|
32
|
+
it as an environment variable or set it directly on the module:
|
|
33
|
+
|
|
34
|
+
```python
|
|
35
|
+
import os
|
|
36
|
+
|
|
37
|
+
os.environ["ROWAN_API_KEY"] # picked up automatically, or...
|
|
38
|
+
|
|
39
|
+
import rowan
|
|
40
|
+
|
|
41
|
+
rowan.api_key = "rowan-sk..."
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
!!! tip "Working in a shared process?"
|
|
45
|
+
Use [`rowan.api_credentials`](api/api-keys.md) to scope a key to a single `with` block instead
|
|
46
|
+
of setting it globally — handy for multi-tenant scripts or test suites.
|
|
47
|
+
|
|
48
|
+
## Quickstart
|
|
49
|
+
|
|
50
|
+
This example runs a geometry optimization on isoprene and streams each optimization step as it
|
|
51
|
+
completes:
|
|
52
|
+
|
|
53
|
+
```python title="quickstart.py" linenums="1"
|
|
54
|
+
import rowan
|
|
55
|
+
|
|
56
|
+
folder = rowan.get_folder("examples") # (1)!
|
|
57
|
+
|
|
58
|
+
workflow = rowan.submit_basic_calculation_workflow(
|
|
59
|
+
initial_molecule=rowan.Molecule.from_smiles("CC(=C)C=C"),
|
|
60
|
+
preset="rapid_semiempirical", # (2)!
|
|
61
|
+
tasks=["optimize"],
|
|
62
|
+
name="Isoprene Optimization",
|
|
63
|
+
folder=folder,
|
|
64
|
+
)
|
|
65
|
+
|
|
66
|
+
print(f"View workflow at: https://labs.rowansci.com/calculation/{workflow.uuid}")
|
|
67
|
+
|
|
68
|
+
for result in workflow.stream_result(poll_interval=3): # (3)!
|
|
69
|
+
if result.calculation_uuid:
|
|
70
|
+
mols = rowan.retrieve_calculation_molecules(result.calculation_uuid)
|
|
71
|
+
print(f" {len(mols)} opt steps, energy={mols[-1].get('energy') if mols else None}")
|
|
72
|
+
|
|
73
|
+
print(result) # (4)!
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
1. Folders are created on first use — no need to pre-create them in the UI.
|
|
77
|
+
2. Presets bundle a method, basis set, and corrections into one named choice. See
|
|
78
|
+
[Basic Calculation](workflows/basic-calculation.md) for the full list and when to use each one.
|
|
79
|
+
3. `stream_result` polls the API and yields an updated result after every optimization step,
|
|
80
|
+
instead of blocking until the whole workflow finishes.
|
|
81
|
+
4. The final yielded result is the completed workflow — same object you'd get from `workflow.result`
|
|
82
|
+
after `workflow.wait()`.
|
|
83
|
+
|
|
84
|
+
## What's next
|
|
85
|
+
|
|
86
|
+
<div class="grid cards" markdown>
|
|
87
|
+
|
|
88
|
+
- :material-flask-outline: **Workflows**
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
Every Rowan workflow's submit function, settings, and result type, grouped by molecular
|
|
93
|
+
modeling, property prediction, protein–ligand, spectrometry, and cheminformatics.
|
|
94
|
+
|
|
95
|
+
[:octicons-arrow-right-24: Browse workflows](workflows/basic-calculation.md)
|
|
96
|
+
|
|
97
|
+
- :material-code-braces: **Objects**
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
`Molecule`, `Protein`, `Folder`, `Project`, `Workflow`, `Calculation`, and the account/API-key
|
|
102
|
+
types every workflow builds on.
|
|
103
|
+
|
|
104
|
+
[:octicons-arrow-right-24: Browse objects](api/workflow.md)
|
|
105
|
+
|
|
106
|
+
</div>
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
/* Rowan brand palette */
|
|
2
|
+
:root > * {
|
|
3
|
+
--color-light: #FFFFFF;
|
|
4
|
+
--color-offlight: #F4F5F4;
|
|
5
|
+
--color-neutral: #DDDDDD;
|
|
6
|
+
|
|
7
|
+
--color-subtle: #6E716E;
|
|
8
|
+
--color-dark: #181D18;
|
|
9
|
+
|
|
10
|
+
--color-border-primary: #74967E;
|
|
11
|
+
--color-border-secondary: #BACBBF;
|
|
12
|
+
|
|
13
|
+
--color-form-text: #5A7763;
|
|
14
|
+
--color-form-placeholder: #9CADA1;
|
|
15
|
+
--color-link-text: #5A7763;
|
|
16
|
+
|
|
17
|
+
--color-primary-bright: #24B256;
|
|
18
|
+
--color-primary-std: #189143;
|
|
19
|
+
--color-primary-hover: #14793B;
|
|
20
|
+
--color-primary-active: #0C5C30;
|
|
21
|
+
--color-primary-disabled: #7AA982;
|
|
22
|
+
|
|
23
|
+
/* Header + top nav-tabs bar: offlight background instead of a solid green fill */
|
|
24
|
+
--md-primary-fg-color: var(--color-offlight);
|
|
25
|
+
--md-primary-fg-color--light: var(--color-light);
|
|
26
|
+
--md-primary-fg-color--dark: var(--color-offlight);
|
|
27
|
+
--md-primary-bg-color: var(--color-dark);
|
|
28
|
+
--md-primary-bg-color--light: var(--color-subtle);
|
|
29
|
+
|
|
30
|
+
/* Accent: links, buttons, focus rings, and (via --md-typeset-a-color below) the
|
|
31
|
+
current-page highlight in the sidebar nav. Material defaults --md-typeset-a-color
|
|
32
|
+
to --md-primary-fg-color, which would make it offlight-on-white and invisible —
|
|
33
|
+
pin it to the brand green explicitly instead. */
|
|
34
|
+
--md-accent-fg-color: var(--color-primary-std);
|
|
35
|
+
--md-accent-fg-color--transparent: #1891431a;
|
|
36
|
+
--md-accent-bg-color: var(--color-light);
|
|
37
|
+
--md-typeset-a-color: var(--color-primary-std);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/* Material's collapsed search box is a translucent-black pill tuned for a dark
|
|
41
|
+
header; against our light header it read as a dark gray box. Use a plain
|
|
42
|
+
light input instead. */
|
|
43
|
+
.md-search__form {
|
|
44
|
+
background-color: var(--color-neutral);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.md-search__form:hover {
|
|
48
|
+
background-color: var(--color-border-secondary);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/* Material hardcodes each admonition type's accent color (tip = teal, #00bfa5)
|
|
52
|
+
rather than deriving it from the theme palette — recolor "tip" to match brand green. */
|
|
53
|
+
.md-typeset .admonition.tip,
|
|
54
|
+
.md-typeset details.tip {
|
|
55
|
+
border-color: var(--color-primary-std);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.md-typeset .admonition.tip:focus-within,
|
|
59
|
+
.md-typeset details.tip:focus-within {
|
|
60
|
+
box-shadow: 0 0 0 0.2rem var(--md-accent-fg-color--transparent);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.md-typeset .tip > .admonition-title,
|
|
64
|
+
.md-typeset .tip > summary {
|
|
65
|
+
background-color: var(--md-accent-fg-color--transparent);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.md-typeset .tip > .admonition-title::before,
|
|
69
|
+
.md-typeset .tip > summary::before {
|
|
70
|
+
background-color: var(--color-primary-std);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.md-typeset .tip > .admonition-title::after,
|
|
74
|
+
.md-typeset .tip > summary::after {
|
|
75
|
+
color: var(--color-primary-std);
|
|
76
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Conformer Search Settings
|
|
2
|
+
|
|
3
|
+
::: stjames.conformers
|
|
4
|
+
handler: python
|
|
5
|
+
options:
|
|
6
|
+
show_source: false
|
|
7
|
+
show_root_heading: false
|
|
8
|
+
show_root_toc_entry: false
|
|
9
|
+
members_order: source
|
|
10
|
+
group_by_category: true
|
|
11
|
+
filters: ["!^_"]
|
|
12
|
+
|
|
13
|
+
::: stjames.trajectory_clustering
|
|
14
|
+
handler: python
|
|
15
|
+
options:
|
|
16
|
+
show_source: false
|
|
17
|
+
show_root_heading: false
|
|
18
|
+
show_root_toc_entry: false
|
|
19
|
+
members_order: source
|
|
20
|
+
group_by_category: true
|
|
21
|
+
filters: ["!^_"]
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Hydrogen Bond Donor/Acceptor Strength
|
|
2
|
+
|
|
3
|
+
::: rowan.workflows.hydrogen_bond_donor_acceptor_strength
|
|
4
|
+
handler: python
|
|
5
|
+
options:
|
|
6
|
+
show_source: false
|
|
7
|
+
show_root_heading: false
|
|
8
|
+
show_root_toc_entry: false
|
|
9
|
+
members_order: source
|
|
10
|
+
group_by_category: true
|
|
11
|
+
filters: ["!^_"]
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Interaction Energy Decomposition
|
|
2
|
+
|
|
3
|
+
::: rowan.workflows.interaction_energy_decomposition
|
|
4
|
+
handler: python
|
|
5
|
+
options:
|
|
6
|
+
show_source: false
|
|
7
|
+
show_root_heading: false
|
|
8
|
+
show_root_toc_entry: false
|
|
9
|
+
members_order: source
|
|
10
|
+
group_by_category: true
|
|
11
|
+
filters: ["!^_"]
|