--- license: mit ---
Lawson CL, Berman HM, Vallat B, Chen L, Zirbel C (2024) The Nucleic Acid Knowledgebase: a new portal for 3D structural information about nucleic acids. Nucleic Acids Research 52, D245-D254.
https://doi.org/10.1093/nar/gkad957
NAKB data set contains 21166 structures including Nucleic Acids, Protein, and Ligand Annotations, and determined 3D structures found in the Nucleic Acid Database (NDB) and the Protein Data Bank (PDB), including structures determined by X-ray, Electron Microscopy, and Nuclear Magnetic Resonance. Information contained in this data set is PDB/NDB ID, Release Date, Sequence, Polymer Composition, and Molecular Weight.
Install HuggingFace Datasets package
Each subset can be loaded into python using the Huggingface datasets library. First, from the command line install the datasets library:
```python from datasets import load_dataset dataset_protein = load_dataset( "JOOOOOOOOOOJ/Rosetta_NAKB", data_files="Protein/*.csv" ) dataset_protein["train"].head() ```It is important to distinguish between polyclass and polytype.
polyclass defines the biological assembly category (e.g., a ribonucleoprotein complex composed of proteins and RNA).
polytype defines the chemical nature of the specific chain listed in that row.
For example, in a Protein/RNA polyclass assembly (such as a ribosome), individual rows may have a polytype of Protein (e.g., ribosomal proteins) or RNA (e.g., rRNA chains). Thus, multiple polytypes can exist within a single polyclass. This distinction allows the dataset to represent both the system-level composition of a structure and the molecular identity of its individual components.