Update README.md
Browse files
README.md
CHANGED
|
@@ -1,8 +1,16 @@
|
|
| 1 |
-
<h1>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
<p> Input Paper 1</p>
|
| 4 |
<p> DOI </p>
|
| 5 |
|
|
|
|
| 6 |
<p> Input Paper 2</p>
|
| 7 |
<p> DOI </p>
|
| 8 |
|
|
@@ -13,4 +21,49 @@
|
|
| 13 |
<p> DOI </p>
|
| 14 |
|
| 15 |
<p> Input Paper 5</p>
|
| 16 |
-
<p> DOI </p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<h1>2J-Protein-Coupling Dataset</h1>
|
| 2 |
+
|
| 3 |
+
This data set was curated from the papers below accessed through the Biological Magnetic Resonance Data Bank (BMRB). There are a total of 3999 2J coupling taken from 5 different proteins and up to 10 different experiments. This dataset contains information regarding PDB ID, Sequence, 2J coupling data of 15N, 13C, and 1H. Data was curated and organized into this set of the five papers below, with the addition of the sequence taken from the Protein Data Bank.
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
<h2>Raw Data Source</h2>
|
| 7 |
+
<p>This dataset was curated from the following research papers:</p>
|
| 8 |
+
<ul>
|
| 9 |
|
| 10 |
<p> Input Paper 1</p>
|
| 11 |
<p> DOI </p>
|
| 12 |
|
| 13 |
+
|
| 14 |
<p> Input Paper 2</p>
|
| 15 |
<p> DOI </p>
|
| 16 |
|
|
|
|
| 21 |
<p> DOI </p>
|
| 22 |
|
| 23 |
<p> Input Paper 5</p>
|
| 24 |
+
<p> DOI </p>
|
| 25 |
+
|
| 26 |
+
</ul>
|
| 27 |
+
|
| 28 |
+
<h2>Quickstart Usage</h2>
|
| 29 |
+
|
| 30 |
+
<h3>1. Install the datasets Library</h3>
|
| 31 |
+
<p>From the terminal / command line:</p>
|
| 32 |
+
<pre><code>pip install datasets
|
| 33 |
+
</code></pre>
|
| 34 |
+
|
| 35 |
+
<p>In Jupyter Notebook, prefix with <code>!</code>:</p>
|
| 36 |
+
<pre><code>!pip install datasets
|
| 37 |
+
</code></pre>
|
| 38 |
+
|
| 39 |
+
<h3>2. Load the Dataset in Python</h3>
|
| 40 |
+
<pre><code>from datasets import load_dataset
|
| 41 |
+
|
| 42 |
+
dataset_protein = load_dataset(
|
| 43 |
+
"nlangdon/2J-Protein-Coupling",
|
| 44 |
+
data_files="Protein/*.csv"
|
| 45 |
+
)
|
| 46 |
+
</code></pre>
|
| 47 |
+
|
| 48 |
+
<h3>3. Access Dataset Columns</h3>
|
| 49 |
+
<pre><code># Example: Get protein sequences and lengths
|
| 50 |
+
sequences = dataset_protein["train"]["sequence"]
|
| 51 |
+
lengths = dataset_protein["train"]["sequence_length"]
|
| 52 |
+
|
| 53 |
+
print(sequences[:5])
|
| 54 |
+
print(lengths[:5])
|
| 55 |
+
</code></pre>
|
| 56 |
+
|
| 57 |
+
<h2>Dataset Description</h2>
|
| 58 |
+
<p>Each row represents a single polymer chain within a larger macromolecular assembly. Key fields include:</p>
|
| 59 |
+
<ul>
|
| 60 |
+
<li><strong>entry_id</strong>: ID from the Biological Magnetic Resonance Data Bank (BMRB)</li>
|
| 61 |
+
<li><strong>file_name</strong>: Named by experiment and entry_id</li>
|
| 62 |
+
<li><strong>sequence_length</strong>: Length of the protein sequence</li>
|
| 63 |
+
<li><strong>sequence</strong>: Protein sequence in single-letter amino acid code</li>
|
| 64 |
+
<li><strong>experiment_code</strong>: Type of experiment</li>
|
| 65 |
+
<li><strong>num_measurements</strong>: Number of experiments recorded for each protein</li>
|
| 66 |
+
</ul>
|
| 67 |
+
|
| 68 |
+
|
| 69 |
+
<i>_This dataset was curated by Nicolas Langdon (<a href="mailto:nblangdon@wesleyan.edu">nblangdon@wesleyan.edu</a>) from the five original papers listed above._</i>
|