Datasets:
Tasks:
Token Classification
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
10M - 100M
Tags:
RNA
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,33 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-4.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- token-classification
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- RNA
|
| 9 |
+
pretty_name: PlanRNAFM Preprocessed Transcriptome
|
| 10 |
+
size_categories:
|
| 11 |
+
- 1M<n<10M
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# PlantRNAFM preprocessed transcriptome
|
| 15 |
+
**This dataset was not prepared by the authors of the original paper, it is my attempt to reproduce their published preprocessing pipeline**
|
| 16 |
+
|
| 17 |
+
PlantRNAFM is a foundation model for plant RNA, published in Nature Machine Intelligence: https://www.nature.com/articles/s42256-024-00946-z
|
| 18 |
+
|
| 19 |
+
The dataset on which it was trained contains, in part, a set of processed transcriptomes where the 5', CDS and 3' regions are labelled. One of the tasks on which the foundation model was trained is to label these regions.
|
| 20 |
+
|
| 21 |
+
The original dataset comes from the [onekp project](https://www.nature.com/articles/s41586-019-1693-2), where the full transcriptome of over 1000 plants is available. This dataset is a preprocessed version of that data, packaged in parquet.
|
| 22 |
+
|
| 23 |
+
## The preprocessing
|
| 24 |
+
Transcriptomes and proteomes for >1400 plants were downloaded and we run the following pipeline:
|
| 25 |
+
|
| 26 |
+
1. Use tblastn to map the translated proteins onto the transcribed nucleotides
|
| 27 |
+
2. Filter for best hit with evalue 1e-10 and qcov_hsp_perc 70.0
|
| 28 |
+
3. Convert hits into parquet, along with a representation of the 5'/CDS/3' labelling
|
| 29 |
+
|
| 30 |
+
The preprocesing pipeline is available here: https://github.com/afg1/plantrnafm_preprocessing
|
| 31 |
+
|
| 32 |
+
## What do I do with it
|
| 33 |
+
This dataset _should_ be equivalent to the one used for the region labelling task in the PlantRNAFM pretraining task, so you could use it for tasks like that.
|