boltz-vsynthes 1.0.10__py3-none-any.whl → 1.0.11__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/pdb.py +2 -1
- boltz/data/parse/pdb_download.py +2 -2
- {boltz_vsynthes-1.0.10.dist-info → boltz_vsynthes-1.0.11.dist-info}/METADATA +1 -1
- {boltz_vsynthes-1.0.10.dist-info → boltz_vsynthes-1.0.11.dist-info}/RECORD +8 -8
- {boltz_vsynthes-1.0.10.dist-info → boltz_vsynthes-1.0.11.dist-info}/WHEEL +0 -0
- {boltz_vsynthes-1.0.10.dist-info → boltz_vsynthes-1.0.11.dist-info}/entry_points.txt +0 -0
- {boltz_vsynthes-1.0.10.dist-info → boltz_vsynthes-1.0.11.dist-info}/licenses/LICENSE +0 -0
- {boltz_vsynthes-1.0.10.dist-info → boltz_vsynthes-1.0.11.dist-info}/top_level.txt +0 -0
boltz/data/parse/pdb.py
CHANGED
@@ -3,6 +3,7 @@ from typing import Optional
|
|
3
3
|
|
4
4
|
from Bio import PDB
|
5
5
|
from Bio.PDB.Polypeptide import three_to_one
|
6
|
+
from Bio.Data.IUPACData import protein_letters_3to1
|
6
7
|
from rdkit import Chem
|
7
8
|
from rdkit.Chem.rdchem import Mol
|
8
9
|
|
@@ -47,7 +48,7 @@ def parse_pdb(
|
|
47
48
|
for residue in chain:
|
48
49
|
if residue.id[0] == " ": # Only standard residues
|
49
50
|
try:
|
50
|
-
seq +=
|
51
|
+
seq += protein_letters_3to1[residue.resname]
|
51
52
|
except KeyError:
|
52
53
|
continue
|
53
54
|
|
boltz/data/parse/pdb_download.py
CHANGED
@@ -4,7 +4,7 @@ from typing import Optional
|
|
4
4
|
|
5
5
|
import requests
|
6
6
|
from Bio import PDB
|
7
|
-
from Bio.
|
7
|
+
from Bio.Data.IUPACData import protein_letters_3to1
|
8
8
|
from rdkit import Chem
|
9
9
|
from rdkit.Chem.rdchem import Mol
|
10
10
|
|
@@ -91,7 +91,7 @@ def parse_pdb_id(
|
|
91
91
|
for residue in chain:
|
92
92
|
if residue.id[0] == " ": # Only standard residues
|
93
93
|
try:
|
94
|
-
seq +=
|
94
|
+
seq += protein_letters_3to1[residue.resname]
|
95
95
|
except KeyError:
|
96
96
|
continue
|
97
97
|
|
@@ -38,8 +38,8 @@ boltz/data/parse/csv.py,sha256=Hcq8rJW2njczahEr8jfd_o-zxLaNSgJ3YIoC9srIqpw,2518
|
|
38
38
|
boltz/data/parse/fasta.py,sha256=taI4s_CqPtyF0XaLJAsVAJHCL0GXm2g1g8Qeccdxikk,3906
|
39
39
|
boltz/data/parse/mmcif.py,sha256=25kEXCkx-OuaawAs7cdz0fxdRu5_CCO0AV00u84PrjQ,36822
|
40
40
|
boltz/data/parse/mmcif_with_constraints.py,sha256=WHYZckSqUwu-Nb9vmVmxHmC7uxwVrF7AVUeVKsc5wGQ,51473
|
41
|
-
boltz/data/parse/pdb.py,sha256=
|
42
|
-
boltz/data/parse/pdb_download.py,sha256=
|
41
|
+
boltz/data/parse/pdb.py,sha256=6sRlD2tsKZNE6e-m1b4c3JV7xbaNtdzgy_kDwSl70wI,1853
|
42
|
+
boltz/data/parse/pdb_download.py,sha256=FJTX7qHKJ_sBRcHg1PLKlqy6gVuluPDAWOAuYKI4-gM,2931
|
43
43
|
boltz/data/parse/schema.py,sha256=gnHZBy0Io2Ecrw3KAD1lE1-cKnWL4ypKUI3EmeV5FDQ,59566
|
44
44
|
boltz/data/parse/sdf.py,sha256=myFA3bL6MkdPdMFfZHotxJ8yNMGpsc_u6w06YFadeiw,1364
|
45
45
|
boltz/data/parse/yaml.py,sha256=GRFRMtDD4PQ4PIpA_S1jj0vRaEu2LlZd_g4rN1zUrNo,1505
|
@@ -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.11.dist-info/licenses/LICENSE,sha256=8GZ_1eZsUeG6jdqgJJxtciWzADfgLEV4LY8sKUOsJhc,1102
|
111
|
+
boltz_vsynthes-1.0.11.dist-info/METADATA,sha256=_HVmpwxnfnkL-GYVRGNyjNG_MVTPQcTZRgCysbTDg9U,7171
|
112
|
+
boltz_vsynthes-1.0.11.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
113
|
+
boltz_vsynthes-1.0.11.dist-info/entry_points.txt,sha256=n5a5I35ntu9lmyr16oZgHPFY0b0YxjiixY7m7nbMTLc,41
|
114
|
+
boltz_vsynthes-1.0.11.dist-info/top_level.txt,sha256=MgU3Jfb-ctWm07YGMts68PMjSh9v26D0gfG3dFRmVFA,6
|
115
|
+
boltz_vsynthes-1.0.11.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|