ZhiyuanChen commited on
Commit
bc442aa
·
verified ·
1 Parent(s): 83ca237

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. README.md +142 -0
  2. test.parquet +3 -0
  3. train.parquet +3 -0
  4. validation.parquet +3 -0
README.md ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: rna
3
+ tags:
4
+ - Biology
5
+ - RNA
6
+ license:
7
+ - agpl-3.0
8
+ size_categories:
9
+ - 10K<n<100K
10
+ source_datasets:
11
+ - multimolecule/bprna
12
+ - multimolecule/pdb
13
+ task_categories:
14
+ - text-generation
15
+ - fill-mask
16
+ task_ids:
17
+ - language-modeling
18
+ - masked-language-modeling
19
+ pretty_name: bpRNA-spot
20
+ library_name: multimolecule
21
+ ---
22
+
23
+ # bpRNA-spot
24
+
25
+ bpRNA-spot is a collection of the datasets used by SPOT-RNA for RNA secondary structure prediction.
26
+
27
+ The dataset is released as a composite repository, `bpRNA-spot`, and three numbered component repositories:
28
+
29
+ - `bpRNA-spot-0`: the initial bpRNA split, `TR0`, `VL0`, and `TS0`.
30
+ - `bpRNA-spot-1`: the PDB transfer-learning split, `TR1`, `VL1`, and `TS1`.
31
+ - `bpRNA-spot-2`: the NMR-only evaluation split, `TS2`.
32
+
33
+ `bpRNA-spot` concatenates the components in order:
34
+
35
+ - `train`: `TR0 + TR1`
36
+ - `validation`: `VL0 + VL1`
37
+ - `test`: `TS0 + TS1 + TS2`
38
+
39
+ The `TR0`/`VL0`/`TS0` split is a subset of [bpRNA-1m](../bprna).
40
+ It applies [CD-HIT (CD-HIT-EST)](https://sites.google.com/view/cd-hit) to remove sequences with more than 80% sequence similarity from bpRNA-1m.
41
+ It further randomly splits the remaining sequences into training, validation, and test sets with a ratio of approximately 8:1:1.
42
+
43
+ The `TR1`/`VL1`/`TS1` split contains high-resolution PDB RNAs used for transfer learning.
44
+ `TS2` contains 39 RNAs solved by NMR and is used for post-training evaluation.
45
+
46
+ All secondary structures are stored as dot-bracket notation.
47
+ For the sequence/label splits, base pairs that would make a nucleotide pair with multiple partners are removed before converting to dot-bracket notation.
48
+ Non-`A/C/G/U` symbols in those sequence files are normalized to `N`.
49
+
50
+ ## Schema
51
+
52
+ | Column | Description |
53
+ | --- | --- |
54
+ | `id` | Identifier of the sequence. |
55
+ | `sequence` | RNA sequence. |
56
+ | `secondary_structure` | Secondary structure in dot-bracket notation. Pseudoknots may use bracket tiers beyond `()`. |
57
+ | `structural_annotation` | bpRNA-style structural annotation generated from the stored dot-bracket structure. |
58
+ | `functional_annotation` | bpRNA-style functional annotation generated from the stored dot-bracket structure. |
59
+
60
+ ## Disclaimer
61
+
62
+ This is an UNOFFICIAL release of the bpRNA-spot by Jaswinder Singh, et al.
63
+
64
+ **The team releasing bpRNA-spot did not write this dataset card for this dataset so this dataset card has been written by the MultiMolecule team.**
65
+
66
+ ## Dataset Description
67
+
68
+ - **Homepage**: https://multimolecule.danling.org/datasets/bprna-spot
69
+ - **datasets**: https://huggingface.co/datasets/multimolecule/bprna-spot
70
+ - **Point of Contact**: [Kuldip Paliwal](mailto:k.paliwal@griffith.edu.au) and [Yaoqi Zhou](mailto:yaoqi.zhou@griffith.edu.au)
71
+
72
+ ## Related Datasets
73
+
74
+ - [bpRNA-1m](https://huggingface.co/datasets/multimolecule/bprna): A database of single molecule secondary structures annotated using bpRNA.
75
+ - [bpRNA-new](https://huggingface.co/datasets/multimolecule/bprna-new): A dataset of newly discovered RNA families from Rfam 14.2, designed for cross-family validation to assess generalization capability.
76
+ - [RNAStrAlign](https://huggingface.co/datasets/multimolecule/rnastralign): A database of RNA secondary with the same families as ArchiveII, usually used for training.
77
+
78
+ ## License
79
+
80
+ This dataset is licensed under the [GNU Affero General Public License](license.md).
81
+
82
+ For additional terms and clarifications, please refer to our [License FAQ](license-faq.md).
83
+
84
+ ```spdx
85
+ SPDX-License-Identifier: AGPL-3.0-or-later
86
+ ```
87
+ ## Citation
88
+
89
+ ```bibtex
90
+ @article{singh2019rna,
91
+ author = {Singh, Jaswinder and Hanson, Jack and Paliwal, Kuldip and Zhou, Yaoqi},
92
+ journal = {Nature Communications},
93
+ month = nov,
94
+ number = 1,
95
+ pages = {5407},
96
+ publisher = {Springer Science and Business Media LLC},
97
+ title = {{RNA} secondary structure prediction using an ensemble of two-dimensional deep neural networks and transfer learning},
98
+ volume = 10,
99
+ year = 2019
100
+ }
101
+
102
+ @article{darty2009varna,
103
+ author = {Darty, K{\'e}vin and Denise, Alain and Ponty, Yann},
104
+ journal = {Bioinformatics},
105
+ month = aug,
106
+ number = 15,
107
+ pages = {1974--1975},
108
+ publisher = {Oxford University Press (OUP)},
109
+ title = {{VARNA}: Interactive drawing and editing of the {RNA} secondary structure},
110
+ volume = 25,
111
+ year = 2009
112
+ }
113
+
114
+ @article{berman2000protein,
115
+ author = {Berman, H M and Westbrook, J and Feng, Z and Gilliland, G and Bhat, T N and Weissig, H and Shindyalov, I N and Bourne, P E},
116
+ journal = {Nucleic Acids Research},
117
+ month = jan,
118
+ number = 1,
119
+ pages = {235--242},
120
+ publisher = {Oxford University Press (OUP)},
121
+ title = {The Protein Data Bank},
122
+ volume = 28,
123
+ year = 2000
124
+ }
125
+ ```
126
+
127
+ > [!NOTE]
128
+ > The artifacts distributed in this repository are part of the MultiMolecule project.
129
+ > If you use MultiMolecule in your research, you must cite the MultiMolecule project as follows:
130
+
131
+ ```bibtex
132
+ @software{chen_2024_12638419,
133
+ author = {Chen, Zhiyuan and Zhu, Sophia Y.},
134
+ title = {MultiMolecule},
135
+ doi = {10.5281/zenodo.12638419},
136
+ publisher = {Zenodo},
137
+ url = {https://doi.org/10.5281/zenodo.12638419},
138
+ year = 2024,
139
+ month = may,
140
+ day = 4
141
+ }
142
+ ```
test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfdc1b55b3a070932c3ca4d5db146a05ace9dc4e207ba7e51b2efb86d6535341
3
+ size 129813
train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0fda1d09f4ce685b7e2a5497f5fd06b6a54a5aeaf287f414c089bb1dc9b5b640
3
+ size 853817
validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00934c684a543e9a7209bd2df9bbf6caf487460e9f536c5f43bdd94fbcd2054d
3
+ size 126305