mauryzio commited on
Commit
e55fb61
·
verified ·
1 Parent(s): 68707ef

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -13
README.md CHANGED
@@ -275,7 +275,7 @@ dataset_info:
275
  dataset_size: 334784354
276
  ---
277
 
278
- # Carbon Perturbation Bench
279
 
280
  A benchmark of **sequence-level perturbation tasks** for evaluating DNA foundation models.
281
  Each task presents pairs of genomic sequences — one real (unperturbed) and one structurally
@@ -304,16 +304,20 @@ optimised variant.
304
 
305
  ### `motif_human` — CAG repeat insertion (20,000 pairs)
306
 
307
- A 30 bp region starting 60 bp downstream of the CDS start is replaced with 10 consecutive
308
- CAG triplets (`CAGCAGCAGCAGCAGCAGCAGCAGCAGCAG`),
309
- mimicking the pathological trinucleotide repeat expansions underlying polyglutamine
310
- disorders (Huntington's disease, SCAs, DRPLA). The substitution is length-preserving
311
- (30 bp in, 30 bp out), so the total window remains 8,192 bp. All sequence outside the
312
- patch is identical between original and perturbed.
313
-
314
- - Annotations: GENCODE v45 / GRCh38; 9,705 unique genes.
315
- - Window layout: 8,102 bp upstream flank, CDS start at position 8,102, patch at positions 8,162–8,192.
316
 
 
 
 
 
 
 
317
  ---
318
 
319
  ## Schema
@@ -341,17 +345,17 @@ from datasets import load_dataset
341
 
342
  # Synonymous codon substitution — human
343
  syn_human = load_dataset(
344
- "HuggingFaceBio/carbon-perturbation-bench", "syn_human", split="test"
345
  )
346
 
347
  # Synonymous codon substitution — mouse
348
  syn_mouse = load_dataset(
349
- "HuggingFaceBio/carbon-perturbation-bench", "syn_mouse", split="test"
350
  )
351
 
352
  # CAG motif insertion
353
  motif = load_dataset(
354
- "HuggingFaceBio/carbon-perturbation-bench", "motif_human", split="test"
355
  )
356
  ```
357
 
 
275
  dataset_size: 334784354
276
  ---
277
 
278
+ # Perturbation Bench
279
 
280
  A benchmark of **sequence-level perturbation tasks** for evaluating DNA foundation models.
281
  Each task presents pairs of genomic sequences — one real (unperturbed) and one structurally
 
304
 
305
  ### `motif_human` — CAG repeat insertion (20,000 pairs)
306
 
307
+ A 30 bp codon-aligned region beginning 60 bp downstream of the first complete codon of the
308
+ CDS exon is replaced with 10 consecutive CAG triplets
309
+ (`CAGCAGCAGCAGCAGCAGCAGCAGCAGCAG`), mimicking the pathological trinucleotide repeat
310
+ expansions underlying polyglutamine disorders (Huntington's disease, SCAs, DRPLA).
311
+ The substitution is length- and reading-frame-preserving (30 bp in, 30 bp out), so the
312
+ total window remains 8,192 bp. All sequence outside the patch is identical between
313
+ original and perturbed.
 
 
314
 
315
+ - Annotations: GENCODE v45 / GRCh38; all CDS exons (all ranks); 9,705 unique genes.
316
+ - Window layout: first complete CDS codon always at position 8,102;
317
+ patch always at positions 8,162–8,192 (`patch_start_in_seq`–`patch_end_in_seq`).
318
+ For exons with phase 1 or 2, the 1–2 split-codon bases from the preceding exon are
319
+ placed immediately before position 8,102, so the upstream genomic context is
320
+ 8,102 bp (phase 0), 8,101 bp (phase 1), or 8,100 bp (phase 2).
321
  ---
322
 
323
  ## Schema
 
345
 
346
  # Synonymous codon substitution — human
347
  syn_human = load_dataset(
348
+ "HuggingFaceBio/perturbation-bench", "syn_human", split="test"
349
  )
350
 
351
  # Synonymous codon substitution — mouse
352
  syn_mouse = load_dataset(
353
+ "HuggingFaceBio/perturbation-bench", "syn_mouse", split="test"
354
  )
355
 
356
  # CAG motif insertion
357
  motif = load_dataset(
358
+ "HuggingFaceBio/perturbation-bench", "motif_human", split="test"
359
  )
360
  ```
361