boltz-vsynthes 1.0.19__py3-none-any.whl → 1.0.21__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.
- boltz/data/parse/schema.py +2 -4
- boltz/data/parse/sdf.py +4 -3
- {boltz_vsynthes-1.0.19.dist-info → boltz_vsynthes-1.0.21.dist-info}/METADATA +1 -1
- {boltz_vsynthes-1.0.19.dist-info → boltz_vsynthes-1.0.21.dist-info}/RECORD +8 -8
- {boltz_vsynthes-1.0.19.dist-info → boltz_vsynthes-1.0.21.dist-info}/WHEEL +0 -0
- {boltz_vsynthes-1.0.19.dist-info → boltz_vsynthes-1.0.21.dist-info}/entry_points.txt +0 -0
- {boltz_vsynthes-1.0.19.dist-info → boltz_vsynthes-1.0.21.dist-info}/licenses/LICENSE +0 -0
- {boltz_vsynthes-1.0.19.dist-info → boltz_vsynthes-1.0.21.dist-info}/top_level.txt +0 -0
boltz/data/parse/schema.py
CHANGED
@@ -1024,14 +1024,12 @@ def parse_boltz_schema( # noqa: C901, PLR0915, PLR0912
|
|
1024
1024
|
# This is a PDB ID
|
1025
1025
|
from boltz.data.parse.pdb_download import parse_pdb_id
|
1026
1026
|
target = parse_pdb_id(pdb_path.stem, ccd, mol_dir, pdb_path.parent)
|
1027
|
-
#
|
1028
|
-
seq = target.sequences[0]["protein"]["sequence"]
|
1027
|
+
seq = target.sequences[0] # Access sequence directly from the dictionary
|
1029
1028
|
else:
|
1030
1029
|
# This is a PDB file
|
1031
1030
|
from boltz.data.parse.pdb import parse_pdb
|
1032
1031
|
target = parse_pdb(pdb_path, ccd, mol_dir)
|
1033
|
-
#
|
1034
|
-
seq = target.sequences[0]["protein"]["sequence"]
|
1032
|
+
seq = target.sequences[0] # Access sequence directly from the dictionary
|
1035
1033
|
else:
|
1036
1034
|
msg = f"Protein must have either 'sequence' or 'pdb' field: {item}"
|
1037
1035
|
raise ValueError(msg)
|
boltz/data/parse/sdf.py
CHANGED
@@ -72,13 +72,14 @@ def parse_sdf(
|
|
72
72
|
# Convert to yaml format
|
73
73
|
sequences = []
|
74
74
|
for mol_name, smiles in mol_dict.items():
|
75
|
-
|
75
|
+
molecule = {
|
76
76
|
"ligand": {
|
77
77
|
"id": mol_name,
|
78
78
|
"sequence": smiles,
|
79
79
|
"modifications": [],
|
80
|
-
}
|
81
|
-
}
|
80
|
+
},
|
81
|
+
}
|
82
|
+
sequences.append(molecule)
|
82
83
|
|
83
84
|
data = {
|
84
85
|
"sequences": sequences,
|
@@ -40,8 +40,8 @@ boltz/data/parse/mmcif.py,sha256=25kEXCkx-OuaawAs7cdz0fxdRu5_CCO0AV00u84PrjQ,368
|
|
40
40
|
boltz/data/parse/mmcif_with_constraints.py,sha256=WHYZckSqUwu-Nb9vmVmxHmC7uxwVrF7AVUeVKsc5wGQ,51473
|
41
41
|
boltz/data/parse/pdb.py,sha256=X4u1ZzSFk0Xy8LRbCCMVlbAzWeGddo2O4SQuk_WyS-k,1656
|
42
42
|
boltz/data/parse/pdb_download.py,sha256=YLxCidVkRLlvZ0uCCSnRTP7Yz1-AYv9hz_SO3_xecWk,2769
|
43
|
-
boltz/data/parse/schema.py,sha256=
|
44
|
-
boltz/data/parse/sdf.py,sha256=
|
43
|
+
boltz/data/parse/schema.py,sha256=iD7JVxEuSV0H8jlvpFzIv2XRv2nv3b5LaodzaGsMwKE,60917
|
44
|
+
boltz/data/parse/sdf.py,sha256=z7XTH-a38Rq-grC8bEZUPxGmLyP-g17LCxYWzVkBS_0,2107
|
45
45
|
boltz/data/parse/yaml.py,sha256=GRFRMtDD4PQ4PIpA_S1jj0vRaEu2LlZd_g4rN1zUrNo,1505
|
46
46
|
boltz/data/sample/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
47
|
boltz/data/sample/cluster.py,sha256=9Sx8qP7zGZOAyEspwYFtCTbGTBZnuN-zfCKFbbA_6oI,8175
|
@@ -107,9 +107,9 @@ boltz/model/optim/scheduler.py,sha256=nB4jz0CZ4pR4n08LQngExL_pNycIdYI8AXVoHPnZWQ
|
|
107
107
|
boltz/model/potentials/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
108
108
|
boltz/model/potentials/potentials.py,sha256=vev8Vjfs-ML1hyrdv_R8DynG4wSFahJ6nzPWp7CYQqw,17507
|
109
109
|
boltz/model/potentials/schedules.py,sha256=m7XJjfuF9uTX3bR9VisXv1rvzJjxiD8PobXRpcBBu1c,968
|
110
|
-
boltz_vsynthes-1.0.
|
111
|
-
boltz_vsynthes-1.0.
|
112
|
-
boltz_vsynthes-1.0.
|
113
|
-
boltz_vsynthes-1.0.
|
114
|
-
boltz_vsynthes-1.0.
|
115
|
-
boltz_vsynthes-1.0.
|
110
|
+
boltz_vsynthes-1.0.21.dist-info/licenses/LICENSE,sha256=8GZ_1eZsUeG6jdqgJJxtciWzADfgLEV4LY8sKUOsJhc,1102
|
111
|
+
boltz_vsynthes-1.0.21.dist-info/METADATA,sha256=gAchBDCHsOLsmulpqIOG1qcPUFB6vtiZ9y-2TFap4lw,7171
|
112
|
+
boltz_vsynthes-1.0.21.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
113
|
+
boltz_vsynthes-1.0.21.dist-info/entry_points.txt,sha256=n5a5I35ntu9lmyr16oZgHPFY0b0YxjiixY7m7nbMTLc,41
|
114
|
+
boltz_vsynthes-1.0.21.dist-info/top_level.txt,sha256=MgU3Jfb-ctWm07YGMts68PMjSh9v26D0gfG3dFRmVFA,6
|
115
|
+
boltz_vsynthes-1.0.21.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|