Examples#
Explore complete working examples in the examples/ directory of the repository.
Available Examples#
Example |
Description |
|---|---|
|
Code evolution example: optimizing the Harmony batch correction algorithm |
|
Agent-guided code evolution workflow |
|
FASTQ file processing pipeline |
|
Academic paper analysis and summarization |
|
Enhanced multi-agent paper analysis |
|
Single-cell and spatial genomics analysis |
Running Examples#
Each example directory contains a README with specific instructions. General pattern:
cd examples/<example_name>
# Read the README
cat README.md
# Run the example
python run.py # or main.py, depending on the example
Evolution Example#
The evolution_harmonypy example demonstrates code evolution:
cd examples/evolution_harmonypy
# Test the evaluator
python evaluator.py
# Run evolution (quick test)
python run_evolution.py --iterations 10
See Evolution System for detailed documentation on the Evolution System.