--- license: other license_name: non-commercial-license-dyna1 license_link: https://github.com/WaymentSteeleLab/Dyna-1/blob/main/LICENSE.txt tags: - proteins - nmr pretty_name: 2J_Coupling size_categories: - n<1K viewer: true configs: - config_name: main data_files: - split: 2J_couplings path: 2J_couplings.csv ---

2J-Protein-Coupling Dataset

This data set was curated from the paper 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.

Raw Data Source

This dataset was curated from the following research paper:

Quickstart Usage

1. Install the datasets Library

From the terminal / command line:

pip install datasets

In Jupyter Notebook, prefix with !:

!pip install datasets

2. Load the Dataset in Python

from datasets import load_dataset

dataset_protein = load_dataset(
    "RosettaCommons/2J-Protein-Coupling",
    data_files="Protein/*.csv"
)

3. Access Dataset Columns

# Example: Get protein sequences and lengths
sequences = dataset_protein["train"]["sequence"]
lengths = dataset_protein["train"]["sequence_length"]

print(sequences[:5])
print(lengths[:5])

Dataset Description

Each row represents a single polymer chain within a larger macromolecular assembly. Key fields include:

### Citation ``` @article{Schmidt2010, title = {Correlation of 2J couplings with protein secondary structure}, volume = {78}, ISSN = {1097-0134}, url = {http://dx.doi.org/10.1002/prot.22672}, DOI = {10.1002/prot.22672}, number = {6}, journal = {Proteins: Structure, Function, and Bioinformatics}, publisher = {Wiley}, author = {Schmidt, J\"{u}rgen M. and Hua, Yixun and L\"{o}hr, Frank}, year = {2010}, month = feb, pages = {1544–1562} } ``` _This dataset was curated by Nicolas Langdon (nblangdon@wesleyan.edu) from the five original papers listed above._