opsomerto's picture
Upload README.md with huggingface_hub
3b74658 verified
---
language:
- en
license: cc-by-4.0
tags:
- protein
- biology
- uniprot
- swiss-prot
---
# Mini Protein Dataset
A small subset of reviewed (Swiss-Prot) protein sequences from UniProt,
created for the `minihf` toy project demonstrating a full HuggingFace workflow.
## Fields
| Field | Type | Description |
|---|---|---|
| `id` | string | UniProt accession (e.g. `P12345`) |
| `description` | string | Protein name from FASTA header |
| `sequence` | string | Amino-acid sequence (single-letter codes) |
| `length` | int | Sequence length in amino acids |
## Usage
```python
from datasets import load_dataset
ds = load_dataset("opsomerto/mini-protein-dataset")
print(ds["train"][0]["sequence"])
```
## Source
UniProt Swiss-Prot (reviewed), fetched via the UniProt REST API.