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