rowan-python 2.0.1__tar.gz → 2.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.
- {rowan_python-2.0.1 → rowan_python-2.0.3}/PKG-INFO +1 -1
- rowan_python-2.0.3/examples/basic_calculation_from_json.py +21 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/pixi.lock +174 -228
- {rowan_python-2.0.1 → rowan_python-2.0.3}/pyproject.toml +2 -2
- {rowan_python-2.0.1 → rowan_python-2.0.3}/rowan/rowan_rdkit/chem_utils.py +20 -20
- {rowan_python-2.0.1 → rowan_python-2.0.3}/rowan/utils.py +3 -3
- {rowan_python-2.0.1 → rowan_python-2.0.3}/rowan/workflow.py +11 -11
- rowan_python-2.0.1/examples/basic_calculation_from_json.py +0 -20
- {rowan_python-2.0.1 → rowan_python-2.0.3}/.envrc +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/.github/workflows/python-publish.yml +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/.github/workflows/test.yml +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/.gitignore +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/.pre-commit-config.yaml +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/LICENSE +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/README.md +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/docs/images/deciduous-tree-favicon.png +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/docs/index.md +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/docs/rowan_rdkit.md +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/docs/stylesheets/colors.css +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/examples/PROTAC_solubility.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/examples/basic_calculation_with_constraint.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/examples/basic_calculation_with_solvent.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/examples/bde.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/examples/cofolding_screen.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/examples/conformer_dependent_redox.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/examples/conformers.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/examples/data/workflow_example.json +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/examples/docking_screen.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/examples/irc.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/examples/macropka.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/examples/multistage_opt.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/examples/optimization.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/examples/phenol_pka.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/examples/pka.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/examples/protein_cofolding.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/examples/scan.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/mkdocs.yml +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/rowan/__init__.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/rowan/constants.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/rowan/folder.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/rowan/protein.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/rowan/py.typed +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/rowan/rowan_rdkit/__init__.py +0 -0
- {rowan_python-2.0.1 → rowan_python-2.0.3}/rowan/user.py +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import json
|
|
2
|
+
|
|
3
|
+
import rowan
|
|
4
|
+
|
|
5
|
+
# rowan.api_key = ""
|
|
6
|
+
|
|
7
|
+
with open("examples/data/workflow_example.json") as f:
|
|
8
|
+
workflow_data = json.load(f)
|
|
9
|
+
|
|
10
|
+
result = (
|
|
11
|
+
rowan.submit_workflow(
|
|
12
|
+
workflow_type="basic_calculation",
|
|
13
|
+
workflow_data=workflow_data,
|
|
14
|
+
name="basic calculation from json",
|
|
15
|
+
initial_molecule=workflow_data["initial_molecule"],
|
|
16
|
+
)
|
|
17
|
+
.wait_for_result()
|
|
18
|
+
.fetch_latest()
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
print(result)
|