Add files using upload-large-folder tool
Browse files- .gitattributes +1 -0
- README.md +84 -0
- _MANIFEST.json +17 -0
- tables/labeled_fireprotdb_fireprotdb_search_all.jsonl.jsonl +3 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
tables/labeled_fireprotdb_fireprotdb_search_all.jsonl.jsonl filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
pretty_name: FireProtDB
|
| 4 |
+
size_categories:
|
| 5 |
+
- 1M<n<10M
|
| 6 |
+
task_categories:
|
| 7 |
+
- other
|
| 8 |
+
language:
|
| 9 |
+
- en
|
| 10 |
+
tags:
|
| 11 |
+
- biology
|
| 12 |
+
- proteins
|
| 13 |
+
- stability
|
| 14 |
+
- mutation
|
| 15 |
+
- fireprotdb
|
| 16 |
+
- jsonl
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# FireProtDB
|
| 20 |
+
|
| 21 |
+
FireProtDB protein stability mutation dataset, normalized to newline-delimited JSON with row-level provenance.
|
| 22 |
+
|
| 23 |
+
Processed and uploaded by the [MegaData](https://github.com/) post-download pipeline
|
| 24 |
+
(internal repo). Original source: <https://loschmidt.chemi.muni.cz/fireprotdb/>.
|
| 25 |
+
|
| 26 |
+
## Statistics
|
| 27 |
+
|
| 28 |
+
| | |
|
| 29 |
+
|---|---|
|
| 30 |
+
| Table files | 1 |
|
| 31 |
+
| Total rows | 5,465,660 |
|
| 32 |
+
| Total bytes | 8.48 GiB (9,105,270,725) |
|
| 33 |
+
|
| 34 |
+
## Tables
|
| 35 |
+
|
| 36 |
+
| Table | Rows | Bytes |
|
| 37 |
+
|---|---:|---:|
|
| 38 |
+
| `labeled_fireprotdb_fireprotdb_search_all.jsonl.jsonl` | 5,465,660 | 8.48 GiB |
|
| 39 |
+
|
| 40 |
+
## Layout
|
| 41 |
+
|
| 42 |
+
```
|
| 43 |
+
.
|
| 44 |
+
├── _MANIFEST.json # aggregate manifest (per-table counts)
|
| 45 |
+
└── tables/<source_slug>.jsonl # normalized rows (one JSON object per line)
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
+
Each line in a `tables/*.jsonl` file is a JSON object with at least
|
| 49 |
+
`dataset_id`, `row` (the raw upstream row), `row_index`, and `source_file`
|
| 50 |
+
fields, so every row carries its upstream provenance.
|
| 51 |
+
|
| 52 |
+
## Loading
|
| 53 |
+
|
| 54 |
+
```bash
|
| 55 |
+
hf download LiteFold/FireProtDB --repo-type dataset --local-dir ./fireprotdb
|
| 56 |
+
```
|
| 57 |
+
|
| 58 |
+
Programmatic streaming:
|
| 59 |
+
|
| 60 |
+
```python
|
| 61 |
+
import json
|
| 62 |
+
from pathlib import Path
|
| 63 |
+
from huggingface_hub import snapshot_download
|
| 64 |
+
|
| 65 |
+
local = snapshot_download(repo_id="LiteFold/FireProtDB", repo_type="dataset")
|
| 66 |
+
for jsonl in sorted(Path(local, "tables").glob("*.jsonl")):
|
| 67 |
+
with jsonl.open() as f:
|
| 68 |
+
for line in f:
|
| 69 |
+
row = json.loads(line)
|
| 70 |
+
... # row["row"] is the upstream record
|
| 71 |
+
```
|
| 72 |
+
|
| 73 |
+
## License
|
| 74 |
+
|
| 75 |
+
CC BY 4.0 (FireProtDB).
|
| 76 |
+
|
| 77 |
+
## Citation
|
| 78 |
+
|
| 79 |
+
> Stourac J, et al. FireProtDB: database of manually curated protein stability data. Nucleic Acids Research, 49(D1):D319-D324, 2021.
|
| 80 |
+
|
| 81 |
+
## Provenance
|
| 82 |
+
|
| 83 |
+
Built from the local manifest entry `fireprotdb` of `manifests/atlas_download_plan.json`.
|
| 84 |
+
Pipeline source: `megadata-post normalize --dataset fireprotdb --tables-only`.
|
_MANIFEST.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"category": "labeled",
|
| 3 |
+
"dataset_id": "fireprotdb",
|
| 4 |
+
"format": "jsonl table rows with provenance",
|
| 5 |
+
"tables": [
|
| 6 |
+
{
|
| 7 |
+
"bytes": 8466920603,
|
| 8 |
+
"category": "labeled",
|
| 9 |
+
"dataset_id": "fireprotdb",
|
| 10 |
+
"output_file": "data/processed/labeled/fireprotdb/tables/labeled_fireprotdb_fireprotdb_search_all.jsonl.jsonl",
|
| 11 |
+
"rows": 5465660,
|
| 12 |
+
"source_file": "labeled/fireprotdb/fireprotdb_search_all.jsonl",
|
| 13 |
+
"status": "ok"
|
| 14 |
+
}
|
| 15 |
+
],
|
| 16 |
+
"total_rows": 5465660
|
| 17 |
+
}
|
tables/labeled_fireprotdb_fireprotdb_search_all.jsonl.jsonl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:93e3a0cba25344711fd3cd90e48031edf91651fc8e1b009c5f171fce894dfedc
|
| 3 |
+
size 9105270725
|