File size: 2,410 Bytes
ec4dff9 5db1cee ec4dff9 5db1cee ec4dff9 5db1cee ec4dff9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | ---
license: mit
task_categories:
- other
tags:
- biology
- genomics
- synteny
- plants
pretty_name: Plant Microsynteny Data
size_categories:
- 1B<n<10B
---
# Plant Microsynteny Dataset (plant-msyn-data)
Pre-computed MCscan protein-based synteny analysis results for 30+ plant genomes.
## Dataset Structure
```
plant-msyn-data/
├── mcscan_results/
│ ├── bed_files/ # Gene position files (*.bed) + database_genomes.txt whitelist
│ ├── i1_blocks/ # Synteny block files (*.i1.blocks)
│ ├── lifted_anchors/ # Syntenic anchor pair files (*.lifted.anchors)
│ ├── last_filtered_by_i1/ # I1-filtered LAST alignments
│ ├── pep_files/ # Protein FASTA files (*.pep)
│ ├── custom_meta/ # Custom genome metadata (user uploads)
│ └── custom_synteny_meta/ # Custom synteny project metadata
├── sql/
│ ├── search_catalogs/ # Per-genome SQLite catalogs for fast gene lookups
│ └── plantmsyn_metadata.db # Central metadata database
└── annotations/
└── [species_name]/
└── gene_annotation.tsv # Gene functional descriptions
```
## Supported Genomes
The dataset includes synteny data for 30+ plant genomes including:
- Barley (*Hordeum vulgare*)
- Wheat (*Triticum aestivum*)
- Rice (*Oryza sativa*)
- Maize (*Zea mays*)
- Arabidopsis (*Arabidopsis thaliana*)
- And 25+ more species
## Usage
This dataset is designed to be used with the [Plant-mSyn web application](https://huggingface.co/spaces/yoshigold/plant-msyn).
To use programmatically:
```python
from huggingface_hub import snapshot_download
# Download the full dataset
local_path = snapshot_download(
repo_id="yoshigold/plant-msyn-data",
repo_type="dataset"
)
```
## File Formats
### BED Files (`*.bed`)
Tab-separated files with gene positions:
- Column 1: Chromosome
- Column 2: Start position
- Column 3: End position
- Column 4: Gene ID
- Column 5: Score
- Column 6: Strand
### Blocks Files (`*.i1.blocks`)
Tab-separated synteny block definitions linking genes between species.
### Annotation Files (`gene_annotation.tsv`)
Tab-separated files with:
- Column 1: gene (Gene ID)
- Column 2: description (Functional annotation)
## Citation
If you use this dataset, please cite:
- MCscan/JCVI: Tang et al. (2008) Synteny and Collinearity in Plant Genomes
|