lingzhi227 commited on
Commit
8f1e292
·
verified ·
1 Parent(s): f57ef3b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Extended-BioAgentBench
2
+
3
+ Extension of [BioAgentBench](https://github.com/bioagent-bench/bioagent-bench) with 3 additional bioinformatics benchmark tasks covering new domains: epigenomics (ChIP-seq), bacterial genome assembly, and mobile genetic element characterization.
4
+
5
+ ## Tasks
6
+
7
+ | # | Task ID | Domain | CLI Tools | DAG Depth | Difficulty |
8
+ |---|---------|--------|-----------|-----------|------------|
9
+ | 11 | chipseq-peak-calling | Epigenomics | trimmomatic, bwa, samtools, macs2, bedtools, deeptools | 2 | medium |
10
+ | 12 | bacterial-assembly | Genome assembly + annotation | fastp, shovill, quast, busco, prokka, mlst, abricate | 2 | medium |
11
+ | 13 | mobile-elements | Mobile genetic elements | fastp, shovill, prokka, isescan, integron_finder, amrfinder, abricate, mob_recon, plasmidfinder, quast, busco | 5 | hard |
12
+
13
+ ## Usage
14
+
15
+ ```bash
16
+ # Install dependencies
17
+ pip install requests click
18
+
19
+ # List tasks
20
+ python src/dataset.py list-tasks
21
+
22
+ # Download a specific task
23
+ python src/dataset.py download --task chipseq-peak-calling --reference --results
24
+
25
+ # Download all tasks
26
+ python src/dataset.py download --all --reference --results
27
+ ```
28
+
29
+ ## Task Format
30
+
31
+ Each task follows the BioAgentBench format:
32
+
33
+ ```
34
+ tasks/{task-id}/
35
+ run_script.sh # Reference pipeline (ground truth generator)
36
+ environment.yml # Conda environment specification
37
+ data/ # Input data (FASTQ, BED, etc.)
38
+ reference/ # Reference genomes (if needed)
39
+ results/ # Ground truth output
40
+ ```
41
+
42
+ ## Evaluation
43
+
44
+ Tasks are evaluated using GPT-5.1 as an LLM-as-Judge, scoring:
45
+ - `steps_completed` / `steps_to_completion`
46
+ - `completion_rate` (0-1)
47
+ - `results_match` (full_match / partial_match / no_match)
48
+
49
+ ## Citation
50
+
51
+ Based on BioAgentBench: https://arxiv.org/abs/2601.21800