stjames 0.0.116__py3-none-any.whl → 0.0.119__py3-none-any.whl

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.

Potentially problematic release.


This version of stjames might be problematic. Click here for more details.

@@ -512,7 +512,7 @@ def add_atom_to_polymer(atom: dict[str, Any], aniso: dict[int, Any], model: dict
512
512
  try:
513
513
  model["polymer"][mol_id]["residues"][res_id]["atoms"][int(atom["id"])] = atom_dict_to_atom_dict(atom, aniso)
514
514
  except Exception:
515
- name = atom["auth_comp_id"]
515
+ name = atom.get("auth_comp_id") or atom.get("label_comp_id") or "UNKNOWN"
516
516
  try:
517
517
  model["polymer"][mol_id]["residues"][res_id] = {
518
518
  "name": name,
@@ -553,7 +553,7 @@ def add_atom_to_non_polymer(atom: dict[str, Any], aniso: dict[int, Any], model:
553
553
  try:
554
554
  model[mol_type][mol_id]["atoms"][int(atom["id"])] = atom_dict_to_atom_dict(atom, aniso)
555
555
  except Exception:
556
- name = atom["auth_comp_id"]
556
+ name = atom.get("auth_comp_id") or atom.get("label_comp_id") or "UNKNOWN"
557
557
  model[mol_type][mol_id] = {
558
558
  "name": name,
559
559
  "full_name": names.get(name).upper() if names.get(name) is not None and names.get(name).lower() != "water" else None, # type: ignore [union-attr]
@@ -21,6 +21,7 @@ from .multistage_opt import *
21
21
  from .nmr import *
22
22
  from .pka import *
23
23
  from .pose_analysis_md import *
24
+ from .protein_binder_design import *
24
25
  from .protein_cofolding import *
25
26
  from .redox_potential import *
26
27
  from .scan import *
@@ -51,6 +52,7 @@ WORKFLOW_NAME = Literal[
51
52
  "pka",
52
53
  "pose_analysis_md",
53
54
  "protein_cofolding",
55
+ "protein_binder_design",
54
56
  "redox_potential",
55
57
  "scan",
56
58
  "solubility",
@@ -80,6 +82,7 @@ WORKFLOW_MAPPING: dict[WORKFLOW_NAME, Workflow] = {
80
82
  "pka": pKaWorkflow, # type: ignore [dict-item]
81
83
  "pose_analysis_md": PoseAnalysisMolecularDynamicsWorkflow, # type: ignore [dict-item]
82
84
  "protein_cofolding": ProteinCofoldingWorkflow, # type: ignore [dict-item]
85
+ "protein_binder_design": ProteinBinderDesignWorkflow, # type: ignore [dict-item]
83
86
  "redox_potential": RedoxPotentialWorkflow, # type: ignore [dict-item]
84
87
  "scan": ScanWorkflow, # type: ignore [dict-item]
85
88
  "solubility": SolubilityWorkflow, # type: ignore [dict-item]
@@ -0,0 +1,46 @@
1
+ """High-throughput docking workflow."""
2
+
3
+ from typing import Annotated
4
+
5
+ from pydantic import AfterValidator, ConfigDict, field_validator
6
+
7
+ from ..pdb import PDB
8
+ from ..types import UUID, Vector3D, round_list
9
+ from .docking import VinaSettings
10
+ from .workflow import BatchSMILESWorkflow
11
+
12
+
13
+ class BatchDockingWorkflow(BatchSMILESWorkflow):
14
+ """
15
+ Docking workflow.
16
+
17
+ Note that the protein can be supplied either by UUID or raw PDB object.
18
+ We anticipate that the former will dominate deployed usage, but the latter is handy for isolated testing.
19
+ If, for whatever reason, the workflow is initialized with both a `target_uuid` and a `target`, the UUID will be ignored.
20
+
21
+ Inherited:
22
+ :param smiles_list: list of SMILES
23
+
24
+ New:
25
+ :param target: PDB of the protein, or the UUID of the protein.
26
+ :param pocket: center (x, y, z) and size (x, y, z) of the pocket
27
+ :param docking_settings: how to run each docking calculation
28
+
29
+ Results:
30
+ :param best_scores: the best score for each SMILES string
31
+ """
32
+
33
+ model_config = ConfigDict(arbitrary_types_allowed=True)
34
+
35
+ target: PDB | UUID
36
+ pocket: tuple[Vector3D, Vector3D]
37
+
38
+ docking_settings: VinaSettings = VinaSettings()
39
+ best_scores: Annotated[list[float | None], AfterValidator(round_list(3))] = []
40
+
41
+ @field_validator("pocket", mode="after")
42
+ def validate_pocket(cls, pocket: tuple[Vector3D, Vector3D]) -> tuple[Vector3D, Vector3D]:
43
+ _center, size = pocket
44
+ if any(q <= 0 for q in size):
45
+ raise ValueError(f"Pocket size must be positive, got: {size}")
46
+ return pocket
@@ -0,0 +1,303 @@
1
+ """Protein-binder-design workflow."""
2
+
3
+ from enum import Enum
4
+ from typing import Annotated, TypeAlias
5
+
6
+ from pydantic import AfterValidator
7
+
8
+ from ..base import Base, LowercaseStrEnum, round_optional_float
9
+ from ..types import UUID
10
+ from .workflow import Workflow
11
+
12
+ ProteinUUID: TypeAlias = UUID
13
+
14
+
15
+ class BoltzGenSecondaryStructure(Base):
16
+ """
17
+ Represents the secondary structure assignments for a protein.
18
+
19
+ :param id: Optional identifier for this secondary structure annotation.
20
+ :param sheet: String encoding the residue indices comprising β-sheet structures
21
+ (e.g., "1,3..11" for residues 1, and 3 through 11).
22
+ :param helix: String encoding residue indices comprising helices.
23
+ :param loop: String encoding residue indices comprising loop or coil regions.
24
+ """
25
+
26
+ id: str | None = None
27
+ sheet: str | None = None
28
+ helix: str | None = None
29
+ loop: str | None = None
30
+
31
+
32
+ class BoltzGenProteinEntity(Base):
33
+ """
34
+ Represents a protein entity, either a designed or natural sequence.
35
+
36
+ :param id: Unique identifier for the protein.
37
+ :param sequence: Protein sequence, may contain amino acids and numbers for designed regions.
38
+ :param secondary_structure: Optional assigned secondary structure.
39
+ :param cyclic: Whether the protein is cyclic (True/False). Optional.
40
+ """
41
+
42
+ id: str
43
+ sequence: str # can include amino acids as well as numbers for designed regions
44
+ secondary_structure: BoltzGenSecondaryStructure | None = None
45
+ # binding_types: BindingType | None = None - we may want to add this later but not used in examples.
46
+ cyclic: bool | None = None
47
+
48
+
49
+ class BoltzGenLigandEntity(Base):
50
+ """
51
+ Represents a ligand entity (non-protein), such as a small molecule.
52
+
53
+ :param id: Unique identifier for the ligand.
54
+ :param smiles: SMILES string representation of the ligand.
55
+ """
56
+
57
+ id: str
58
+ smiles: str
59
+ # binding_types: str | None = None - we may want to add this later but not used in examples.
60
+
61
+
62
+ class BoltzGenRegionSelection(Base):
63
+ """
64
+ Defines a region of a protein chain by specifying its chain identifier and (optionally) residue indices.
65
+
66
+ :param chain_id: Identifier for the protein chain (e.g., 'A', 'B', etc.).
67
+ :param residue_indices: Residues to select, specified as a string in the format "5..7,13" or "5..15,50..".
68
+ """
69
+
70
+ chain_id: str | None = None
71
+ residue_indices: str | None = None
72
+
73
+
74
+ class BoltzGenProximityRegionSelection(BoltzGenRegionSelection):
75
+ """
76
+ Defines a region of a protein chain based on spatial proximity to a selection of residues.
77
+
78
+ Inherits:
79
+ BoltzGenRegionSelection
80
+
81
+ :param radius: Radius in angstroms (Å) used to select all residues within proximity to the specified region.
82
+ """
83
+
84
+ radius: int | None = None
85
+
86
+
87
+ class BoltzGenBindingType(Base):
88
+ """
89
+ Represents the binding interface specification for a given protein chain.
90
+
91
+ :param chain_id: Identifier for the protein chain (e.g., 'A', 'B', etc.).
92
+ :param binding: Residue indices or regions that are required to participate in binding
93
+ (e.g., "5..7,13" or "all" for the whole chain).
94
+ :param not_binding: Residue indices or regions that should explicitly not participate in binding
95
+ (e.g., "5..7,13" or "all" for excluding the entire chain).
96
+ """
97
+
98
+ chain_id: str | None = None
99
+ binding: str | None = None
100
+ not_binding: str | None = None
101
+
102
+
103
+ class BoltzGenSecondaryStructureOptions(str, Enum):
104
+ UNSPECIFIED = "UNSPECIFIED"
105
+ LOOP = "LOOP"
106
+ HELIX = "HELIX"
107
+ SHEET = "SHEET"
108
+
109
+
110
+ class BoltzGenDesignInsertion(Base):
111
+ """
112
+ Represents an insertion site for protein design in a specific chain.
113
+
114
+ :param chain_id: Identifier of the chain where the insertion occurs.
115
+ :param residue_index: Position in the chain after which the insertion is to be made.
116
+ :param number_of_residues: Number of residues to insert at the specified site (can be a string pattern).
117
+ :param secondary_structure: Desired secondary structure type for the inserted residues
118
+ ("UNSPECIFIED", "LOOP", "HELIX", or "SHEET"). Optional.
119
+ """
120
+
121
+ chain_id: str
122
+ residue_index: int
123
+ number_of_residues: str
124
+ secondary_structure: BoltzGenSecondaryStructureOptions | None = None
125
+
126
+
127
+ class BoltzGenFileEntity(Base):
128
+ """
129
+ Represents a protein structure input and its associated region selection and design specifications
130
+ for the BoltzGen binder design workflow.
131
+
132
+ :param uuid: Unique identifier for the protein structure.
133
+ :param include: List of regions to include in the design or analysis context.
134
+ :param exclude: List of regions to explicitly exclude from consideration (e.g., for ignoring noisy/irrelevant regions).
135
+ :param include_proximity: List of regions defined by spatial proximity (e.g., residues within a given radius).
136
+ :param binding_types: List of binding type constraints or permitted interface regions.
137
+ :param design: List of regions that are being subject to design (mutable, allowed to change).
138
+ :param secondary_structure: List of desired or annotated secondary structure definitions for selected regions.
139
+ :param design_insertions: List of new regions to be inserted with specified properties (e.g., insertion sites, structure preferences).
140
+ """
141
+
142
+ uuid: ProteinUUID
143
+ include: list[BoltzGenRegionSelection] = []
144
+ exclude: list[BoltzGenRegionSelection] = []
145
+ # fuse: None - we may want to add this later but not used in examples.
146
+ include_proximity: list[BoltzGenProximityRegionSelection] = []
147
+ binding_types: list[BoltzGenBindingType] = []
148
+ # structure_groups: None - we may want to add this later but not used in examples.
149
+ design: list[BoltzGenRegionSelection] = []
150
+ secondary_structure: list[BoltzGenSecondaryStructure] = []
151
+ design_insertions: list[BoltzGenDesignInsertion] = []
152
+
153
+
154
+ class BoltzGenAtomSpecification(Base):
155
+ """
156
+ Atom specification for a protein chain, used for applying constraints or referencing atoms.
157
+
158
+ :param chain_id: Identifier for the protein chain (e.g., "A", "B").
159
+ :param index: Residue index the atom belongs to (integer, 1-based).
160
+ :param atom_name: Name of the atom (e.g., "CA", "N", "O", etc.).
161
+ """
162
+
163
+ chain_id: str
164
+ index: int
165
+ atom_name: str
166
+
167
+
168
+ class BoltzGenConstraint(Base):
169
+ """
170
+ Describes a covalent or spatial constraint between two specified atoms in the context of protein design.
171
+
172
+ :param atom1: First atom in the constraint.
173
+ :param atom2: Second atom in the constraint.
174
+ """
175
+
176
+ atom1: BoltzGenAtomSpecification
177
+ atom2: BoltzGenAtomSpecification
178
+
179
+
180
+ class BoltzGenInput(Base):
181
+ """
182
+ Represents the primary input schema for the boltzgen application.
183
+
184
+ :param protein_entities: Protein chains that are designed or targeted for binding.
185
+ :param ligand_entities: Small molecules or other non-protein ligands relevant to the design.
186
+ :param file_entities: 3d protein structures and input settings related to them.
187
+ :param constraints: Covalent bond constraints
188
+ """
189
+
190
+ protein_entities: list[BoltzGenProteinEntity] = []
191
+ ligand_entities: list[BoltzGenLigandEntity] = []
192
+ file_entities: list[BoltzGenFileEntity] = []
193
+ constraints: list[BoltzGenConstraint] = []
194
+
195
+
196
+ class BoltzGenScores(Base):
197
+ """
198
+ Compact, interpretable metrics for a designed binder.
199
+ ↑ higher is better, ↓ lower is better
200
+
201
+ :param quality_score: aggregate model quality (↑)
202
+ :param num_filters_passed: number of QC/heuristic filters passed (↑)
203
+ :param iptm: inter-chain pTM confidence, 0–1 (↑)
204
+ :param design_ptm: design pTM confidence, 0–1 (↑)
205
+ :param min_interaction_pae: minimum interface PAE in Å (↓)
206
+ :param bb_rmsd: backbone RMSD in Å (↓)
207
+ :param delta_sasa_refolded: ΔSASA of interface after refolding, Ų (↑ typically indicates better burial)
208
+ :param plip_hbonds_refolded: count of hydrogen bonds at the interface (↑)
209
+ :param plip_saltbridge_refolded: count of salt bridges at the interface (↑)
210
+ :param liability_score: composite liabilities score (↓)
211
+ :param liability_high_severity_violations: count of high-severity liabilities (↓)
212
+ :param liability_num_violations: total liability count (↓)
213
+ :param helix: fraction helical content, 0–1
214
+ :param sheet: fraction β-sheet content, 0–1
215
+ :param loop: fraction loop/coil content, 0–1
216
+ :param design_largest_hydrophobic_patch_refolded: largest hydrophobic patch area after refolding, Ų
217
+ :param design_hydrophobicity: overall design hydrophobicity score (unitless)
218
+ :param num_tokens: sequence length / token count
219
+ """
220
+
221
+ quality_score: Annotated[float | None, AfterValidator(round_optional_float(3))] = None
222
+ num_filters_passed: int | None = None
223
+
224
+ iptm: Annotated[float | None, AfterValidator(round_optional_float(3))] = None
225
+ design_ptm: Annotated[float | None, AfterValidator(round_optional_float(3))] = None
226
+ min_design_to_target_pae: Annotated[float | None, AfterValidator(round_optional_float(3))] = None
227
+ design_to_target_iptm: Annotated[float | None, AfterValidator(round_optional_float(3))] = None
228
+ min_interaction_pae: Annotated[float | None, AfterValidator(round_optional_float(3))] = None
229
+
230
+ bb_rmsd: Annotated[float | None, AfterValidator(round_optional_float(3))] = None
231
+ delta_sasa_refolded: Annotated[float | None, AfterValidator(round_optional_float(3))] = None
232
+
233
+ plip_hbonds_refolded: int | None = None
234
+ plip_saltbridge_refolded: int | None = None
235
+
236
+ liability_score: Annotated[float | None, AfterValidator(round_optional_float(3))] = None
237
+ liability_high_severity_violations: int | None = None
238
+ liability_num_violations: int | None = None
239
+
240
+ helix: Annotated[float | None, AfterValidator(round_optional_float(3))] = None
241
+ sheet: Annotated[float | None, AfterValidator(round_optional_float(3))] = None
242
+ loop: Annotated[float | None, AfterValidator(round_optional_float(3))] = None
243
+ design_largest_hydrophobic_patch_refolded: Annotated[float | None, AfterValidator(round_optional_float(3))] = None
244
+ design_hydrophobicity: Annotated[float | None, AfterValidator(round_optional_float(3))] = None
245
+ num_tokens: int | None = None
246
+
247
+
248
+ class ProteinBinderDesignResult(Base):
249
+ """
250
+ The output; a designed binder.
251
+
252
+ :param sequence: the sequence
253
+ :param bound_structure: the PDB of the structure bound to the target
254
+ :param scores: the scores for the generated structure
255
+ """
256
+
257
+ binder_sequence: str | None = None
258
+ bound_structure: ProteinUUID | None = None
259
+ scores: BoltzGenScores | None = None
260
+
261
+
262
+ class BoltzGenProtocol(LowercaseStrEnum):
263
+ """
264
+ The predefined protocol used for generation + filtering.
265
+ """
266
+
267
+ PROTEIN_ANYTHING = "protein-anything"
268
+ PEPTIDE_ANYTHING = "peptide-anything"
269
+ PROTEIN_SMALL_MOLECULE = "protein-small_molecule"
270
+ NANOBODY_ANYTHING = "nanobody-anything"
271
+
272
+
273
+ class BoltzGenSettings(Base):
274
+ """
275
+ The settings for running BoltzGen.
276
+
277
+ :param num_designs: how many designs to generate
278
+ :param protocol: which protocol to use
279
+ :param binding_residue: a dict mapping the chain ID to which residues should bind.
280
+ the string follows the BoltzGen format of specifying ranges of residue indices (refer to their documentation).
281
+ examples include "5..7,13" or "5..15,50..".
282
+ """
283
+
284
+ protocol: BoltzGenProtocol = BoltzGenProtocol.PROTEIN_ANYTHING
285
+ num_designs: int = 100
286
+ budget: int = 20
287
+
288
+
289
+ class ProteinBinderDesignWorkflow(Workflow):
290
+ """
291
+ A workflow for generating proteins or peptides that bind to something.
292
+
293
+
294
+ New:
295
+ :param binder_design_input: the input to the protein binder design workflow
296
+ :param binder_design_settings: the settings for the protein generation method employed
297
+ :param generated_binders: the output structures
298
+ """
299
+
300
+ binder_design_input: BoltzGenInput = BoltzGenInput()
301
+ binder_design_settings: BoltzGenSettings = BoltzGenSettings()
302
+
303
+ generated_binders: list[ProteinBinderDesignResult] = []
@@ -1,4 +1,4 @@
1
- """Protein cofolding Workflow."""
1
+ """Protein cofolding workflow."""
2
2
 
3
3
  from typing import Annotated, Literal, TypeAlias
4
4
 
@@ -26,6 +26,7 @@ class Token(BaseModel):
26
26
  input_type: Literal["ligand", "protein"]
27
27
  input_index: int
28
28
  token_index: int
29
+ atom_name: str | None = None
29
30
 
30
31
 
31
32
  class ContactConstraint(BaseModel):
@@ -22,21 +22,31 @@ class Workflow(Base):
22
22
  return repr(self)
23
23
 
24
24
 
25
+ class ProteinSequence(Base):
26
+ """
27
+ Protein sequence metadata including cyclic flag.
28
+
29
+ :param sequence: amino-acid sequence string
30
+ :param cyclic: whether this sequence forms a cyclic peptide (defaults to False)
31
+ """
32
+
33
+ sequence: str
34
+ cyclic: bool = False
35
+
36
+
25
37
  class FASTAWorkflow(Workflow):
26
38
  """
27
39
  Base class for Workflows that operate on protein sequences and SMILES.
28
40
 
29
- :param initial_protein_sequences: protein sequences of interest
41
+ :param initial_protein_sequences: proteins to evaluate, either plain sequence strings or ProteinSequence objects with cyclic flags
30
42
  :param initial_smiles_list: SMILES strings of interest
43
+ :param ligand_binding_affinity_index: optional index selecting which ligand affinity to evaluate
31
44
  """
32
45
 
33
- initial_protein_sequences: list[str]
46
+ initial_protein_sequences: list[ProteinSequence] | list[str]
34
47
  initial_smiles_list: list[str] | None = None
35
48
  ligand_binding_affinity_index: int | None = None
36
49
 
37
- def __repr__(self) -> str:
38
- return f"<{type(self).__name__} {self.initial_protein_sequences} {self.initial_smiles_list}>"
39
-
40
50
 
41
51
  class SMILESWorkflow(Workflow):
42
52
  """
@@ -51,6 +61,16 @@ class SMILESWorkflow(Workflow):
51
61
  return f"<{type(self).__name__} {self.initial_smiles}>"
52
62
 
53
63
 
64
+ class BatchSMILESWorkflow(Workflow):
65
+ """
66
+ Base class for Workflows that operate on a list of SMILES strings.
67
+
68
+ :param smiles_list: SMILES strings of interest
69
+ """
70
+
71
+ smiles_list: list[str]
72
+
73
+
54
74
  class MoleculeWorkflow(Workflow):
55
75
  """
56
76
  Base class for Workflows that operate on a single molecule.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: stjames
3
- Version: 0.0.116
3
+ Version: 0.0.119
4
4
  Summary: standardized JSON atom/molecule encoding scheme
5
5
  Author-email: Corin Wagen <corin@rowansci.com>
6
6
  Project-URL: Homepage, https://github.com/rowansci/stjames
@@ -25,7 +25,7 @@ stjames/thermochem_settings.py,sha256=ZTLz31v8Ltutde5Nfm0vH5YahWjcfFWfr_R856Kffx
25
25
  stjames/types.py,sha256=PGEZeqGnomgWUSHcMuUftzvZt7l4VwaQ1Pi-7vEkibg,4773
26
26
  stjames/atomium_stjames/__init__.py,sha256=gZkzC7i9D_fmWUTN55gtygITo3-qvJUda5CXLR0jyCQ,306
27
27
  stjames/atomium_stjames/data.py,sha256=-hzwBpTHq5JetsOVyopUJswKnKAkMtJ_XkONxjXVupU,5675
28
- stjames/atomium_stjames/mmcif.py,sha256=em1fNt6577OaUjL7Pctru7aJp3ceZ9kEnj5w6BRWdVs,27090
28
+ stjames/atomium_stjames/mmcif.py,sha256=n6cFdODKzRA6r4_Cp4dgtmAJrIlj-YBotCFT4skzuTI,27182
29
29
  stjames/atomium_stjames/pdb.py,sha256=hoEV1xmbkYkXW8A6YX5uspvSRvGlhzM1o_BiikQ6DiU,23734
30
30
  stjames/atomium_stjames/utilities.py,sha256=-YtM7sRMvMk0wWrC3svWUWH4CGI0NtY77nXsg9tjHfc,4964
31
31
  stjames/data/__init__.py,sha256=O59Ksp7AIqwOELCWymfCx7YeBzwNOGCMlGQi7tNLqiE,24
@@ -37,9 +37,10 @@ stjames/data/read_nist_isotopes.py,sha256=y10FNjW43QpC45qib7VHsIghEwT7GG5rsNwHdc
37
37
  stjames/data/symbol_element.json,sha256=vl_buFusTqBd-muYQtMLtTDLy2OtBI6KkBeqkaWRQrg,1186
38
38
  stjames/optimization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
39
  stjames/optimization/freezing_string_method.py,sha256=eEQBqbYHgJH9gVRLDIFtGuPcsHHMLAAt1hF3jtq70lo,2285
40
- stjames/workflows/__init__.py,sha256=I-s6f6uz7PXpeKsvQlL04wswId2mW2u7thk309TC7ng,3165
40
+ stjames/workflows/__init__.py,sha256=RoqcRk27PTu9UfHFQQtu5quiBipsx4NGvDPst5S1EOc,3317
41
41
  stjames/workflows/admet.py,sha256=qFUpCFiLW-3gzuEjCMNBJ6DEG_vquJcPAsN4SVZRfdE,1289
42
42
  stjames/workflows/basic_calculation.py,sha256=sAgHBcNHE72ZbZPB9vyZShALRC4zOVw6It6cpJlbX2A,911
43
+ stjames/workflows/batch_docking.py,sha256=o-t5FkfLlbe60jX1_ZeqWSJJ5vsjEIbTa5GLN3ny_tk,1590
43
44
  stjames/workflows/bde.py,sha256=g_In-caftXiimrhfdptHjpfrYQUs3vF58qYmRnaTN8g,10825
44
45
  stjames/workflows/conformer.py,sha256=18aO6ngMBeGAmQkBdLGCCHr398RIYr1v2hD2IT1u4cc,3005
45
46
  stjames/workflows/conformer_search.py,sha256=1kBUT0yCcTPTCtxg1tlTKHRRXkfNYNqzla_89lDEL9k,15696
@@ -57,16 +58,17 @@ stjames/workflows/multistage_opt.py,sha256=UN-4WLsT2WEjO5KqDPrcCkb708Co-ZScHx3g2
57
58
  stjames/workflows/nmr.py,sha256=1QEF4SB6dWIr-jzLEZ7V972UnRUOTufOJSHwIGyV3dM,2681
58
59
  stjames/workflows/pka.py,sha256=i-jzl2lN0yRWc0tgrWSBCplITEByfRyEQrlUhjnzcBc,4580
59
60
  stjames/workflows/pose_analysis_md.py,sha256=dpWVKC-8fPdw6ExIXk9xbeVBDUMUYQECpixb-oFa23I,4803
60
- stjames/workflows/protein_cofolding.py,sha256=cN0WUh8trrWwzNvoU75hB-VectIer-g5sMKgibQJcfE,4293
61
+ stjames/workflows/protein_binder_design.py,sha256=KnPKQJTMrSO5xfw64Bh7T0wHck1NtysVwkVgHs1cGws,12013
62
+ stjames/workflows/protein_cofolding.py,sha256=w7Sg_ttU4bcJb7wlVcI_AAsLM9WVAJcU5ucbNb5Iyzw,4326
61
63
  stjames/workflows/redox_potential.py,sha256=7S18t9Y3eynSnA3lZbRlvLfdbgeBopdiigLzt1zxg5c,3871
62
64
  stjames/workflows/scan.py,sha256=DXQBpa2t2PowAtOwmdgpxaSLq--fEShljzAGSb8Nf5U,2993
63
65
  stjames/workflows/solubility.py,sha256=lfCVvJjqEaddLUpK6WBxjB7u12Sci-K95A5_qIMkIRM,3028
64
66
  stjames/workflows/spin_states.py,sha256=0degmE-frovgoXweshZyjfjqL7nkbaFoO9YoJhvQnaI,4748
65
67
  stjames/workflows/strain.py,sha256=paYxDDQTB1eYP_c2kLVz1-QX7Vpw0LLb3ujnFin_SOM,1834
66
68
  stjames/workflows/tautomer.py,sha256=7eYKziGPg8Km6lfowTzSkgJfJ4SHUPrAmnTf8Bi-SB0,1164
67
- stjames/workflows/workflow.py,sha256=OE05pt2ZOd8TzTOlBngXCVg9wv_553ZR60VNRPlq0f8,1953
68
- stjames-0.0.116.dist-info/licenses/LICENSE,sha256=i05z7xEhyrg6f8j0lR3XYjShnF-MJGFQ-DnpsZ8yiVI,1084
69
- stjames-0.0.116.dist-info/METADATA,sha256=IbTEKrb49Z5vD7QdSV412MBQQH4Yv2uSftLO2IoObzY,1725
70
- stjames-0.0.116.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
71
- stjames-0.0.116.dist-info/top_level.txt,sha256=FYCwxl6quhYOAgG-mnPQcCK8vsVM7B8rIUrO-WrQ_PI,8
72
- stjames-0.0.116.dist-info/RECORD,,
69
+ stjames/workflows/workflow.py,sha256=cYNP_tK1afJTscXJzYv5VGe8n2Est6PpthS268oRi1U,2494
70
+ stjames-0.0.119.dist-info/licenses/LICENSE,sha256=i05z7xEhyrg6f8j0lR3XYjShnF-MJGFQ-DnpsZ8yiVI,1084
71
+ stjames-0.0.119.dist-info/METADATA,sha256=zSXQ6WwjJ7Fv7dQ1y_4Nx5Glq6zYzXkq94uKLLDEAbg,1725
72
+ stjames-0.0.119.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
73
+ stjames-0.0.119.dist-info/top_level.txt,sha256=FYCwxl6quhYOAgG-mnPQcCK8vsVM7B8rIUrO-WrQ_PI,8
74
+ stjames-0.0.119.dist-info/RECORD,,