Update README.md
Browse files
README.md
CHANGED
|
@@ -2,13 +2,13 @@
|
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
|
| 5 |
-
<
|
| 6 |
|
| 7 |
<p>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. </p>
|
| 8 |
<p>https://doi.org/10.1093/nar/gkad957</p>
|
| 9 |
|
| 10 |
<h1>Nucleic Acid Knowledgebase (NAKB)</h1>
|
| 11 |
-
<p>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.</p>
|
| 12 |
|
| 13 |
<h1>Quickstart Usage</h1>
|
| 14 |
<strong>Install HuggingFace Datasets package</strong>
|
|
@@ -39,37 +39,32 @@ dataset_protein = load_dataset(
|
|
| 39 |
dataset_protein["train"].head()
|
| 40 |
```
|
| 41 |
|
|
|
|
|
|
|
| 42 |
|
| 43 |
-
|
| 44 |
-
Each row in the dataset represents a single polymer chain within a larger macromolecular assembly. The dataset includes the following key fields:
|
| 45 |
|
| 46 |
-
|
| 47 |
-
<li>polyclass: The overall assembly classification. This describes the type of macromolecular complex in which the chain is found (e.g., Protein/RNA). It reflects the biological composition of the full structure rather than the individual molecule.
|
| 48 |
|
| 49 |
-
|
| 50 |
|
| 51 |
-
|
| 52 |
|
| 53 |
-
|
| 54 |
|
| 55 |
-
|
| 56 |
|
| 57 |
-
|
| 58 |
|
| 59 |
-
|
| 60 |
|
| 61 |
-
|
| 62 |
|
| 63 |
-
<
|
| 64 |
|
| 65 |
-
</
|
| 66 |
-
<h1>polyclass vs polytype</h1>
|
| 67 |
|
| 68 |
-
<p>
|
| 69 |
-
|
| 70 |
-
<p>polyclass defines the biological assembly category (e.g., a ribonucleoprotein complex composed of proteins and RNA).</p>
|
| 71 |
-
|
| 72 |
-
<p>polytype defines the chemical nature of the specific chain listed in that row.</p>
|
| 73 |
|
|
|
|
| 74 |
<p>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.</p>
|
| 75 |
-
|
|
|
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
|
| 5 |
+
<h1>Original Paper:</h1>
|
| 6 |
|
| 7 |
<p>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. </p>
|
| 8 |
<p>https://doi.org/10.1093/nar/gkad957</p>
|
| 9 |
|
| 10 |
<h1>Nucleic Acid Knowledgebase (NAKB)</h1>
|
| 11 |
+
<p>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. Assemblies, split by chain with sequences added to the curated data of Lawson et al. </p>
|
| 12 |
|
| 13 |
<h1>Quickstart Usage</h1>
|
| 14 |
<strong>Install HuggingFace Datasets package</strong>
|
|
|
|
| 39 |
dataset_protein["train"].head()
|
| 40 |
```
|
| 41 |
|
| 42 |
+
<h2>Data Explaination</h2>
|
| 43 |
+
<p>Each row in the dataset represents a single polymer chain within a larger macromolecular assembly. The dataset includes the following key fields:</p>
|
| 44 |
|
| 45 |
+
* `polyclass`: The overall assembly classification. This describes the type of macromolecular complex in which the chain is found (e.g., Protein/RNA). It reflects the biological composition of the full structure rather than the individual molecule.
|
|
|
|
| 46 |
|
| 47 |
+
* `released`: Structure release date.
|
|
|
|
| 48 |
|
| 49 |
+
* `resolution`: Experimental resolution in Ångströms.
|
| 50 |
|
| 51 |
+
* `method`: Structure determination method (e.g., EM for electron microscopy).
|
| 52 |
|
| 53 |
+
* `chains`: Chain identifier within the structure.
|
| 54 |
|
| 55 |
+
* `polytype`: The polymer type of the individual chain (e.g., Protein, RNA). Unlike polyclass, which describes the entire assembly, polytype refers specifically to the molecular identity of the single chain represented in that row.
|
| 56 |
|
| 57 |
+
* `description`: Functional or canonical name of the molecule (e.g., ribosomal proteins such as 40S or 60S subunits).
|
| 58 |
|
| 59 |
+
* `entityMW`: Molecular weight of the entity (kDa).
|
| 60 |
|
| 61 |
+
* `seq`: Amino acid or nucleotide sequence of the polymer chain.
|
| 62 |
|
| 63 |
+
<h2>__`polyclass` vs `polytype`__</h2>
|
| 64 |
|
| 65 |
+
<p>It is important to distinguish between the `polyclass` and `polytype` attributes.</p>
|
|
|
|
| 66 |
|
| 67 |
+
<p>`polyclass` defines the biological assembly category (e.g., a ribonucleoprotein complex composed of proteins and RNA).</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
|
| 69 |
+
<p>`polytype` defines the chemical nature of the specific chain listed in that row.</p>
|
| 70 |
<p>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.</p>
|
|
|