chjp0632 commited on
Commit
40d4b98
·
verified ·
1 Parent(s): 47a806e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +142 -0
README.md ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: Agent Eval Effector Hunt
3
+ tags:
4
+ - biology
5
+ - genomics
6
+ - ai-agents
7
+ - agent-evaluation
8
+ - scientific-discovery
9
+ task_categories:
10
+ - question-answering
11
+ - text-generation
12
+ language:
13
+ - en
14
+ ---
15
+
16
+ # Agent Eval: Effector Hunt
17
+
18
+ While AI scientist agents like Claude Science and Google's AI co-scientist highlight the potential of autonomous research, compact and reproducible datasets for evaluating these agents on real scientific workflows remain scarce.
19
+
20
+ **Agent Eval: Effector Hunt** is a genomics benchmark package designed around a real scientific discovery workflow from the *Science* paper [Chen et al. 2017](https://doi.org/10.1126/science.aao4810). It asks an AI agent, a computational biologist, or a hybrid human-agent workflow
21
+ to analyze anonymized paired-end sequencing reads against an anonymized fungal
22
+ reference genome and recover a biologically meaningful effector signal.
23
+
24
+ ## Task
25
+
26
+ Given two anonymized paired-end readsets and an anonymized reference genome with
27
+ annotations, identify the key effector-region difference between the samples.
28
+
29
+ An agent should be able to:
30
+
31
+ 1. Inspect the provided reference genome and annotation files.
32
+ 2. Align or otherwise compare the anonymized reads to the reference.
33
+ 3. Detect the major sample-specific genomic signal.
34
+ 4. Prioritize candidate effector genes or regions.
35
+ 5. Produce a concise evidence-backed report explaining the finding.
36
+
37
+ The dataset card includes an evaluator-facing rubric below so that users can
38
+ score agent outputs without requesting a separate answer by email. For blind
39
+ agent evaluation, do not include the dataset card or rubric in the agent prompt.
40
+
41
+ ## Dataset Contents
42
+
43
+ ```text
44
+ data/raw/fastq_anonymized/
45
+ sample_1_R1.fastq.gz
46
+ sample_1_R2.fastq.gz
47
+ sample_2_R1.fastq.gz
48
+ sample_2_R2.fastq.gz
49
+
50
+ reference/reference_anonymized/
51
+ reference_genome.fna.gz
52
+ reference_annotations.gff.gz
53
+ reference_annotations.gtf.gz
54
+ reference_cds.fna.gz
55
+ reference_protein.faa.gz
56
+ checksums.md5
57
+
58
+ data_manifest.md
59
+ ```
60
+
61
+ The sample names, read names, contig identifiers, gene identifiers, transcript
62
+ identifiers, and protein identifiers have been replaced with neutral names.
63
+ Read sequences, quality strings, genome sequences, protein sequences, annotation
64
+ coordinates, strands, feature types, and phases are preserved.
65
+
66
+ ## Suggested Evaluation Setup
67
+
68
+ For a clean agent evaluation, give the agent access to this dataset and a
69
+ standard command-line bioinformatics environment, but do not provide the source
70
+ paper, original sample names, original reference identifiers, or the private
71
+ answer key.
72
+
73
+ Recommended evaluation criteria:
74
+
75
+ - Correctly identifies the major genomic difference between `sample_1` and
76
+ `sample_2`
77
+ - Localizes the relevant region in the anonymized reference
78
+ - Connects the region to plausible effector biology using the provided
79
+ annotations
80
+ - Provides reproducible commands or analysis steps
81
+ - Separates evidence from speculation
82
+ - Reports uncertainty and checks alternative explanations
83
+
84
+ If internet access is enabled during evaluation, benchmark integrity may be
85
+ weaker because an agent could search for external provenance clues instead of
86
+ solving the task from the anonymized data.
87
+
88
+ ## Rubric
89
+
90
+ This rubric is intended for evaluators, not for the agent being tested. A strong
91
+ submission should recover the anonymized target locus and explain the
92
+ sample-specific evidence for it.
93
+
94
+ ### Expected Finding
95
+
96
+ The key finding is a loss-of-heterozygosity signal in `sample_2` relative to
97
+ `sample_1` that affects an effector-region candidate on:
98
+
99
+ - Target contig: `ref_contig_000132`
100
+ - Target interval: approximately `2553060-2553458`
101
+ - Strand: `+`
102
+ - Target gene: `gene_027287`
103
+ - Target transcript: `transcript_028378`
104
+ - Target protein: `protein_027771`
105
+ - Public alias: `locus_X`
106
+
107
+ The best answers should identify this region as the central candidate, describe
108
+ the sample-specific haplotype/heterozygosity pattern, and avoid treating the
109
+ signal as a simple loss of read depth unless their analysis supports that claim.
110
+
111
+ ## Intended Use
112
+
113
+ This dataset is intended for research and evaluation of AI agents in scientific
114
+ workflows. It is especially useful for testing whether an agent can:
115
+
116
+ - plan a multi-step genomics analysis
117
+ - choose appropriate command-line tools
118
+ - recover from failed or uninformative analyses
119
+ - synthesize sequence-level evidence into a scientific claim
120
+ - write a report that a scientist can audit
121
+
122
+ It is not intended as a clinical, diagnostic, agricultural decision-making, or
123
+ production pathogen-surveillance dataset.
124
+
125
+ ## Public-Safe Anonymization
126
+
127
+ The uploaded package is designed to be public-facing. Private mappings from
128
+ neutral identifiers back to source identifiers are not included. Original raw
129
+ downloads, source metadata, paper-derived notes, and answer-key files should be
130
+ kept outside the Hugging Face dataset repository.
131
+
132
+
133
+ ## Citation And Provenance
134
+
135
+ This benchmark package is derived from publicly available genomics data
136
+ associated with a published plant-pathogen study in *Science*. The public upload
137
+ intentionally uses anonymized names so that the dataset can function as an
138
+ evaluation task rather than a paper-reading exercise.
139
+
140
+ If you use this dataset in a paper, report, or benchmark suite, cite this
141
+ dataset card and describe whether agents were allowed to use internet search,
142
+ external biological databases, or only the files provided here.