ZhiyuanChen commited on
Commit
d2ae2e1
·
verified ·
1 Parent(s): d0a8c85

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. README.md +137 -0
  2. test.parquet +3 -0
  3. train.parquet +3 -0
  4. validation.parquet +3 -0
README.md ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: rna
3
+ tags:
4
+ - Biology
5
+ - RNA
6
+ license:
7
+ - agpl-3.0
8
+ size_categories:
9
+ - 1K<n<10K
10
+ task_categories:
11
+ - text-generation
12
+ - fill-mask
13
+ task_ids:
14
+ - language-modeling
15
+ - masked-language-modeling
16
+ pretty_name: RYOS
17
+ library_name: multimolecule
18
+ ---
19
+
20
+ # RYOS
21
+
22
+ ![RYOS](https://eternagame.org/sites/default/files/hero-covid.jpg)
23
+
24
+ RYOS is a database of RNA backbone stability in aqueous solution.
25
+
26
+ RYOS focuses on exploring the stability of mRNA molecules for vaccine applications.
27
+ This dataset is part of a broader effort to address one of the key challenges of mRNA vaccines: degradation during shipping and storage.
28
+
29
+ ## Statement
30
+
31
+ _Deep learning models for predicting RNA degradation via dual crowdsourcing_ is published in [Nature Machine Intelligence](https://doi.org/10.1038/s42256-022-00571-8), which is a Closed Access / Author-Fee journal.
32
+
33
+ > Machine learning has been at the forefront of the movement for free and open access to research.
34
+ >
35
+ > We see no role for closed access or author-fee publication in the future of machine learning research and believe the adoption of these journals as an outlet of record for the machine learning community would be a retrograde step.
36
+
37
+ The MultiMolecule team is committed to the principles of open access and open science.
38
+
39
+ We do NOT endorse the publication of manuscripts in Closed Access / Author-Fee journals and encourage the community to support Open Access journals and conferences.
40
+
41
+ Please consider signing the [Statement on Nature Machine Intelligence](https://openaccess.engineering.oregonstate.edu).
42
+
43
+ ## Disclaimer
44
+
45
+ This is an UNOFFICIAL release of the [RYOS](https://www.kaggle.com/competitions/stanford-covid-vaccine) by Hannah K. Wayment-Steele, et al.
46
+
47
+ **The team releasing RYOS did not write this dataset card for this dataset so this dataset card has been written by the MultiMolecule team.**
48
+
49
+ ## Dataset Description
50
+
51
+ - **Homepage**: https://multimolecule.danling.org/datasets/ryos
52
+ - **Point of Contact**: [Rhiju Das](https://biochemistry.stanford.edu/people/rhiju-das)
53
+ - **Kaggle Challenge**: https://www.kaggle.com/competitions/stanford-covid-vaccine
54
+ - **Eterna Round 1**: https://eternagame.org/labs/9830365
55
+ - **Eterna Round 2**: https://eternagame.org/labs/10207059
56
+
57
+ ## Example Entry
58
+
59
+ | id | design | sequence | secondary_structure | reactivity | errors_reactivity | signal_to_noise_reactivity | deg_pH10 | errors_deg_pH10 | signal_to_noise_deg_pH10 | deg_50C | errors_deg_50C | signal_to_noise_deg_50C | deg_Mg_pH10 | errors_deg_Mg_pH10 | signal_to_noise_deg_Mg_pH10 | deg_Mg_50C | errors_deg_Mg_50C | signal_to_noise_deg_Mg_50C | SN_filter |
60
+ | ------- | ------- | ------------- | ------------------- | ----------------------------- | ---------------------------- | -------------------------- | ----------------------------- | ---------------------------- | ------------------------ | --------------------------- | -------------- | ---------------------------------- | ----------------------------- | ---------------------------- | --------------------------- | --------------------------- | ---------------------------- | -------------------------- | --------- |
61
+ | 9830366 | testing | GGAAAUUUGC... | .......(((... | [0.4167, 1.5941, 1.2359, ...] | [0.1689, 0.2323, 0.193, ...] | 5.326 | [1.5966, 2.6482, 1.3761, ...] | [0.3058, 0.3294, 0.233, ...] | 4.198 | [0.7885, 1.93, 2.0423, ...] | | 3.746 [0.2773, 0.328, 0.3048, ...] | [1.5966, 2.6482, 1.3761, ...] | [0.3058, 0.3294, 0.233, ...] | 4.198 | [0.7885, 1.93, 2.0423, ...] | [0.2773, 0.328, 0.3048, ...] | 3.746 | True |
62
+
63
+ ## Column Description
64
+
65
+ - **id**:
66
+ A unique identifier for each RNA sequence entry.
67
+
68
+ - **design**:
69
+ The name given to each RNA design by contributors, used for easy reference.
70
+
71
+ - **sequence**:
72
+ The nucleotide sequence of the RNA molecule, represented using the standard RNA bases:
73
+
74
+ - **A**: Adenine
75
+ - **C**: Cytosine
76
+ - **G**: Guanine
77
+ - **U**: Uracil
78
+
79
+ - **secondary_structure**:
80
+ 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:
81
+
82
+ - **Dots (`.`)**: Represent unpaired nucleotides.
83
+ - **Parentheses (`(` and `)`)**: Represent base pairs in standard stems (page 1).
84
+ - **Square Brackets (`[` and `]`)**: Represent base pairs in pseudoknots (page 2).
85
+ - **Curly Braces (`{` and `}`)**: Represent base pairs in additional pseudoknots (page 3).
86
+
87
+ - **reactivity**:
88
+ A list of floating-point values that provide an estimate of the likelihood of the RNA backbone being cut at each nucleotide position.
89
+ These values help determine the stability of the RNA structure under various experimental conditions.
90
+
91
+ - **deg_pH10** and **deg_Mg_pH10**:
92
+ Arrays of degradation rates observed under two conditions: incubation at pH 10 without and with magnesium, respectively.
93
+ These values provide insight into how different conditions affect the stability of RNA molecules.
94
+
95
+ - **deg_50C** and **deg_Mg_50C**:
96
+ Arrays of degradation rates after incubation at 50°C, without and with magnesium.
97
+ These values capture how RNA sequences respond to elevated temperatures, which is relevant for storage and transportation conditions.
98
+
99
+ - **\*\_error\_\* Columns**:
100
+ Arrays of floating-point numbers indicating the experimental errors corresponding to the measurements in the **reactivity** and **deg\_** columns.
101
+ These values help quantify the uncertainty in the degradation rates and reactivity measurements.
102
+
103
+ - **SN_filter**:
104
+ A filter applied to the dataset based on the signal-to-noise ratio, indicating whether a specific sequence meets the dataset’s quality criteria.
105
+
106
+ If the SN_filter is `True`, the sequence meets the quality criteria; otherwise, it does not.
107
+
108
+ Note that due to technical limitations, the ground truth measurements are not available for the final bases of each RNA sequence.
109
+ To facilitate processing, all measurement arrays (reactivity, deg_pH10, deg_50C, deg_Mg_pH10, deg_Mg_50C and their corresponding error fields) are padded with `None` values to match the full sequence length.
110
+ When working with this data, please be aware that the trailing elements of these arrays are padding values and do not represent actual measurements.
111
+
112
+ ## Variations
113
+
114
+ This dataset is available in two subsets:
115
+
116
+ - [RYOS-1](https://huggingface.co/datasets/multimolecule/ryos-1): The RYOS dataset from round 1 of the Eterna RYOS lab. The sequence length for RYOS-1 is 107, and the label length is 68.
117
+ - [RYOS-2](https://huggingface.co/datasets/multimolecule/ryos-2): The RYOS dataset from round 2 of the Eterna RYOS lab. The sequence length for RYOS-2 is 130, and the label length is 102.
118
+
119
+ ## License
120
+
121
+ This dataset is licensed under the [AGPL-3.0 License](https://www.gnu.org/licenses/agpl-3.0.html).
122
+
123
+ ```spdx
124
+ SPDX-License-Identifier: AGPL-3.0-or-later
125
+ ```
126
+
127
+ ## Citation
128
+
129
+ ```bibtex
130
+ @article{waymentsteele2021deep,
131
+ author = {Wayment-Steele, Hannah K and Kladwang, Wipapat and Watkins, Andrew M and Kim, Do Soon and Tunguz, Bojan and Reade, Walter and Demkin, Maggie and Romano, Jonathan and Wellington-Oguri, Roger and Nicol, John J and Gao, Jiayang and Onodera, Kazuki and Fujikawa, Kazuki and Mao, Hanfei and Vandewiele, Gilles and Tinti, Michele and Steenwinckel, Bram and Ito, Takuya and Noumi, Taiga and He, Shujun and Ishi, Keiichiro and Lee, Youhan and {\"O}zt{\"u}rk, Fatih and Chiu, Anthony and {\"O}zt{\"u}rk, Emin and Amer, Karim and Fares, Mohamed and Participants, Eterna and Das, Rhiju},
132
+ journal = {ArXiv},
133
+ month = oct,
134
+ title = {Deep learning models for predicting {RNA} degradation via dual crowdsourcing},
135
+ year = 2021
136
+ }
137
+ ```
test.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea746bccc918a87ccec8e9914a98a7b68216a39207e51c93554d61c2b772d4fe
3
+ size 1077799
train.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a63a43b0c115c98e9b4f7d6b020eeaf058d8b4a3a187f057043de96c9918e7cf
3
+ size 2991732
validation.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c346555aa6ac8a179f9c9e0f982e5e0a1157087367741950f740805d4a54809
3
+ size 752138