boltz-vsynthes 1.0.0__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.
Files changed (112) hide show
  1. boltz/__init__.py +7 -0
  2. boltz/data/__init__.py +0 -0
  3. boltz/data/const.py +1184 -0
  4. boltz/data/crop/__init__.py +0 -0
  5. boltz/data/crop/affinity.py +164 -0
  6. boltz/data/crop/boltz.py +296 -0
  7. boltz/data/crop/cropper.py +45 -0
  8. boltz/data/feature/__init__.py +0 -0
  9. boltz/data/feature/featurizer.py +1230 -0
  10. boltz/data/feature/featurizerv2.py +2208 -0
  11. boltz/data/feature/symmetry.py +602 -0
  12. boltz/data/filter/__init__.py +0 -0
  13. boltz/data/filter/dynamic/__init__.py +0 -0
  14. boltz/data/filter/dynamic/date.py +76 -0
  15. boltz/data/filter/dynamic/filter.py +24 -0
  16. boltz/data/filter/dynamic/max_residues.py +37 -0
  17. boltz/data/filter/dynamic/resolution.py +34 -0
  18. boltz/data/filter/dynamic/size.py +38 -0
  19. boltz/data/filter/dynamic/subset.py +42 -0
  20. boltz/data/filter/static/__init__.py +0 -0
  21. boltz/data/filter/static/filter.py +26 -0
  22. boltz/data/filter/static/ligand.py +37 -0
  23. boltz/data/filter/static/polymer.py +299 -0
  24. boltz/data/module/__init__.py +0 -0
  25. boltz/data/module/inference.py +307 -0
  26. boltz/data/module/inferencev2.py +429 -0
  27. boltz/data/module/training.py +684 -0
  28. boltz/data/module/trainingv2.py +660 -0
  29. boltz/data/mol.py +900 -0
  30. boltz/data/msa/__init__.py +0 -0
  31. boltz/data/msa/mmseqs2.py +235 -0
  32. boltz/data/pad.py +84 -0
  33. boltz/data/parse/__init__.py +0 -0
  34. boltz/data/parse/a3m.py +134 -0
  35. boltz/data/parse/csv.py +100 -0
  36. boltz/data/parse/fasta.py +138 -0
  37. boltz/data/parse/mmcif.py +1239 -0
  38. boltz/data/parse/mmcif_with_constraints.py +1607 -0
  39. boltz/data/parse/schema.py +1851 -0
  40. boltz/data/parse/yaml.py +68 -0
  41. boltz/data/sample/__init__.py +0 -0
  42. boltz/data/sample/cluster.py +283 -0
  43. boltz/data/sample/distillation.py +57 -0
  44. boltz/data/sample/random.py +39 -0
  45. boltz/data/sample/sampler.py +49 -0
  46. boltz/data/tokenize/__init__.py +0 -0
  47. boltz/data/tokenize/boltz.py +195 -0
  48. boltz/data/tokenize/boltz2.py +396 -0
  49. boltz/data/tokenize/tokenizer.py +24 -0
  50. boltz/data/types.py +777 -0
  51. boltz/data/write/__init__.py +0 -0
  52. boltz/data/write/mmcif.py +305 -0
  53. boltz/data/write/pdb.py +171 -0
  54. boltz/data/write/utils.py +23 -0
  55. boltz/data/write/writer.py +330 -0
  56. boltz/main.py +1292 -0
  57. boltz/model/__init__.py +0 -0
  58. boltz/model/layers/__init__.py +0 -0
  59. boltz/model/layers/attention.py +132 -0
  60. boltz/model/layers/attentionv2.py +111 -0
  61. boltz/model/layers/confidence_utils.py +231 -0
  62. boltz/model/layers/dropout.py +34 -0
  63. boltz/model/layers/initialize.py +100 -0
  64. boltz/model/layers/outer_product_mean.py +98 -0
  65. boltz/model/layers/pair_averaging.py +135 -0
  66. boltz/model/layers/pairformer.py +337 -0
  67. boltz/model/layers/relative.py +58 -0
  68. boltz/model/layers/transition.py +78 -0
  69. boltz/model/layers/triangular_attention/__init__.py +0 -0
  70. boltz/model/layers/triangular_attention/attention.py +189 -0
  71. boltz/model/layers/triangular_attention/primitives.py +409 -0
  72. boltz/model/layers/triangular_attention/utils.py +380 -0
  73. boltz/model/layers/triangular_mult.py +212 -0
  74. boltz/model/loss/__init__.py +0 -0
  75. boltz/model/loss/bfactor.py +49 -0
  76. boltz/model/loss/confidence.py +590 -0
  77. boltz/model/loss/confidencev2.py +621 -0
  78. boltz/model/loss/diffusion.py +171 -0
  79. boltz/model/loss/diffusionv2.py +134 -0
  80. boltz/model/loss/distogram.py +48 -0
  81. boltz/model/loss/distogramv2.py +105 -0
  82. boltz/model/loss/validation.py +1025 -0
  83. boltz/model/models/__init__.py +0 -0
  84. boltz/model/models/boltz1.py +1286 -0
  85. boltz/model/models/boltz2.py +1249 -0
  86. boltz/model/modules/__init__.py +0 -0
  87. boltz/model/modules/affinity.py +223 -0
  88. boltz/model/modules/confidence.py +481 -0
  89. boltz/model/modules/confidence_utils.py +181 -0
  90. boltz/model/modules/confidencev2.py +495 -0
  91. boltz/model/modules/diffusion.py +844 -0
  92. boltz/model/modules/diffusion_conditioning.py +116 -0
  93. boltz/model/modules/diffusionv2.py +677 -0
  94. boltz/model/modules/encoders.py +639 -0
  95. boltz/model/modules/encodersv2.py +565 -0
  96. boltz/model/modules/transformers.py +322 -0
  97. boltz/model/modules/transformersv2.py +261 -0
  98. boltz/model/modules/trunk.py +688 -0
  99. boltz/model/modules/trunkv2.py +828 -0
  100. boltz/model/modules/utils.py +303 -0
  101. boltz/model/optim/__init__.py +0 -0
  102. boltz/model/optim/ema.py +389 -0
  103. boltz/model/optim/scheduler.py +99 -0
  104. boltz/model/potentials/__init__.py +0 -0
  105. boltz/model/potentials/potentials.py +497 -0
  106. boltz/model/potentials/schedules.py +32 -0
  107. boltz_vsynthes-1.0.0.dist-info/METADATA +151 -0
  108. boltz_vsynthes-1.0.0.dist-info/RECORD +112 -0
  109. boltz_vsynthes-1.0.0.dist-info/WHEEL +5 -0
  110. boltz_vsynthes-1.0.0.dist-info/entry_points.txt +2 -0
  111. boltz_vsynthes-1.0.0.dist-info/licenses/LICENSE +21 -0
  112. boltz_vsynthes-1.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,151 @@
