ZhiyuanChen
commited on
Commit
•
e06d9ac
1
Parent(s):
3ccbe9c
Upload folder using huggingface_hub
Browse files- README.md +109 -0
- test.parquet +3 -0
- train.parquet +3 -0
README.md
ADDED
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language: rna
|
3 |
+
tags:
|
4 |
+
- Biology
|
5 |
+
- RNA
|
6 |
+
license:
|
7 |
+
- agpl-3.0
|
8 |
+
size_categories:
|
9 |
+
- 100K<n<1M
|
10 |
+
source_datasets:
|
11 |
+
- multimolecule/crw
|
12 |
+
- multimolecule/tmrna_website
|
13 |
+
- multimolecule/srpdb
|
14 |
+
- multimolecule/spr
|
15 |
+
- multimolecule/rnp
|
16 |
+
- multimolecule/rfam
|
17 |
+
- multimolecule/pdb
|
18 |
+
task_categories:
|
19 |
+
- text-generation
|
20 |
+
- fill-mask
|
21 |
+
task_ids:
|
22 |
+
- language-modeling
|
23 |
+
- masked-language-modeling
|
24 |
+
pretty_name: RIVAS
|
25 |
+
library_name: multimolecule
|
26 |
+
---
|
27 |
+
|
28 |
+
# RIVAS
|
29 |
+
|
30 |
+
The RIVAS dataset is a curated collection of RNA sequences and their secondary structures, designed for training and evaluating RNA secondary structure prediction methods.
|
31 |
+
The dataset combines sequences from published studies and databases like Rfam, covering diverse RNA families such as tRNA, SRP RNA, and ribozymes.
|
32 |
+
The secondary structure data is obtained from experimentally verified structures and consensus structures from Rfam alignments, ensuring high-quality annotations for model training and evaluation.
|
33 |
+
|
34 |
+
## Disclaimer
|
35 |
+
|
36 |
+
This is an UNOFFICIAL release of the RIVAS dataset by Elena Rivas, et al.
|
37 |
+
|
38 |
+
**The team releasing RIVAS did not write this dataset card for this dataset so this dataset card has been written by the MultiMolecule team.**
|
39 |
+
|
40 |
+
## Dataset Description
|
41 |
+
|
42 |
+
- **Homepage**: https://multimolecule.danling.org/datasets/rivas
|
43 |
+
- **datasets**: https://huggingface.co/datasets/multimolecule/rivas
|
44 |
+
- **Point of Contact**: [Elena Rivas]([email protected])
|
45 |
+
|
46 |
+
## Example Entry
|
47 |
+
|
48 |
+
| id | sequence | secondary_structure |
|
49 |
+
| ----------------------- | ----------------------------------- | ----------------------------------- |
|
50 |
+
| AACY020454584.1_604-676 | ACUGGUUGCGGCCAGUAUAAAUAGUCUUUAAG... | ((((........)))).........((........ |
|
51 |
+
|
52 |
+
## Column Description
|
53 |
+
|
54 |
+
The converted dataset consists of the following columns, each providing specific information about the RNA secondary structures, consistent with the bpRNA standard:
|
55 |
+
|
56 |
+
- **id**:
|
57 |
+
A unique identifier for each RNA entry. This ID is derived from the original `.sta` file name and serves as a reference to the specific RNA structure within the dataset.
|
58 |
+
|
59 |
+
- **sequence**:
|
60 |
+
The nucleotide sequence of the RNA molecule, represented using the standard RNA bases:
|
61 |
+
|
62 |
+
- **A**: Adenine
|
63 |
+
- **C**: Cytosine
|
64 |
+
- **G**: Guanine
|
65 |
+
- **U**: Uracil
|
66 |
+
|
67 |
+
- **secondary_structure**:
|
68 |
+
The secondary structure of the RNA represented in dot-bracket notation, using up to three types of symbols to indicate base pairing and unpaired regions, as per bpRNA's standard:
|
69 |
+
|
70 |
+
- **Dots (`.`)**: Represent unpaired nucleotides.
|
71 |
+
- **Parentheses (`(` and `)`)**: Represent base pairs in standard stems (page 1).
|
72 |
+
- **Square Brackets (`[` and `]`)**: Represent base pairs in pseudoknots (page 2).
|
73 |
+
- **Curly Braces (`{` and `}`)**: Represent base pairs in additional pseudoknots (page 3).
|
74 |
+
|
75 |
+
## Subsets
|
76 |
+
|
77 |
+
This dataset is available in two subsets:
|
78 |
+
|
79 |
+
- [RIVAS-A](https://huggingface.co/datasets/multimolecule/rivas-a): Includes TrainSetA (3166 sequences) and TestSetA (697 sequences), emphasizing sequence diversity while minimizing overlap between training and test sets. Suitable for evaluating RNA secondary structure prediction models on diverse RNA families.
|
80 |
+
- [RIVAS-B](https://huggingface.co/datasets/multimolecule/rivas-b): Consists of TrainSetB (1094 sequences) and TestSetB (430 sequences) derived from Rfam alignments, offering additional structural diversity and RNA types not present in RIVAS-A. Designed for testing the generalization capability of models trained on different types of RNA structures.
|
81 |
+
|
82 |
+
## Related Datasets
|
83 |
+
|
84 |
+
- [bpRNA-spot](https://huggingface.co/datasets/multimolecule/bprna-spot): A subset of RIVAS that applies [CD-HIT (CD-HIT-EST)](https://sites.google.com/view/cd-hit) to remove sequences with more than 80% sequence similarity from RIVAS.
|
85 |
+
- [RNAStrAlign](https://huggingface.co/datasets/multimolecule/rnastralign): A database of RNA secondary with the same families as ArchiveII, usually used for training.
|
86 |
+
|
87 |
+
## License
|
88 |
+
|
89 |
+
This dataset is licensed under the [AGPL-3.0 License](https://www.gnu.org/licenses/agpl-3.0.html).
|
90 |
+
|
91 |
+
```spdx
|
92 |
+
SPDX-License-Identifier: AGPL-3.0-or-later
|
93 |
+
```
|
94 |
+
|
95 |
+
## Citation
|
96 |
+
|
97 |
+
```bibtex
|
98 |
+
@article{rivas2012a,
|
99 |
+
author = {Rivas, Elena and Lang, Raymond and Eddy, Sean R},
|
100 |
+
journal = {RNA},
|
101 |
+
month = feb,
|
102 |
+
number = 2,
|
103 |
+
pages = {193--212},
|
104 |
+
publisher = {Cold Spring Harbor Laboratory},
|
105 |
+
title = {A range of complex probabilistic models for {RNA} secondary structure prediction that includes the nearest-neighbor model and more},
|
106 |
+
volume = 18,
|
107 |
+
year = 2012
|
108 |
+
}
|
109 |
+
```
|
test.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9f7dd242b66f5f347985a9035a7ed53ddfb15396f39686accc5ae9b8bc508a09
|
3 |
+
size 25066
|
train.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c0d687b2673c5e2230db027cb2e733d38406d0610ea4cbb3a37fcb3a663493fa
|
3 |
+
size 34823
|