anindya64 commited on
Commit
d02cdd1
·
verified ·
1 Parent(s): 1f9dba5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -11
README.md CHANGED
@@ -19,11 +19,7 @@ configs:
19
 
20
  # AlphaFoldDB Prediction Index
21
 
22
- This repository contains the AlphaFold Protein Structure Database bulk-download files mirrored under `LiteFold/AlphaFoldDB`. The added Parquet files make the accession index loadable in the Hugging Face Dataset Viewer and the `datasets` API.
23
-
24
- The default dataset table is built from `accession_ids.csv`. Each row represents one AlphaFold DB prediction entry and includes its UniProt accession, AlphaFold DB identifier, residue range, latest model version, derived sequence length, parsed fragment number, and deterministic split bucket.
25
-
26
- The raw FASTA file and structure tar archives are preserved in the repository but are not embedded in the default Parquet table.
27
 
28
  ## Splits
29
 
@@ -117,11 +113,18 @@ For large jobs, prefer streaming or process the Parquet files with a columnar en
117
  | `is_fragmented_prediction` | Whether `fragment_number` is greater than 1. |
118
  | `split_bucket` | Deterministic bucket from `hash(uniprot_accession) % 10`; bucket 0 is test. |
119
 
120
- ## Source Files Used
121
 
122
- - `accession_ids.csv`
123
- - `download_metadata.json`
124
- - `README.txt`
125
- - `CHANGELOG.txt`
126
 
127
- The processed files were generated from the raw files already present in this repository. The preparation script is included at `scripts/prepare_alphafolddb_dataset.py`.
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
  # AlphaFoldDB Prediction Index
21
 
22
+ AlphaFoldDB is an open database of predicted protein 3D structures with confidence scores, massively expanding structural coverage for known protein sequences.
 
 
 
 
23
 
24
  ## Splits
25
 
 
113
  | `is_fragmented_prediction` | Whether `fragment_number` is greater than 1. |
114
  | `split_bucket` | Deterministic bucket from `hash(uniprot_accession) % 10`; bucket 0 is test. |
115
 
 
116
 
117
+ # Citation
 
 
 
118
 
119
+ ```
120
+ @article{varadi2022alphafolddb,
121
+ title = {{AlphaFold} Protein Structure Database: massively expanding the structural coverage of protein-sequence space with high-accuracy models},
122
+ author = {Varadi, Mihaly and Anyango, Stephen and Deshpande, Mandar and others},
123
+ journal = {Nucleic Acids Research},
124
+ volume = {50},
125
+ number = {D1},
126
+ pages = {D439--D444},
127
+ year = {2022},
128
+ doi = {10.1093/nar/gkab1061}
129
+ }
130
+ ```