1
+ Metadata-Version: 2.4
2
+ Name: boltz-vsynthes
3
+ Version: 1.0.0
4
+ Summary: Boltz for V-Synthes
5
+ Requires-Python: <3.13,>=3.10
6
+ Description-Content-Type: text/markdown
7
+ License-File: LICENSE
8
+ Requires-Dist: torch>=2.2
9
+ Requires-Dist: numpy<2.0,>=1.26
10
+ Requires-Dist: hydra-core==1.3.2
11
+ Requires-Dist: pytorch-lightning==2.5.0
12
+ Requires-Dist: rdkit>=2024.3.2
13
+ Requires-Dist: dm-tree==0.1.8
14
+ Requires-Dist: requests==2.32.3
15
+ Requires-Dist: pandas>=2.2.2
16
+ Requires-Dist: types-requests
17
+ Requires-Dist: einops==0.8.0
18
+ Requires-Dist: einx==0.3.0
19
+ Requires-Dist: fairscale==0.4.13
20
+ Requires-Dist: mashumaro==3.14
21
+ Requires-Dist: modelcif==1.2
22
+ Requires-Dist: wandb==0.18.7
23
+ Requires-Dist: click==8.1.7
24
+ Requires-Dist: pyyaml==6.0.2
25
+ Requires-Dist: biopython==1.84
26
+ Requires-Dist: scipy==1.13.1
27
+ Requires-Dist: numba==0.61.0
28
+ Requires-Dist: gemmi==0.6.5
29
+ Requires-Dist: scikit-learn==1.6.1
30
+ Requires-Dist: chembl_structure_pipeline==1.2.2
31
+ Requires-Dist: cuequivariance_ops_cu12>=0.5.0
32
+ Requires-Dist: cuequivariance_ops_torch_cu12>=0.5.0
33
+ Requires-Dist: cuequivariance_torch>=0.5.0
34
+ Provides-Extra: lint
35
+ Requires-Dist: ruff; extra == "lint"
36
+ Provides-Extra: test
37
+ Requires-Dist: pytest; extra == "test"
38
+ Requires-Dist: requests; extra == "test"
39
+ Dynamic: license-file
40
+
41
+ <div align="center">
42
+ <div>&nbsp;</div>
43
+ <img src="docs/boltz2_title.png" width="300"/>
44
+ <img src="https://model-gateway.boltz.bio/a.png?x-pxid=bce1627f-f326-4bff-8a97-45c6c3bc929d" />
45
+
46
+ [Boltz-1](https://doi.org/10.1101/2024.11.19.624167) | [Boltz-2](https://bit.ly/boltz2-pdf) |
47
+ [Slack](https://join.slack.com/t/boltz-community/shared_invite/zt-3751cpmn6-kDLgLcQFMOPeUdFIJd4oqQ) <br> <br>
48
+ </div>
49
+
50
+
51
+
52
+ ![](docs/boltz1_pred_figure.png)
53
+
54
+
55
+ ## Introduction
56
+
57
+ Boltz is a family of models for biomolecular interaction prediction. Boltz-1 was the first fully open source model to approach AlphaFold3 accuracy. Our latest work Boltz-2 is a new biomolecular foundation model that goes beyond AlphaFold3 and Boltz-1 by jointly modeling complex structures and binding affinities, a critical component towards accurate molecular design. Boltz-2 is the first deep learning model to approach the accuracy of physics-based free-energy perturbation (FEP) methods, while running 1000x faster — making accurate in silico screening practical for early-stage drug discovery.
58
+
59
+ All the code and weights are provided under MIT license, making them freely available for both academic and commercial uses. For more information about the model, see the [Boltz-1](https://doi.org/10.1101/2024.11.19.624167) and [Boltz-2](https://bit.ly/boltz2-pdf) technical reports. To discuss updates, tools and applications join our [Slack channel](https://join.slack.com/t/boltz-community/shared_invite/zt-34qg8uink-V1LGdRRUf3avAUVaRvv93w).
60
+
61
+ ## Installation
62
+
63
+ > Note: we recommend installing boltz in a fresh python environment
64
+
65
+ Install boltz with PyPI (recommended):
66
+
67
+ ```
68
+ pip install boltz -U
69
+ ```
70
+
71
+ or directly from GitHub for daily updates:
72
+
73
+ ```
74
+ git clone https://github.com/jwohlwend/boltz.git
75
+ cd boltz; pip install -e .
76
+ ```
77
+
78
+ ## Inference
79
+
80
+ You can run inference using Boltz with:
81
+
82
+ ```
83
+ boltz predict input_path --use_msa_server
84
+ ```
85
+
86
+ `input_path` should point to a YAML file, or a directory of YAML files for batched processing, describing the biomolecules you want to model and the properties you want to predict (e.g. affinity). To see all available options: `boltz predict --help` and for more information on these input formats, see our [prediction instructions](docs/prediction.md). By default, the `boltz` command will run the latest version of the model.
87
+
88
+ ### Binding Affinity Prediction
89
+ There are two main predictions in the affinity output: `affinity_pred_value` and `affinity_probability_binary`. They are trained on largely different datasets, with different supervisions, and should be used in different contexts. The `affinity_probability_binary` field should be used to detect binders from decoys, for example in a hit-discovery stage. It's value ranges from 0 to 1 and represents the predicted probability that the ligand is a binder. The `affinity_pred_value` aims to measure the specific affinity of different binders and how this changes with small modifications of the molecule. This should be used in ligand optimization stages such as hit-to-lead and lead-optimization. It reports a binding affinity value as `log(IC50)`, derived from an `IC50` measured in `μM`. More details on how to run affinity predictions and parse the output can be found in our [prediction instructions](docs/prediction.md).
90
+
91
+
92
+ ## Evaluation
93
+
94
+ ⚠️ **Coming soon: updated evaluation code for Boltz-2!**
95
+
96
+ To encourage reproducibility and facilitate comparison with other models, on top of the existing Boltz-1 evaluation pipeline, we will soon provide the evaluation scripts and structural predictions for Boltz-2, Boltz-1, Chai-1 and AlphaFold3 on our test benchmark dataset, and our affinity predictions on the FEP+ benchamark, CASP16 and our MF-PCBA test set.
97
+
98
+ ![Affinity test sets evaluations](docs/pearson_plot.png)
99
+ ![Test set evaluations](docs/plot_test_boltz2.png)
100
+
101
+
102
+ ## Training
103
+
104
+ ⚠️ **Coming soon: updated training code for Boltz-2!**
105
+
106
+ If you're interested in retraining the model, currently for Boltz-1 but soon for Boltz-2, see our [training instructions](docs/training.md).
107
+
108
+
109
+ ## Contributing
110
+
111
+ We welcome external contributions and are eager to engage with the community. Connect with us on our [Slack channel](https://join.slack.com/t/boltz-community/shared_invite/zt-34qg8uink-V1LGdRRUf3avAUVaRvv93w) to discuss advancements, share insights, and foster collaboration around Boltz-2.
112
+
113
+ Boltz also runs on Tenstorrent hardware thanks to a [fork](https://github.com/moritztng/tt-boltz) by Moritz Thüning.
114
+
115
+ ## License
116
+
117
+ Our model and code are released under MIT License, and can be freely used for both academic and commercial purposes.
118
+
119
+
120
+ ## Cite
121
+
122
+ If you use this code or the models in your research, please cite the following papers:
123
+
124
+ ```bibtex
125
+ @article{passaro2025boltz2,
126
+ author = {Passaro, Saro and Corso, Gabriele and Wohlwend, Jeremy and Reveiz, Mateo and Thaler, Stephan and Somnath, Vignesh Ram and Getz, Noah and Portnoi, Tally and Roy, Julien and Stark, Hannes and Kwabi-Addo, David and Beaini, Dominique and Jaakkola, Tommi and Barzilay, Regina},
127
+ title = {Boltz-2: Towards Accurate and Efficient Binding Affinity Prediction},
128
+ year = {2025},
129
+ doi = {},
130
+ journal = {}
131
+ }
132
+
133
+ @article{wohlwend2024boltz1,
134
+ author = {Wohlwend, Jeremy and Corso, Gabriele and Passaro, Saro and Getz, Noah and Reveiz, Mateo and Leidal, Ken and Swiderski, Wojtek and Atkinson, Liam and Portnoi, Tally and Chinn, Itamar and Silterra, Jacob and Jaakkola, Tommi and Barzilay, Regina},
135
+ title = {Boltz-1: Democratizing Biomolecular Interaction Modeling},
136
+ year = {2024},
137
+ doi = {10.1101/2024.11.19.624167},
138
+ journal = {bioRxiv}
139
+ }
140
+ ```
141
+
142
+ In addition if you use the automatic MSA generation, please cite:
143
+
144
+ ```bibtex
145
+ @article{mirdita2022colabfold,
146
+ title={ColabFold: making protein folding accessible to all},
147
+ author={Mirdita, Milot and Sch{\"u}tze, Konstantin and Moriwaki, Yoshitaka and Heo, Lim and Ovchinnikov, Sergey and Steinegger, Martin},
148
+ journal={Nature methods},
149
+ year={2022},
150
+ }
151
+ ```
@@ -0,0 +1,112 @@
1
+ boltz/__init__.py,sha256=F_-so3S40iZrSZ89Ge4TS6aZqwWyZXq_H4AXGDlbA_g,187
2
+ boltz/main.py,sha256=-MLsz2z4G-QyJ-Adn_BrgJEVamvMMwPCUEURotLtNFA,40684
3
+ boltz/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ boltz/data/const.py,sha256=1M-88Z6HkfKY6MkNtqcj3b9P-oX9xEXluh3qM_u8dNU,26779
5
+ boltz/data/mol.py,sha256=maOpPHEGX1VVXCIFY6pQNGF7gUBZPAfgSvuPf2QO1yc,34268
6
+ boltz/data/pad.py,sha256=O4CGOOc5TwFuuWeP7hKjMIIsljdfLj-VJtXQeVXFx8s,2066
7
+ boltz/data/types.py,sha256=4w9brpOCQe16AyByNrxz7pjIzrgzFNihtik3aaHvKaE,21965
8
+ boltz/data/crop/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ boltz/data/crop/affinity.py,sha256=toD0tly_SB2YZgkPS12hK3FRw8RH3jI38D8p1syhsMQ,5733
10
+ boltz/data/crop/boltz.py,sha256=oJSxaalUMXUNcYzoXWUn_CLaqU1LZApBlxnk5UMh73I,9841
11
+ boltz/data/crop/cropper.py,sha256=BGDgFwNVUPyBZvcqnJwPyH_IfZ1NAYCZ_KMwbQf4HK4,1145
12
+ boltz/data/feature/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ boltz/data/feature/featurizer.py,sha256=yYWsgW3VAH9GOgfitZPt__gsB2bcxrzcvUQjKVeRYhc,44574
14
+ boltz/data/feature/featurizerv2.py,sha256=ODW9NKbW_Jgj18SNhM2CHSJJF4aEFb8naL9AwmChh2Q,84390
15
+ boltz/data/feature/symmetry.py,sha256=JEqxG4Xccs7q4UKIxLPULXsv5wYiNE3BZMDH0msBaNA,22214
16
+ boltz/data/filter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ boltz/data/filter/dynamic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
+ boltz/data/filter/dynamic/date.py,sha256=M9ks1Pz9p0M99-xponruv-_FHfNR3Hv3oXt_NRNMOWo,2078
19
+ boltz/data/filter/dynamic/filter.py,sha256=rnyp8-hCWMHfOVTKbDo-0ADvw1zovGwj_Y-PuP_pxiU,516
20
+ boltz/data/filter/dynamic/max_residues.py,sha256=tvYafk8C4-_t96nWSHIJ57yqxWjHrlJX5L8KjpuKbE0,1071
21
+ boltz/data/filter/dynamic/resolution.py,sha256=OLhPj0YumS8t45x0QKLBc6ERbwSqbFOZB8puEd17UfY,868
22
+ boltz/data/filter/dynamic/size.py,sha256=fx9tZff0xyNTYlnaDDeSoq6MpNK_U-hZpnA1xYHqTAo,1087
23
+ boltz/data/filter/dynamic/subset.py,sha256=xJ_LUeLWNa9DIEbxoH48Lp_G0XN0rLF9ep6XyfDs-qc,1106
24
+ boltz/data/filter/static/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ boltz/data/filter/static/filter.py,sha256=K7Sud4YTJ7i9RNK7aPbM0uIuO_1XfLrkZrPKgjVj6yI,555
26
+ boltz/data/filter/static/ligand.py,sha256=LamC-Z9IjYj3DmfxwMFmPbKBBhRMby3uWQj74wDWVJc,1042
27
+ boltz/data/filter/static/polymer.py,sha256=LNsQMsOOnhYpeKuM9AStktoTQPMZE3H0yu4mRg-jwPc,9386
28
+ boltz/data/module/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ boltz/data/module/inference.py,sha256=xk8ZJ8UhjPiPTdOluH_v4gnV8GtTX3sr1WZ1s5Ox8I8,8100
30
+ boltz/data/module/inferencev2.py,sha256=3p-jyPstcNzUeaOshEzAexXRBFjvpr-9tP3n8hxT6nw,12508
31
+ boltz/data/module/training.py,sha256=iNzmq9ufs20S4M947CCzdYzGTFjmCTf2tFExJ2PtXnA,22428
32
+ boltz/data/module/trainingv2.py,sha256=ZsYUHYXxfuPgIpbTwCj5QLO0XK__xjsqIw6GARSNGW0,21276
33
+ boltz/data/msa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
+ boltz/data/msa/mmseqs2.py,sha256=Im3s0h9lQVl-bXDfn4T6X6bxhLyF3XEyUXDjWFCjsvs,8202
35
+ boltz/data/parse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
+ boltz/data/parse/a3m.py,sha256=I5nD16kYVW1NPKeLEMm7I4GnEQrtZk9bFtxw89wmKi0,3318
37
+ boltz/data/parse/csv.py,sha256=Hcq8rJW2njczahEr8jfd_o-zxLaNSgJ3YIoC9srIqpw,2518
38
+ boltz/data/parse/fasta.py,sha256=taI4s_CqPtyF0XaLJAsVAJHCL0GXm2g1g8Qeccdxikk,3906
39
+ boltz/data/parse/mmcif.py,sha256=25kEXCkx-OuaawAs7cdz0fxdRu5_CCO0AV00u84PrjQ,36822
40
+ boltz/data/parse/mmcif_with_constraints.py,sha256=WHYZckSqUwu-Nb9vmVmxHmC7uxwVrF7AVUeVKsc5wGQ,51473
41
+ boltz/data/parse/schema.py,sha256=6dpgtwlPBkMCEnB6Wd-8m1l69-hgapDuNBkTGBu-p-M,62363
42
+ boltz/data/parse/yaml.py,sha256=GRFRMtDD4PQ4PIpA_S1jj0vRaEu2LlZd_g4rN1zUrNo,1505
43
+ boltz/data/sample/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
+ boltz/data/sample/cluster.py,sha256=9Sx8qP7zGZOAyEspwYFtCTbGTBZnuN-zfCKFbbA_6oI,8175
45
+ boltz/data/sample/distillation.py,sha256=ABzst2FBr_E54KqZWIHc1bYtKYr79lxRJM7PnS4ifK0,1789
46
+ boltz/data/sample/random.py,sha256=jmennDNfkuq2UByn55wrQTwNPCOBuu6_jBJT4VraL28,1142
47
+ boltz/data/sample/sampler.py,sha256=LXV4FLQPdMC_ja4MjPj0kicErr8UXSWrKehPBF5zOxQ,1095
48
+ boltz/data/tokenize/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
+ boltz/data/tokenize/boltz.py,sha256=h4rb2Jm9u5SP0xWygg4zE2kJ_RySRvYYDwvwlKqsSa0,6643
50
+ boltz/data/tokenize/boltz2.py,sha256=2xWq72_CMkyzQS8jxC4ffoePAhBoJAFJ7JGNCJ0Xj5A,12821
51
+ boltz/data/tokenize/tokenizer.py,sha256=9okkO89A1RvQd5tcW9VLIKZCSvvUALosy2itdN1mDIE,484
52
+ boltz/data/write/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
+ boltz/data/write/mmcif.py,sha256=zHwe4ulietjCVz5JMzl4_bu4liqwwcUKlgr9orVVd2Q,12177
54
+ boltz/data/write/pdb.py,sha256=P2pDpKKIJuIoPADWwei0tIakHWE-ajlGEw6BE371EcI,6235
55
+ boltz/data/write/utils.py,sha256=2PzveM4qZ7Aadru1Qzoi2Dhit_s4LXlz4ceXpGJi4y0,539
56
+ boltz/data/write/writer.py,sha256=bYxHHf6e0waO8WdAP_AmzWEEljc8lRx85HcDPR2Tjqo,12500
57
+ boltz/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
+ boltz/model/layers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
+ boltz/model/layers/attention.py,sha256=rkd5PTIoVB1kSzDnBrZfut4DoEHKHBCwuDb1p0JfSck,3782
60
+ boltz/model/layers/attentionv2.py,sha256=rpu8HutWyNzUA9SWk8hM1hb_1nciJjZCFP_WHTKM2No,3130
61
+ boltz/model/layers/confidence_utils.py,sha256=UMwP5Q5giBJ8BK5xWHXmEsD4ppDugRS4alrUGuvGPbc,8533
62
+ boltz/model/layers/dropout.py,sha256=kUr8_a84CtyYryQO1_VK44jGAD51qV4HTUQWXMV9xCc,723
63
+ boltz/model/layers/initialize.py,sha256=KnK9tUfGvCWkdwbcLvJYoL-Wmlo9YcIcKBtdrXaUG30,2463
64
+ boltz/model/layers/outer_product_mean.py,sha256=AZoWhbaZHvVCmKSRWJ8Jw7xaCiN232VBjFsMclk_SR8,3151
65
+ boltz/model/layers/pair_averaging.py,sha256=XXZipyOlxZv4QR4Uk2cIUe8Ow_Xpr45eECqsWouNAVs,4332
66
+ boltz/model/layers/pairformer.py,sha256=khDRUHbJWIBoO7zJYZ3t5VMA5FoOuFInvhCHnL_zFN0,10326
67
+ boltz/model/layers/relative.py,sha256=fLOwADG5VDDdH2Gqis-L6Lw8hnWGxCPjfV6t8kYeEIc,1875
68
+ boltz/model/layers/transition.py,sha256=zFClGmqmaUVUIFSd4W4pVY17lvin2NpvaZMKuec4zzc,2290
69
+ boltz/model/layers/triangular_mult.py,sha256=uQahL0rwZ04xPK95UOWjHlB48VypDBSaIXKVDmWCzJw,5996
70
+ boltz/model/layers/triangular_attention/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
+ boltz/model/layers/triangular_attention/attention.py,sha256=3qqgwo0oZNYw2DxYbT1rPzSZkJytAVeXU84cNanEZcc,4977
72
+ boltz/model/layers/triangular_attention/primitives.py,sha256=vuTTh2J6foaFkEhk9XKbeOxkJ6Vqry4qpCD_5cHsg1I,11957
73
+ boltz/model/layers/triangular_attention/utils.py,sha256=EjbfJO3ell7Ab8v8AG7zsW8Kk1n6blGfCyHPR-NOzbU,12394
74
+ boltz/model/loss/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
+ boltz/model/loss/bfactor.py,sha256=zX9JIlGAETR3NMcbptARjzSrhwWG_rWrG8pHrHWrE_8,1462
76
+ boltz/model/loss/confidence.py,sha256=ygGKytfop8zwXljdliViP0XGKBbnCgPcB25fv1PUeAg,19087
77
+ boltz/model/loss/confidencev2.py,sha256=yHgxo-KDtgB5NZF_cI885M9HFo0URiAQ2HjXsa9YaUM,21968
78
+ boltz/model/loss/diffusion.py,sha256=5xt0s2oJpPMSQd5wT8Mf5LzKghoKu-8DXPOHL3e4EHY,5044
79
+ boltz/model/loss/diffusionv2.py,sha256=yD0YuHQzorPn8WWHrTyBDCGpPTATqsUIsgOxGwHLNbw,4952
80
+ boltz/model/loss/distogram.py,sha256=eQBkkTdjNfnka0gMNFcMeX_o7KzsTY4TTZfm-oDbXuA,1178
81
+ boltz/model/loss/distogramv2.py,sha256=dFgMGwpdLK4-skHJwvpERG10KfF3ZUN1T9_hUj-iWQA,3845
82
+ boltz/model/loss/validation.py,sha256=gYpbag9mulg5HJPXjOUFaMV9XSYX_s2bIQ0iYjiAow0,33501
83
+ boltz/model/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
+ boltz/model/models/boltz1.py,sha256=x-x0b3VAXiAkPUBePnF56k1aYEPNgX1M6GtNCYVdCso,51718
85
+ boltz/model/models/boltz2.py,sha256=j8UqodTeaMGtpdEzopmfc7JW6td7nC2q6CCA7Fbnzy0,51522
86
+ boltz/model/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
+ boltz/model/modules/affinity.py,sha256=FktI2wrkDqsjGHJOuvzVrZK78MOPjU65QN0l6sB1QPQ,7041
88
+ boltz/model/modules/confidence.py,sha256=sXGymZiiMtfXPkUvHpa2KCCvNY79D8jXXEx9Gz2rNFs,17475
89
+ boltz/model/modules/confidence_utils.py,sha256=K3Gx6bZ1VE2M_ENbJ98uKttxkxnqRPlP_7gGoFNZyIw,5254
90
+ boltz/model/modules/confidencev2.py,sha256=G0iyGUqTYeRqi2fYRdYw6S4uKT_QX5PLTjBBO0Y-uA8,18581
91
+ boltz/model/modules/diffusion.py,sha256=os3sMX3U4COoco1ujbw9EJsjujEv9QGPC-FGZ-obzJ8,31787
92
+ boltz/model/modules/diffusion_conditioning.py,sha256=ZQDzvYlMJ9ByWBgQvlVIJQ66GPHkAK9jfVVK68IM5xk,3682
93
+ boltz/model/modules/diffusionv2.py,sha256=SCT2SclMJOwP_217vHhwTpesJGSu5JfsVDTwzZ8W2Bs,26013
94
+ boltz/model/modules/encoders.py,sha256=zDrsx0qAqSplGIoOMhH4hW37cBJp-1Q6Atou1ezZwYw,20412
95
+ boltz/model/modules/encodersv2.py,sha256=KTivFyUmB9BWEG_ASjr6DqlrFF-nSFdk6_M9ZGyZ4NQ,18716
96
+ boltz/model/modules/transformers.py,sha256=cWFnDZeZrqOVuvMcnXyqcRo0XIdea6Vk9taJyTeoVBE,8989
97
+ boltz/model/modules/transformersv2.py,sha256=BCczkyu5SbWNfpHuqzH7mYbisfznVZyuyGZG-50fhc4,7178
98
+ boltz/model/modules/trunk.py,sha256=RLTltzcU0QMs2K5oCrzVcV44t90GmR-bPhaSrl9OiY0,21538
99
+ boltz/model/modules/trunkv2.py,sha256=bv33QXbgYjfnoOYBtTSg63St3GD0LeVmCZMKLsjV2tk,27386
100
+ boltz/model/modules/utils.py,sha256=l1LBrYJUnJzyY4xIT1ds5BFDYTDNHUMmU2K-OLRr8Pg,10041
101
+ boltz/model/optim/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
102
+ boltz/model/optim/ema.py,sha256=rj1d9E5TWJ2EUW6z_KhrgOEAe_jzB3dj7O5lwJnprMc,11512
103
+ boltz/model/optim/scheduler.py,sha256=nB4jz0CZ4pR4n08LQngExL_pNycIdYI8AXVoHPnZWQ8,3505
104
+ boltz/model/potentials/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
+ boltz/model/potentials/potentials.py,sha256=vev8Vjfs-ML1hyrdv_R8DynG4wSFahJ6nzPWp7CYQqw,17507
106
+ boltz/model/potentials/schedules.py,sha256=m7XJjfuF9uTX3bR9VisXv1rvzJjxiD8PobXRpcBBu1c,968
107
+ boltz_vsynthes-1.0.0.dist-info/licenses/LICENSE,sha256=8GZ_1eZsUeG6jdqgJJxtciWzADfgLEV4LY8sKUOsJhc,1102
108
+ boltz_vsynthes-1.0.0.dist-info/METADATA,sha256=QK4KIT2ARgFooj9XW9ZDmn5XCRIF-fe2mMyG99DlVsk,7171
109
+ boltz_vsynthes-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
110
+ boltz_vsynthes-1.0.0.dist-info/entry_points.txt,sha256=n5a5I35ntu9lmyr16oZgHPFY0b0YxjiixY7m7nbMTLc,41
111
+ boltz_vsynthes-1.0.0.dist-info/top_level.txt,sha256=MgU3Jfb-ctWm07YGMts68PMjSh9v26D0gfG3dFRmVFA,6
112
+ boltz_vsynthes-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ boltz = boltz.main:cli
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Jeremy Wohlwend, Gabriele Corso, Saro Passaro
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ boltz