rowan-python 3.0.0__tar.gz → 3.0.1__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.0.0 → rowan_python-3.0.1}/PKG-INFO +2 -2
- rowan_python-3.0.1/docs/index.md +455 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/analogue_docking.py +1 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/basic_calculation.py +2 -6
- rowan_python-3.0.1/examples/basic_calculation_with_constraint.py +28 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/basic_calculation_with_solvent.py +13 -20
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/bde.py +1 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/conformer_dependent_redox.py +4 -7
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/conformers.py +1 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/docking_screen.py +2 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/double_ended_ts_search.py +6 -13
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/electronic_properties.py +1 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/fukui_index.py +1 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/hydrogen_bond_basicity.py +2 -4
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/ion_mobility.py +1 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/irc.py +3 -7
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/multistage_optimization.py +1 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/nmr.py +1 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/optimization.py +1 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/phenol_pka.py +1 -4
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/pka.py +1 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/pose_analysis_md.py +5 -1
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/redox_potential.py +1 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/scan.py +1 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/spin_states.py +1 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/strain.py +1 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/tautomer.py +1 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/template.py +2 -3
- rowan_python-3.0.1/examples/webhook.py +26 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/pixi.lock +123 -125
- {rowan_python-3.0.0 → rowan_python-3.0.1}/pyproject.toml +3 -7
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/__init__.py +17 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/protein.py +10 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/rowan_rdkit/chem_utils.py +20 -20
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/types.py +1 -1
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/user.py +65 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/admet.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/analogue_docking.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/base.py +22 -9
- rowan_python-3.0.1/rowan/workflows/basic_calculation.py +263 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/batch_docking.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/bde.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/conformer_search.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/descriptors.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/docking.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/double_ended_ts_search.py +17 -11
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/electronic_properties.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/fukui.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/hydrogen_bond_donor_acceptor_strength.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/interaction_energy_decomposition.py +6 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/ion_mobility.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/irc.py +6 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/macropka.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/membrane_permeability.py +4 -1
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/msa.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/multistage_optimization.py +6 -3
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/nmr.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/pka.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/pose_analysis_md.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/protein_binder_design.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/protein_cofolding.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/protein_md.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/rbfe_graph.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/redox_potential.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/relative_binding_free_energy_perturbation.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/scan.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/solubility.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/solvent_dependent_conformers.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/spin_states.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/strain.py +5 -2
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/tautomer_search.py +5 -2
- rowan_python-3.0.0/docs/index.md +0 -59
- rowan_python-3.0.0/examples/basic_calculation_with_constraint.py +0 -35
- rowan_python-3.0.0/rowan/workflows/basic_calculation.py +0 -167
- rowan_python-3.0.0/uv.lock +0 -500
- {rowan_python-3.0.0 → rowan_python-3.0.1}/.envrc +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/.github/workflows/build-and-deploy-docs.yml +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/.github/workflows/python-publish.yml +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/.github/workflows/test.yml +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/.gitignore +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/.pre-commit-config.yaml +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/LICENSE +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/README.md +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/docs/images/deciduous-tree-favicon.png +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/docs/rowan_rdkit.md +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/docs/stylesheets/colors.css +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/PROTAC_solubility.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/admet.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/aqueous_solubility.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/basic_calculation_from_json.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/batch_docking.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/boltz_paired_msa.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/boltz_single_msa.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/chai_paired_msa.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/chai_single_msa.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/cofolding_screen.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/colabfold_paired_msa.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/colabfold_single_msa.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/data/1iep_receptorH.pdb +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/data/citalopram_1iep.xyz +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/data/tyk2_ligands.sdf +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/data/tyk2_structure.pdb +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/data/workflow_example.json +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/dcd_download.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/interaction_energy_decomposition.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/macropka.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/membrane_permeability.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/pdb_download.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/protein_binder_design.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/protein_cofolding.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/protein_md.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/rbfe_graph.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/relative_binding_free_energy_perturbation.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/retrieve_workflow.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/examples/solvent_dependent_conformers.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/mkdocs.yml +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/calculation.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/config.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/constants.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/folder.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/molecule.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/project.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/py.typed +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/rowan_rdkit/__init__.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/utils.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/__init__.py +0 -0
- {rowan_python-3.0.0 → rowan_python-3.0.1}/rowan/workflows/constants.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rowan-python
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1
|
|
4
4
|
Summary: Rowan Python Library
|
|
5
5
|
Project-URL: Homepage, https://github.com/rowansci/rowan-client
|
|
6
6
|
Project-URL: Bug Tracker, https://github.com/rowansci/rowan-client/issues
|
|
@@ -11,7 +11,7 @@ Requires-Dist: httpx
|
|
|
11
11
|
Requires-Dist: nest-asyncio
|
|
12
12
|
Requires-Dist: rdkit
|
|
13
13
|
Requires-Dist: setuptools
|
|
14
|
-
Requires-Dist: stjames>=0.0.
|
|
14
|
+
Requires-Dist: stjames>=0.0.174
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
|
|
17
17
|
# Rowan Python Library
|
|
@@ -0,0 +1,455 @@
|
|
|
1
|
+
## Workflow Utilities
|
|
2
|
+
::: rowan.workflows.base
|
|
3
|
+
handler: python
|
|
4
|
+
options:
|
|
5
|
+
show_source: false
|
|
6
|
+
show_root_heading: false
|
|
7
|
+
show_root_toc_entry: false
|
|
8
|
+
members_order: source
|
|
9
|
+
group_by_category: true
|
|
10
|
+
filters: ["!^__"]
|
|
11
|
+
members:
|
|
12
|
+
- Workflow
|
|
13
|
+
- WorkflowResult
|
|
14
|
+
- WorkflowError
|
|
15
|
+
- Message
|
|
16
|
+
- Solvent
|
|
17
|
+
- Mode
|
|
18
|
+
- submit_workflow
|
|
19
|
+
- retrieve_workflow
|
|
20
|
+
- retrieve_workflows
|
|
21
|
+
- list_workflows
|
|
22
|
+
- batch_submit_workflow
|
|
23
|
+
- batch_poll_status
|
|
24
|
+
|
|
25
|
+
## ADMET
|
|
26
|
+
::: rowan.workflows.admet
|
|
27
|
+
handler: python
|
|
28
|
+
options:
|
|
29
|
+
show_source: false
|
|
30
|
+
show_root_heading: false
|
|
31
|
+
show_root_toc_entry: false
|
|
32
|
+
members_order: source
|
|
33
|
+
group_by_category: true
|
|
34
|
+
filters: ["!^__"]
|
|
35
|
+
|
|
36
|
+
## Analogue Docking
|
|
37
|
+
::: rowan.workflows.analogue_docking
|
|
38
|
+
handler: python
|
|
39
|
+
options:
|
|
40
|
+
show_source: false
|
|
41
|
+
show_root_heading: false
|
|
42
|
+
show_root_toc_entry: false
|
|
43
|
+
members_order: source
|
|
44
|
+
group_by_category: true
|
|
45
|
+
filters: ["!^__"]
|
|
46
|
+
|
|
47
|
+
## Basic Calculation
|
|
48
|
+
::: rowan.workflows.basic_calculation
|
|
49
|
+
handler: python
|
|
50
|
+
options:
|
|
51
|
+
show_source: false
|
|
52
|
+
show_root_heading: false
|
|
53
|
+
show_root_toc_entry: false
|
|
54
|
+
members_order: source
|
|
55
|
+
group_by_category: true
|
|
56
|
+
filters: ["!^__"]
|
|
57
|
+
|
|
58
|
+
## Batch Docking
|
|
59
|
+
::: rowan.workflows.batch_docking
|
|
60
|
+
handler: python
|
|
61
|
+
options:
|
|
62
|
+
show_source: false
|
|
63
|
+
show_root_heading: false
|
|
64
|
+
show_root_toc_entry: false
|
|
65
|
+
members_order: source
|
|
66
|
+
group_by_category: true
|
|
67
|
+
filters: ["!^__"]
|
|
68
|
+
|
|
69
|
+
## Bond Dissociation Energy
|
|
70
|
+
::: rowan.workflows.bde
|
|
71
|
+
handler: python
|
|
72
|
+
options:
|
|
73
|
+
show_source: false
|
|
74
|
+
show_root_heading: false
|
|
75
|
+
show_root_toc_entry: false
|
|
76
|
+
members_order: source
|
|
77
|
+
group_by_category: true
|
|
78
|
+
filters: ["!^__"]
|
|
79
|
+
|
|
80
|
+
## Conformer Search
|
|
81
|
+
::: rowan.workflows.conformer_search
|
|
82
|
+
handler: python
|
|
83
|
+
options:
|
|
84
|
+
show_source: false
|
|
85
|
+
show_root_heading: false
|
|
86
|
+
show_root_toc_entry: false
|
|
87
|
+
members_order: source
|
|
88
|
+
group_by_category: true
|
|
89
|
+
filters: ["!^__"]
|
|
90
|
+
|
|
91
|
+
## Descriptors
|
|
92
|
+
::: rowan.workflows.descriptors
|
|
93
|
+
handler: python
|
|
94
|
+
options:
|
|
95
|
+
show_source: false
|
|
96
|
+
show_root_heading: false
|
|
97
|
+
show_root_toc_entry: false
|
|
98
|
+
members_order: source
|
|
99
|
+
group_by_category: true
|
|
100
|
+
filters: ["!^__"]
|
|
101
|
+
|
|
102
|
+
## Docking
|
|
103
|
+
::: rowan.workflows.docking
|
|
104
|
+
handler: python
|
|
105
|
+
options:
|
|
106
|
+
show_source: false
|
|
107
|
+
show_root_heading: false
|
|
108
|
+
show_root_toc_entry: false
|
|
109
|
+
members_order: source
|
|
110
|
+
group_by_category: true
|
|
111
|
+
filters: ["!^__"]
|
|
112
|
+
|
|
113
|
+
## Double-Ended TS Search
|
|
114
|
+
::: rowan.workflows.double_ended_ts_search
|
|
115
|
+
handler: python
|
|
116
|
+
options:
|
|
117
|
+
show_source: false
|
|
118
|
+
show_root_heading: false
|
|
119
|
+
show_root_toc_entry: false
|
|
120
|
+
members_order: source
|
|
121
|
+
group_by_category: true
|
|
122
|
+
filters: ["!^__"]
|
|
123
|
+
|
|
124
|
+
## Electronic Properties
|
|
125
|
+
::: rowan.workflows.electronic_properties
|
|
126
|
+
handler: python
|
|
127
|
+
options:
|
|
128
|
+
show_source: false
|
|
129
|
+
show_root_heading: false
|
|
130
|
+
show_root_toc_entry: false
|
|
131
|
+
members_order: source
|
|
132
|
+
group_by_category: true
|
|
133
|
+
filters: ["!^__"]
|
|
134
|
+
|
|
135
|
+
## Fukui
|
|
136
|
+
::: rowan.workflows.fukui
|
|
137
|
+
handler: python
|
|
138
|
+
options:
|
|
139
|
+
show_source: false
|
|
140
|
+
show_root_heading: false
|
|
141
|
+
show_root_toc_entry: false
|
|
142
|
+
members_order: source
|
|
143
|
+
group_by_category: true
|
|
144
|
+
filters: ["!^__"]
|
|
145
|
+
|
|
146
|
+
## Hydrogen Bond Donor/Acceptor Strength
|
|
147
|
+
::: rowan.workflows.hydrogen_bond_donor_acceptor_strength
|
|
148
|
+
handler: python
|
|
149
|
+
options:
|
|
150
|
+
show_source: false
|
|
151
|
+
show_root_heading: false
|
|
152
|
+
show_root_toc_entry: false
|
|
153
|
+
members_order: source
|
|
154
|
+
group_by_category: true
|
|
155
|
+
filters: ["!^__"]
|
|
156
|
+
|
|
157
|
+
## Interaction Energy Decomposition
|
|
158
|
+
::: rowan.workflows.interaction_energy_decomposition
|
|
159
|
+
handler: python
|
|
160
|
+
options:
|
|
161
|
+
show_source: false
|
|
162
|
+
show_root_heading: false
|
|
163
|
+
show_root_toc_entry: false
|
|
164
|
+
members_order: source
|
|
165
|
+
group_by_category: true
|
|
166
|
+
filters: ["!^__"]
|
|
167
|
+
|
|
168
|
+
## Ion Mobility
|
|
169
|
+
::: rowan.workflows.ion_mobility
|
|
170
|
+
handler: python
|
|
171
|
+
options:
|
|
172
|
+
show_source: false
|
|
173
|
+
show_root_heading: false
|
|
174
|
+
show_root_toc_entry: false
|
|
175
|
+
members_order: source
|
|
176
|
+
group_by_category: true
|
|
177
|
+
filters: ["!^__"]
|
|
178
|
+
|
|
179
|
+
## IRC
|
|
180
|
+
::: rowan.workflows.irc
|
|
181
|
+
handler: python
|
|
182
|
+
options:
|
|
183
|
+
show_source: false
|
|
184
|
+
show_root_heading: false
|
|
185
|
+
show_root_toc_entry: false
|
|
186
|
+
members_order: source
|
|
187
|
+
group_by_category: true
|
|
188
|
+
filters: ["!^__"]
|
|
189
|
+
|
|
190
|
+
## MacropKa
|
|
191
|
+
::: rowan.workflows.macropka
|
|
192
|
+
handler: python
|
|
193
|
+
options:
|
|
194
|
+
show_source: false
|
|
195
|
+
show_root_heading: false
|
|
196
|
+
show_root_toc_entry: false
|
|
197
|
+
members_order: source
|
|
198
|
+
group_by_category: true
|
|
199
|
+
filters: ["!^__"]
|
|
200
|
+
|
|
201
|
+
## Membrane Permeability
|
|
202
|
+
::: rowan.workflows.membrane_permeability
|
|
203
|
+
handler: python
|
|
204
|
+
options:
|
|
205
|
+
show_source: false
|
|
206
|
+
show_root_heading: false
|
|
207
|
+
show_root_toc_entry: false
|
|
208
|
+
members_order: source
|
|
209
|
+
group_by_category: true
|
|
210
|
+
filters: ["!^__"]
|
|
211
|
+
|
|
212
|
+
## MSA
|
|
213
|
+
::: rowan.workflows.msa
|
|
214
|
+
handler: python
|
|
215
|
+
options:
|
|
216
|
+
show_source: false
|
|
217
|
+
show_root_heading: false
|
|
218
|
+
show_root_toc_entry: false
|
|
219
|
+
members_order: source
|
|
220
|
+
group_by_category: true
|
|
221
|
+
filters: ["!^__"]
|
|
222
|
+
|
|
223
|
+
## Multistage Optimization
|
|
224
|
+
::: rowan.workflows.multistage_optimization
|
|
225
|
+
handler: python
|
|
226
|
+
options:
|
|
227
|
+
show_source: false
|
|
228
|
+
show_root_heading: false
|
|
229
|
+
show_root_toc_entry: false
|
|
230
|
+
members_order: source
|
|
231
|
+
group_by_category: true
|
|
232
|
+
filters: ["!^__"]
|
|
233
|
+
|
|
234
|
+
## NMR
|
|
235
|
+
::: rowan.workflows.nmr
|
|
236
|
+
handler: python
|
|
237
|
+
options:
|
|
238
|
+
show_source: false
|
|
239
|
+
show_root_heading: false
|
|
240
|
+
show_root_toc_entry: false
|
|
241
|
+
members_order: source
|
|
242
|
+
group_by_category: true
|
|
243
|
+
filters: ["!^__"]
|
|
244
|
+
|
|
245
|
+
## pKa
|
|
246
|
+
::: rowan.workflows.pka
|
|
247
|
+
handler: python
|
|
248
|
+
options:
|
|
249
|
+
show_source: false
|
|
250
|
+
show_root_heading: false
|
|
251
|
+
show_root_toc_entry: false
|
|
252
|
+
members_order: source
|
|
253
|
+
group_by_category: true
|
|
254
|
+
filters: ["!^__"]
|
|
255
|
+
|
|
256
|
+
## Pose Analysis MD
|
|
257
|
+
::: rowan.workflows.pose_analysis_md
|
|
258
|
+
handler: python
|
|
259
|
+
options:
|
|
260
|
+
show_source: false
|
|
261
|
+
show_root_heading: false
|
|
262
|
+
show_root_toc_entry: false
|
|
263
|
+
members_order: source
|
|
264
|
+
group_by_category: true
|
|
265
|
+
filters: ["!^__"]
|
|
266
|
+
|
|
267
|
+
## Protein Binder Design
|
|
268
|
+
::: rowan.workflows.protein_binder_design
|
|
269
|
+
handler: python
|
|
270
|
+
options:
|
|
271
|
+
show_source: false
|
|
272
|
+
show_root_heading: false
|
|
273
|
+
show_root_toc_entry: false
|
|
274
|
+
members_order: source
|
|
275
|
+
group_by_category: true
|
|
276
|
+
filters: ["!^__"]
|
|
277
|
+
|
|
278
|
+
## Protein Cofolding
|
|
279
|
+
::: rowan.workflows.protein_cofolding
|
|
280
|
+
handler: python
|
|
281
|
+
options:
|
|
282
|
+
show_source: false
|
|
283
|
+
show_root_heading: false
|
|
284
|
+
show_root_toc_entry: false
|
|
285
|
+
members_order: source
|
|
286
|
+
group_by_category: true
|
|
287
|
+
filters: ["!^__"]
|
|
288
|
+
|
|
289
|
+
## Protein MD
|
|
290
|
+
::: rowan.workflows.protein_md
|
|
291
|
+
handler: python
|
|
292
|
+
options:
|
|
293
|
+
show_source: false
|
|
294
|
+
show_root_heading: false
|
|
295
|
+
show_root_toc_entry: false
|
|
296
|
+
members_order: source
|
|
297
|
+
group_by_category: true
|
|
298
|
+
filters: ["!^__"]
|
|
299
|
+
|
|
300
|
+
## RBFE Graph
|
|
301
|
+
::: rowan.workflows.rbfe_graph
|
|
302
|
+
handler: python
|
|
303
|
+
options:
|
|
304
|
+
show_source: false
|
|
305
|
+
show_root_heading: false
|
|
306
|
+
show_root_toc_entry: false
|
|
307
|
+
members_order: source
|
|
308
|
+
group_by_category: true
|
|
309
|
+
filters: ["!^__"]
|
|
310
|
+
|
|
311
|
+
## Relative Binding Free Energy Perturbation
|
|
312
|
+
::: rowan.workflows.relative_binding_free_energy_perturbation
|
|
313
|
+
handler: python
|
|
314
|
+
options:
|
|
315
|
+
show_source: false
|
|
316
|
+
show_root_heading: false
|
|
317
|
+
show_root_toc_entry: false
|
|
318
|
+
members_order: source
|
|
319
|
+
group_by_category: true
|
|
320
|
+
filters: ["!^__"]
|
|
321
|
+
|
|
322
|
+
## Redox Potential
|
|
323
|
+
::: rowan.workflows.redox_potential
|
|
324
|
+
handler: python
|
|
325
|
+
options:
|
|
326
|
+
show_source: false
|
|
327
|
+
show_root_heading: false
|
|
328
|
+
show_root_toc_entry: false
|
|
329
|
+
members_order: source
|
|
330
|
+
group_by_category: true
|
|
331
|
+
filters: ["!^__"]
|
|
332
|
+
|
|
333
|
+
## Scan
|
|
334
|
+
::: rowan.workflows.scan
|
|
335
|
+
handler: python
|
|
336
|
+
options:
|
|
337
|
+
show_source: false
|
|
338
|
+
show_root_heading: false
|
|
339
|
+
show_root_toc_entry: false
|
|
340
|
+
members_order: source
|
|
341
|
+
group_by_category: true
|
|
342
|
+
filters: ["!^__"]
|
|
343
|
+
|
|
344
|
+
## Solubility
|
|
345
|
+
::: rowan.workflows.solubility
|
|
346
|
+
handler: python
|
|
347
|
+
options:
|
|
348
|
+
show_source: false
|
|
349
|
+
show_root_heading: false
|
|
350
|
+
show_root_toc_entry: false
|
|
351
|
+
members_order: source
|
|
352
|
+
group_by_category: true
|
|
353
|
+
filters: ["!^__"]
|
|
354
|
+
|
|
355
|
+
## Solvent-Dependent Conformers
|
|
356
|
+
::: rowan.workflows.solvent_dependent_conformers
|
|
357
|
+
handler: python
|
|
358
|
+
options:
|
|
359
|
+
show_source: false
|
|
360
|
+
show_root_heading: false
|
|
361
|
+
show_root_toc_entry: false
|
|
362
|
+
members_order: source
|
|
363
|
+
group_by_category: true
|
|
364
|
+
filters: ["!^__"]
|
|
365
|
+
|
|
366
|
+
## Spin States
|
|
367
|
+
::: rowan.workflows.spin_states
|
|
368
|
+
handler: python
|
|
369
|
+
options:
|
|
370
|
+
show_source: false
|
|
371
|
+
show_root_heading: false
|
|
372
|
+
show_root_toc_entry: false
|
|
373
|
+
members_order: source
|
|
374
|
+
group_by_category: true
|
|
375
|
+
filters: ["!^__"]
|
|
376
|
+
|
|
377
|
+
## Strain
|
|
378
|
+
::: rowan.workflows.strain
|
|
379
|
+
handler: python
|
|
380
|
+
options:
|
|
381
|
+
show_source: false
|
|
382
|
+
show_root_heading: false
|
|
383
|
+
show_root_toc_entry: false
|
|
384
|
+
members_order: source
|
|
385
|
+
group_by_category: true
|
|
386
|
+
filters: ["!^__"]
|
|
387
|
+
|
|
388
|
+
## Tautomer Search
|
|
389
|
+
::: rowan.workflows.tautomer_search
|
|
390
|
+
handler: python
|
|
391
|
+
options:
|
|
392
|
+
show_source: false
|
|
393
|
+
show_root_heading: false
|
|
394
|
+
show_root_toc_entry: false
|
|
395
|
+
members_order: source
|
|
396
|
+
group_by_category: true
|
|
397
|
+
filters: ["!^__"]
|
|
398
|
+
|
|
399
|
+
## Folder Class and Functions
|
|
400
|
+
::: rowan.folder
|
|
401
|
+
handler: python
|
|
402
|
+
options:
|
|
403
|
+
show_source: false
|
|
404
|
+
show_root_heading: false
|
|
405
|
+
show_root_toc_entry: false
|
|
406
|
+
members_order: source
|
|
407
|
+
group_by_category: true
|
|
408
|
+
filters: ["!^__"]
|
|
409
|
+
|
|
410
|
+
## User Class and Functions
|
|
411
|
+
::: rowan.user
|
|
412
|
+
handler: python
|
|
413
|
+
options:
|
|
414
|
+
show_source: false
|
|
415
|
+
show_root_heading: false
|
|
416
|
+
show_root_toc_entry: false
|
|
417
|
+
members_order: source
|
|
418
|
+
group_by_category: true
|
|
419
|
+
filters: ["!^__"]
|
|
420
|
+
|
|
421
|
+
## Protein Class and Functions
|
|
422
|
+
::: rowan.protein
|
|
423
|
+
handler: python
|
|
424
|
+
options:
|
|
425
|
+
show_source: false
|
|
426
|
+
show_root_heading: false
|
|
427
|
+
show_root_toc_entry: false
|
|
428
|
+
members_order: source
|
|
429
|
+
group_by_category: true
|
|
430
|
+
filters: ["!^__"]
|
|
431
|
+
|
|
432
|
+
## Project Class and Functions
|
|
433
|
+
::: rowan.project
|
|
434
|
+
handler: python
|
|
435
|
+
options:
|
|
436
|
+
show_source: false
|
|
437
|
+
show_root_heading: false
|
|
438
|
+
show_root_toc_entry: false
|
|
439
|
+
members_order: source
|
|
440
|
+
group_by_category: true
|
|
441
|
+
filters: ["!^__"]
|
|
442
|
+
|
|
443
|
+
## Utilities
|
|
444
|
+
::: rowan.utils
|
|
445
|
+
handler: python
|
|
446
|
+
options:
|
|
447
|
+
show_source: false
|
|
448
|
+
show_root_heading: false
|
|
449
|
+
show_root_toc_entry: false
|
|
450
|
+
members_order: source
|
|
451
|
+
group_by_category: true
|
|
452
|
+
members:
|
|
453
|
+
- get_api_key
|
|
454
|
+
- get_project_uuid
|
|
455
|
+
- smiles_to_stjames
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
from pathlib import Path
|
|
2
2
|
|
|
3
|
-
import stjames
|
|
4
|
-
|
|
5
3
|
import rowan
|
|
6
4
|
|
|
7
5
|
# Set your API key or use the ROWAN_API_KEY environment variable
|
|
@@ -16,7 +14,7 @@ citalopram_analogues = [
|
|
|
16
14
|
]
|
|
17
15
|
|
|
18
16
|
data_dir = Path(__file__).parent / "data"
|
|
19
|
-
bound_pose =
|
|
17
|
+
bound_pose = rowan.Molecule.from_xyz_file(str(data_dir / "citalopram_1iep.xyz"))
|
|
20
18
|
|
|
21
19
|
protein = rowan.upload_protein("1IEP receptor", data_dir / "1iep_receptorH.pdb")
|
|
22
20
|
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
from stjames import Method, Molecule
|
|
2
|
-
|
|
3
1
|
import rowan
|
|
4
2
|
|
|
5
3
|
# Set your API key or use the ROWAN_API_KEY environment variable
|
|
@@ -7,11 +5,9 @@ import rowan
|
|
|
7
5
|
folder = rowan.get_folder("examples")
|
|
8
6
|
|
|
9
7
|
workflow = rowan.submit_basic_calculation_workflow(
|
|
10
|
-
initial_molecule=
|
|
11
|
-
|
|
8
|
+
initial_molecule="CC(=C)C=C",
|
|
9
|
+
preset="semiempirical",
|
|
12
10
|
tasks=["optimize"],
|
|
13
|
-
mode="auto",
|
|
14
|
-
engine="omol25",
|
|
15
11
|
name="Isoprene Optimization",
|
|
16
12
|
folder=folder,
|
|
17
13
|
)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import rowan
|
|
2
|
+
|
|
3
|
+
# Set your API key or use the ROWAN_API_KEY environment variable
|
|
4
|
+
# rowan.api_key = "rowan-sk..."
|
|
5
|
+
folder = rowan.get_folder("examples")
|
|
6
|
+
|
|
7
|
+
molecule = rowan.Molecule.from_smiles("CCCC")
|
|
8
|
+
|
|
9
|
+
# Constrain the C-C-C-C dihedral angle to 0 degrees during optimization.
|
|
10
|
+
# Constraint types: "bond", "angle", "dihedral", "freeze_atoms"
|
|
11
|
+
# Atoms are 1-indexed.
|
|
12
|
+
workflow = rowan.submit_basic_calculation_workflow(
|
|
13
|
+
initial_molecule=molecule,
|
|
14
|
+
method="gfn2_xtb",
|
|
15
|
+
tasks=["optimize"],
|
|
16
|
+
name="Constrained Butane",
|
|
17
|
+
folder=folder,
|
|
18
|
+
opt_settings=rowan.OptimizationSettings(
|
|
19
|
+
constraints=[
|
|
20
|
+
rowan.Constraint(atoms=[4, 3, 2, 1], constraint_type="dihedral", value=0),
|
|
21
|
+
]
|
|
22
|
+
),
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
print(f"View workflow privately at: https://labs.rowansci.com/calculation/{workflow.uuid}")
|
|
26
|
+
result = workflow.result()
|
|
27
|
+
print(result)
|
|
28
|
+
# e.g. <BasicCalculationResult energy=-13.657247 H>
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
from stjames import Method, Molecule
|
|
2
|
-
|
|
3
1
|
import rowan
|
|
4
2
|
|
|
5
3
|
# Set your API key or use the ROWAN_API_KEY environment variable
|
|
@@ -7,32 +5,27 @@ import rowan
|
|
|
7
5
|
folder = rowan.get_folder("examples")
|
|
8
6
|
|
|
9
7
|
|
|
10
|
-
def compute_energy_with_solvent_correction(
|
|
11
|
-
|
|
8
|
+
def compute_energy_with_solvent_correction(
|
|
9
|
+
molecule: rowan.Molecule, method: rowan.Method, name: str
|
|
10
|
+
) -> float:
|
|
11
|
+
opt_workflow = rowan.submit_basic_calculation_workflow(
|
|
12
12
|
initial_molecule=molecule,
|
|
13
|
-
|
|
13
|
+
method=method,
|
|
14
|
+
tasks=["optimize"],
|
|
14
15
|
name=f"{name} {method} optimization",
|
|
15
|
-
|
|
16
|
-
workflow_data={
|
|
17
|
-
"settings": {"method": method, "tasks": ["optimize"]},
|
|
18
|
-
},
|
|
16
|
+
folder=folder,
|
|
19
17
|
)
|
|
20
18
|
|
|
21
19
|
print(f"View workflow privately at: https://labs.rowansci.com/calculation/{opt_workflow.uuid}")
|
|
22
20
|
opt_result = opt_workflow.result()
|
|
23
21
|
|
|
24
|
-
sp_workflow = rowan.
|
|
22
|
+
sp_workflow = rowan.submit_basic_calculation_workflow(
|
|
25
23
|
initial_molecule=opt_result.molecule,
|
|
26
|
-
|
|
24
|
+
method=method,
|
|
25
|
+
tasks=["energy"],
|
|
26
|
+
solvent_settings={"solvent": "water", "model": "cpcmx"},
|
|
27
27
|
name=f"{name} {method} single point",
|
|
28
|
-
|
|
29
|
-
workflow_data={
|
|
30
|
-
"settings": {
|
|
31
|
-
"method": method,
|
|
32
|
-
"tasks": ["energy"],
|
|
33
|
-
"solvent_settings": {"solvent": "water", "model": "cpcmx"},
|
|
34
|
-
},
|
|
35
|
-
},
|
|
28
|
+
folder=folder,
|
|
36
29
|
)
|
|
37
30
|
|
|
38
31
|
print(f"View workflow privately at: https://labs.rowansci.com/calculation/{sp_workflow.uuid}")
|
|
@@ -42,6 +35,6 @@ def compute_energy_with_solvent_correction(molecule: Molecule, method: Method, n
|
|
|
42
35
|
|
|
43
36
|
|
|
44
37
|
E1 = compute_energy_with_solvent_correction(
|
|
45
|
-
Molecule.from_smiles("CC(=O)Oc1ccccc1C(=O)O"), Method.OMOL25_CONSERVING_S, "aspirin"
|
|
38
|
+
rowan.Molecule.from_smiles("CC(=O)Oc1ccccc1C(=O)O"), rowan.Method.OMOL25_CONSERVING_S, "aspirin"
|
|
46
39
|
)
|
|
47
40
|
print(E1)
|
|
@@ -20,8 +20,6 @@ Available modes:
|
|
|
20
20
|
See documentation at: https://docs.rowansci.com/science/workflows/bond-dissociation-energy
|
|
21
21
|
"""
|
|
22
22
|
|
|
23
|
-
from stjames import Molecule
|
|
24
|
-
|
|
25
23
|
import rowan
|
|
26
24
|
|
|
27
25
|
# Set your API key or use the ROWAN_API_KEY environment variable
|
|
@@ -29,7 +27,7 @@ import rowan
|
|
|
29
27
|
folder = rowan.get_folder("examples")
|
|
30
28
|
|
|
31
29
|
workflow = rowan.submit_bde_workflow(
|
|
32
|
-
initial_molecule=Molecule.from_smiles("CCCC"),
|
|
30
|
+
initial_molecule=rowan.Molecule.from_smiles("CCCC"),
|
|
33
31
|
mode="rapid",
|
|
34
32
|
all_CH=True,
|
|
35
33
|
name="Butane BDE",
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
import stjames
|
|
2
|
-
from stjames import Molecule
|
|
3
|
-
|
|
4
1
|
import rowan
|
|
5
2
|
|
|
6
3
|
# Set your API key or use the ROWAN_API_KEY environment variable
|
|
@@ -8,7 +5,7 @@ import rowan
|
|
|
8
5
|
folder = rowan.get_folder("examples/conformer-dependent-redox")
|
|
9
6
|
|
|
10
7
|
workflow = rowan.submit_conformer_search_workflow(
|
|
11
|
-
initial_molecule=Molecule.from_smiles("CC(C)Cc1ccc(C(=O)c2ccc(O)cc2)cc1"),
|
|
8
|
+
initial_molecule=rowan.Molecule.from_smiles("CC(C)Cc1ccc(C(=O)c2ccc(O)cc2)cc1"),
|
|
12
9
|
folder=folder,
|
|
13
10
|
)
|
|
14
11
|
print(f"View workflow privately at: https://labs.rowansci.com/workflow/{workflow.uuid}")
|
|
@@ -19,12 +16,12 @@ redox_potential_workflows = []
|
|
|
19
16
|
for conformer in csearch_result.conformer_uuids[:10]:
|
|
20
17
|
uuid = conformer[0]
|
|
21
18
|
molecule = rowan.retrieve_calculation_molecules(uuid)[0]
|
|
22
|
-
|
|
19
|
+
rowan_molecule = rowan.Molecule.model_validate(molecule)
|
|
23
20
|
redox_potential_workflows.append(
|
|
24
21
|
rowan.submit_redox_potential_workflow(
|
|
25
|
-
|
|
22
|
+
rowan_molecule,
|
|
26
23
|
reduction=True,
|
|
27
|
-
|
|
24
|
+
oxidation=True,
|
|
28
25
|
folder=folder,
|
|
29
26
|
)
|
|
30
27
|
)
|
|
@@ -17,8 +17,6 @@ Rapid is recommended for most work.
|
|
|
17
17
|
See documentation at: https://docs.rowansci.com/science/workflows/conformers
|
|
18
18
|
"""
|
|
19
19
|
|
|
20
|
-
from stjames import Molecule
|
|
21
|
-
|
|
22
20
|
import rowan
|
|
23
21
|
|
|
24
22
|
# Set your API key or use the ROWAN_API_KEY environment variable
|
|
@@ -26,7 +24,7 @@ import rowan
|
|
|
26
24
|
folder = rowan.get_folder("examples")
|
|
27
25
|
|
|
28
26
|
workflow = rowan.submit_conformer_search_workflow(
|
|
29
|
-
initial_molecule=Molecule.from_smiles("CCOCC"),
|
|
27
|
+
initial_molecule=rowan.Molecule.from_smiles("CCOCC"),
|
|
30
28
|
folder=folder,
|
|
31
29
|
)
|
|
32
30
|
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import stjames
|
|
2
|
-
|
|
3
1
|
import rowan
|
|
4
2
|
|
|
5
3
|
# Set your API key or use the ROWAN_API_KEY environment variable
|
|
@@ -30,9 +28,10 @@ for ligand in ligands:
|
|
|
30
28
|
workflow = rowan.submit_docking_workflow(
|
|
31
29
|
protein.uuid,
|
|
32
30
|
pocket=[[103.55, 100.59, 82.99], [27.76, 32.67, 48.79]],
|
|
33
|
-
initial_molecule=
|
|
31
|
+
initial_molecule=rowan.Molecule.from_smiles(ligand),
|
|
34
32
|
name=f"Docking {ligand}",
|
|
35
33
|
folder=folder,
|
|
34
|
+
do_pose_refinement=False,
|
|
36
35
|
)
|
|
37
36
|
workflows.append(workflow)
|
|
38
37
|
|