ZhiyuanChen
commited on
Commit
•
4e3d7ac
1
Parent(s):
da880c3
Upload folder using huggingface_hub
Browse files- README.md +108 -0
- test.parquet +3 -0
README.md
ADDED
@@ -0,0 +1,108 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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: ArchiveII
|
20 |
+
library_name: multimolecule
|
21 |
+
---
|
22 |
+
|
23 |
+
# ArchiveII
|
24 |
+
|
25 |
+
ArchiveII is a dataset of RNA sequences and their secondary structures, widely used in RNA secondary structure prediction benchmarks.
|
26 |
+
|
27 |
+
ArchiveII contains 2975 RNA samples across 10 RNA families, with sequence lengths ranging from 28 to 2968 nucleotides.
|
28 |
+
This dataset is frequently used to evaluate RNA secondary structure prediction methods, including those that handle both pseudoknotted and non-pseudoknotted structures.
|
29 |
+
|
30 |
+
It is considered complementary to the [RNAStrAlign](./rnastralign) dataset.
|
31 |
+
|
32 |
+
## Disclaimer
|
33 |
+
|
34 |
+
This is an UNOFFICIAL release of the ArchiveII by Mehdi Saman Booy, et al.
|
35 |
+
|
36 |
+
**The team releasing ArchiveII did not write this dataset card for this dataset so this dataset card has been written by the MultiMolecule team.**
|
37 |
+
|
38 |
+
## Dataset Description
|
39 |
+
|
40 |
+
- **Homepage**: https://multimolecule.danling.org/datasets/archiveii
|
41 |
+
- **datasets**: https://huggingface.co/datasets/multimolecule/archiveii
|
42 |
+
- **Point of Contact**: [Mehdi Saman Booy](mailto:mehdi.samanbooy@aalto.fi)
|
43 |
+
|
44 |
+
## Example Entry
|
45 |
+
|
46 |
+
| id | sequence | secondary_structure | family |
|
47 |
+
| ------------------- | ----------------------------------- | ------------------------------------ | ---------- |
|
48 |
+
| 16S_rRNA-A.fulgidus | AUUCUGGUUGAUCCUGCCAGAGGCCGCUGCUA... | ...(((((...(((.))))).((((((((((.... | 16S_rRNA |
|
49 |
+
|
50 |
+
## Column Description
|
51 |
+
|
52 |
+
- **id**:
|
53 |
+
A unique identifier for each RNA entry. This ID is derived from the family and the original `.sta` file name, and serves as a reference to the specific RNA structure within the dataset.
|
54 |
+
|
55 |
+
- **sequence**:
|
56 |
+
The nucleotide sequence of the RNA molecule, represented using the standard RNA bases:
|
57 |
+
|
58 |
+
- **A**: Adenine
|
59 |
+
- **C**: Cytosine
|
60 |
+
- **G**: Guanine
|
61 |
+
- **U**: Uracil
|
62 |
+
|
63 |
+
- **secondary_structure**:
|
64 |
+
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:
|
65 |
+
|
66 |
+
- **Dots (`.`)**: Represent unpaired nucleotides.
|
67 |
+
- **Parentheses (`(` and `)`)**: Represent base pairs in standard stems (page 1).
|
68 |
+
|
69 |
+
- **family**:
|
70 |
+
The RNA family to which the sequence belongs, such as 16S rRNA, 5S rRNA, etc.
|
71 |
+
|
72 |
+
## Variations
|
73 |
+
|
74 |
+
This dataset is available in two additional variants:
|
75 |
+
|
76 |
+
- [archiveii](https://huggingface.co/datasets/multimolecule/archiveii): The main ArchiveII dataset.
|
77 |
+
- [archiveii.512](https://huggingface.co/datasets/multimolecule/archiveii.512): ArchiveII dataset with sequences no longer than 512 nucleotides.
|
78 |
+
- [archiveii.1024](https://huggingface.co/datasets/multimolecule/archiveii.1024): ArchiveII dataset with sequences no longer than 1024 nucleotides.
|
79 |
+
|
80 |
+
## Related Datasets
|
81 |
+
|
82 |
+
- [RNAStrAlign](https://huggingface.co/datasets/multimolecule/rnastralign): A database of RNA secondary with the same families as ArchiveII, usually used for training.
|
83 |
+
- [bpRNA-spot](https://huggingface.co/datasets/multimolecule/bprna-spot): Another commonly used database in RNA secondary structures prediction.
|
84 |
+
|
85 |
+
## License
|
86 |
+
|
87 |
+
This dataset is licensed under the [AGPL-3.0 License](https://www.gnu.org/licenses/agpl-3.0.html).
|
88 |
+
|
89 |
+
```spdx
|
90 |
+
SPDX-License-Identifier: AGPL-3.0-or-later
|
91 |
+
```
|
92 |
+
|
93 |
+
## Citation
|
94 |
+
|
95 |
+
```bibtex
|
96 |
+
@article{samanbooy2022rna,
|
97 |
+
author = {Saman Booy, Mehdi and Ilin, Alexander and Orponen, Pekka},
|
98 |
+
journal = {BMC Bioinformatics},
|
99 |
+
keywords = {Deep learning; Pseudoknotted structures; RNA structure prediction},
|
100 |
+
month = feb,
|
101 |
+
number = 1,
|
102 |
+
pages = {58},
|
103 |
+
publisher = {Springer Science and Business Media LLC},
|
104 |
+
title = {{RNA} secondary structure prediction with convolutional neural networks},
|
105 |
+
volume = 23,
|
106 |
+
year = 2022
|
107 |
+
}
|
108 |
+
```
|
test.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:831259a0989194c6e983426ab576309443d8b960b467a3426284351ce6bf0668
|
3 |
+
size 282796
|