rowan-python 1.1.11__tar.gz → 1.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-1.1.11 → rowan_python-1.1.12}/PKG-INFO +1 -1
- {rowan_python-1.1.11 → rowan_python-1.1.12}/pixi.lock +2 -2
- {rowan_python-1.1.11 → rowan_python-1.1.12}/pyproject.toml +1 -1
- {rowan_python-1.1.11 → rowan_python-1.1.12}/rowan/protein_cofolding.py +2 -2
- {rowan_python-1.1.11 → rowan_python-1.1.12}/.envrc +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/.github/workflows/python-publish.yml +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/.github/workflows/test.yml +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/.gitignore +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/.pre-commit-config.yaml +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/LICENSE +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/README.md +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/examples/bde.py +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/examples/conformers.py +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/examples/multistage_opt.py +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/examples/optimization.py +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/examples/pka.py +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/examples/scan.py +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/rowan/__init__.py +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/rowan/calculation.py +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/rowan/client.py +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/rowan/constants.py +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/rowan/folder.py +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/rowan/protein.py +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/rowan/py.typed +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/rowan/rowan_rdkit/__init__.py +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/rowan/rowan_rdkit/chem_utils.py +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/rowan/utils.py +0 -0
- {rowan_python-1.1.11 → rowan_python-1.1.12}/rowan/workflow.py +0 -0
|
@@ -1262,8 +1262,8 @@ packages:
|
|
|
1262
1262
|
requires_python: '>=3.8'
|
|
1263
1263
|
- pypi: .
|
|
1264
1264
|
name: rowan-python
|
|
1265
|
-
version: 1.1.
|
|
1266
|
-
sha256:
|
|
1265
|
+
version: 1.1.12
|
|
1266
|
+
sha256: 171ab0a6ff33b447d646da438d65dac3bb7fc150921b529ed303745cbf6f3ca5
|
|
1267
1267
|
requires_dist:
|
|
1268
1268
|
- httpx
|
|
1269
1269
|
- stjames>=0.0.83
|
|
@@ -10,14 +10,14 @@ def submit_protein_cofolding_workflow(
|
|
|
10
10
|
initial_smiles_list: list[str] | None = None,
|
|
11
11
|
ligand_binding_affinity_index: int | None = None,
|
|
12
12
|
use_msa_server: bool = True,
|
|
13
|
-
|
|
13
|
+
use_potentials: bool = False,
|
|
14
14
|
name: str = "Cofolding Workflow",
|
|
15
15
|
model: str = stjames.CofoldingModel.BOLTZ_2.value,
|
|
16
16
|
folder_uuid: stjames.UUID | None = None,
|
|
17
17
|
) -> dict[str, Any]:
|
|
18
18
|
workflow_data = {
|
|
19
19
|
"use_msa_server": use_msa_server,
|
|
20
|
-
"use_potentials":
|
|
20
|
+
"use_potentials": use_potentials,
|
|
21
21
|
"model": model,
|
|
22
22
|
"ligand_binding_affinity_index": ligand_binding_affinity_index,
|
|
23
23
|
"initial_smiles_list": initial_smiles_list,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|