suzuki-2001
commited on
Update rnacentral-non-coding-rna.py
Browse files- rnacentral-non-coding-rna.py +17 -0
rnacentral-non-coding-rna.py
CHANGED
@@ -9,6 +9,23 @@ import tqdm
|
|
9 |
from collections import defaultdict
|
10 |
import tempfile
|
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
class RNACentralDownloader:
|
13 |
"""Helper class to manage RNAcentral downloads"""
|
14 |
BASE_URL = "https://ftp.ebi.ac.uk/pub/databases/RNAcentral/current_release"
|
|
|
9 |
from collections import defaultdict
|
10 |
import tempfile
|
11 |
|
12 |
+
_CITATION = """\
|
13 |
+
@article{the2019rnacentral,
|
14 |
+
title={RNAcentral: a hub of information for non-coding RNA sequences},
|
15 |
+
author={The RNAcentral Consortium},
|
16 |
+
journal={Nucleic acids research},
|
17 |
+
volume={47},
|
18 |
+
number={D1},
|
19 |
+
pages={D221--D229},
|
20 |
+
year={2019},
|
21 |
+
publisher={Oxford University Press}
|
22 |
+
}
|
23 |
+
"""
|
24 |
+
|
25 |
+
_DESCRIPTION = """\
|
26 |
+
RNAcentral corpus for pre-training, containing sequences and basic metadata.
|
27 |
+
"""
|
28 |
+
|
29 |
class RNACentralDownloader:
|
30 |
"""Helper class to manage RNAcentral downloads"""
|
31 |
BASE_URL = "https://ftp.ebi.ac.uk/pub/databases/RNAcentral/current_release"
|