anindya64 commited on
Commit
47150f5
·
verified ·
1 Parent(s): 85cb697

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -1
README.md CHANGED
@@ -25,7 +25,8 @@ configs:
25
 
26
  # Protenix Data
27
 
28
- This dataset preserves the source folder as tar shards. `metadata.csv` has one row per original file and is configured as the default Dataset Viewer table, while the actual bytes live in `shards/*.tar`.
 
29
 
30
  ## Summary
31
 
@@ -172,3 +173,17 @@ for row in files:
172
  ## Notes
173
 
174
  The tar shards are uncompressed by design. This keeps packaging and random extraction simple and avoids spending CPU compressing data that is often already compressed.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
  # Protenix Data
27
 
28
+ Protenix is ByteDance's open-source PyTorch reproduction of AlphaFold3, a biomolecular structure predictor that handles proteins, DNA, RNA, ligands, ions, and modifications under a unified all-atom diffusion model. Alongside the model code and weights, the team released the full preprocessed training dataset used to train Protenix and its successors, making it one of the largest publicly available AF3-style training corpora.
29
+ The released data is built from the wwPDB and is intended to be drop-in usable for AF3-style training. The original v0.5.0 release uses a PDB cutoff of 2021-09-30 (matching AF3), and Protenix-v1-20250630 extends the cutoff to 2025-06-30 on a larger curated set. MSAs are generated with the ColabFold pipeline against UniRef30 and the ColabFold environmental database, with UniRef sequences retained for pairing via taxonomy IDs and the remainder folded into the unpaired MSA features. Protenix-v1 also adds RNA MSAs and HMMER-derived structural templates aligned with the AF3 template strategy.
30
 
31
  ## Summary
32
 
 
173
  ## Notes
174
 
175
  The tar shards are uncompressed by design. This keeps packaging and random extraction simple and avoids spending CPU compressing data that is often already compressed.
176
+
177
+ # Citation
178
+
179
+ ```
180
+ @article{bytedance2025protenix,
181
+ title = {Protenix - Advancing Structure Prediction Through a Comprehensive AlphaFold3 Reproduction},
182
+ author = {ByteDance AML AI4Science Team and Chen, Xinshi and Zhang, Yuxuan and Lu, Chan and Ma, Wenzhi and Guan, Jiaqi and Gong, Chengyue and Yang, Jincai and Zhang, Hanyu and Zhang, Ke and Wu, Shenghao and Zhou, Kuangqi and Yang, Yanping and Liu, Zhenyu and Wang, Lan and Shi, Bo and Shi, Shaochen and Xiao, Wenzhi},
183
+ journal = {bioRxiv},
184
+ year = {2025},
185
+ publisher = {Cold Spring Harbor Laboratory},
186
+ doi = {10.1101/2025.01.08.631967},
187
+ url = {https://www.biorxiv.org/content/10.1101/2025.01.08.631967v1}
188
+ }
189
+ ```