zzq1zh commited on
Commit
ad20733
·
verified ·
1 Parent(s): f4bf4de

Upload updated eccDNA dataset

Browse files
README.md CHANGED
@@ -1,3 +1,73 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - biology
5
+ - genomics
6
+ - dna
7
+ - eccdna
8
+ size_categories:
9
+ - 10K<n<1M
10
+ task_categories:
11
+ - token-classification
12
+ ---
13
+
14
+ # Real vs. Pseudo-eccDNA Discrimination (Gallus gallus)
15
+
16
+ This dataset supports the **Real vs. Pseudo-eccDNA Discrimination** task for gallus gallus eccDNA.
17
+ The goal is to train models that can distinguish true eccDNA sequences from pseudo-eccDNAs
18
+ randomly extracted from linear genomic regions with matched length distributions.
19
+
20
+ Each entry contains:
21
+ - `sequence`: raw eccDNA sequence (A/T/C/G)
22
+ - `label`:
23
+ - `1` → Real eccDNA
24
+ - `0` → Pseudo-eccDNA (negative control)
25
+
26
+ ---
27
+
28
+ ## 📁 Folder Structure
29
+ <pre>
30
+ real_vs_pseudo_eccdna_discrimination_gallus_gallus/
31
+ ├── data/
32
+ │ └── real_vs_pseudo_eccdna_discrimination_gallus_gallus.csv
33
+ └── README.md
34
+ </pre>
35
+
36
+ ---
37
+
38
+ ## 🚀 Quick Usage
39
+ <pre><code class="language-python">
40
+ from datasets import load_dataset, load_from_disk
41
+
42
+ # Load from Hugging Face Hub (after upload)
43
+ dataset = load_dataset("your-username/real_vs_pseudo_eccdna_discrimination_gallus_gallus")
44
+
45
+ # Example: view label distribution
46
+ df = dataset["train"].to_pandas()
47
+ print(df['label'].value_counts())
48
+ </code></pre>
49
+
50
+ ---
51
+
52
+ ## Task Description
53
+
54
+ True eccDNAs are experimentally verified circular DNA molecules,
55
+ whereas pseudo-eccDNAs are generated by randomly extracting linear genomic segments
56
+ to match the true eccDNA length distribution.
57
+ This task assesses a model’s ability to capture **circular topology** and **regulatory context**
58
+ beyond simple sequence composition.
59
+
60
+ ---
61
+
62
+ ## Citation
63
+ If you use this dataset, please cite:
64
+ <pre><code class="language-python">
65
+
66
+ @inproceedings{liu2025eccdnamamba,
67
+ title={eccDNAMamba: A Pre-Trained Model for Ultra-Long eccDNA Sequence Analysis},
68
+ author={Zhenke Liu and Jien Li and Ziqi Zhang},
69
+ booktitle={ICML 2025 GenBio Workshop},
70
+ year={2025},
71
+ url={https://openreview.net/forum?id=56xKN7KJjy}
72
+ }
73
+ </code></pre>
data/real_vs_pseudo_eccdna_gallus_gallus.csv ADDED
The diff for this file is too large to render. See raw diff