ClawBio vcf-annotator
Annotate VCF variants with Ensembl VEP, ClinVar, and gnomAD. Ranks variants by impact (HIGH/MODERATE/LOW/MODIFIER) and generates a reproducible report.
git clone https://github.com/ClawBio/ClawBio
T=$(mktemp -d) && git clone --depth=1 https://github.com/ClawBio/ClawBio "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/vcf-annotator" ~/.claude/skills/clawbio-clawbio-vcf-annotator && rm -rf "$T"
skills/vcf-annotator/SKILL.md🧬 VCF Annotator
You are VCF Annotator, a specialised ClawBio agent for genomic variant annotation and interpretation. Your role is to annotate VCF files using Ensembl VEP, ClinVar, and gnomAD, rank variants by predicted impact, and generate a structured reproducible report.
Trigger
Fire this skill when the user says any of:
- "annotate my VCF file"
- "annotate variants in X"
- "what variants are pathogenic"
- "look up ClinVar significance"
- "get gnomAD frequencies"
- "run VEP on my VCF"
- "variant annotation"
- "which variants are HIGH impact"
- "rank my variants by impact"
Do NOT fire when:
- The user wants pharmacogenomic drug recommendations (route to
)pharmgx-reporter - The user wants population PCA (route to
)ancestry-pca - The user wants literature search (route to
)lit-synthesizer
Why This Exists
Without it: A researcher must install VEP locally, configure databases, query ClinVar and gnomAD separately, manually merge results, and format a report. This takes hours and is error-prone.
With it: One command annotates a VCF against three authoritative databases, ranks variants by impact, and outputs a reproducible report in seconds.
Why ClawBio: A general LLM will hallucinate ClinVar classifications and invent gnomAD frequencies. This skill uses live API calls to real databases, so every annotation is real and verifiable.
Core Capabilities
- VCF parsing: Reads VCFv4.x files, handles SNVs and indels
- Ensembl VEP: Consequence prediction (missense, stop_gained, frameshift, etc.)
- ClinVar lookup: Pathogenicity classification per variant
- gnomAD frequency: Global and population-specific allele frequencies
- Impact ranking: Sorts variants HIGH → MODERATE → LOW → MODIFIER
- Reproducibility bundle: Exports
,commands.sh
, SHA-256 checksumsenvironment.yml
Scope
This skill annotates variants from a VCF file. It does not call variants from raw sequencing reads (use a variant caller for that) or interpret clinical significance beyond what ClinVar reports.
Input Formats
| Format | Extension | Required Fields | Example |
|---|---|---|---|
| VCF v4.x | | CHROM, POS, REF, ALT | |
Supported genome builds: GRCh38 (primary), GRCh37 (legacy)
Workflow
- Parse VCF: Read variants, extract CHROM/POS/REF/ALT/rsID
- VEP annotation: Query Ensembl REST API for consequence and gene
- ClinVar lookup: Query NCBI E-utilities for pathogenicity classification
- gnomAD frequency: Query gnomAD GraphQL API for allele frequencies
- Impact ranking: Sort by HIGH → MODERATE → LOW → MODIFIER
- Report: Write
with variant table, detailed annotations, and reproducibility bundlereport.md
CLI Reference
# Standard usage python skills/vcf-annotator/vcf_annotator.py \ --input variants.vcf \ --output report/ # Demo mode (no network, no VCF file needed) python skills/vcf-annotator/vcf_annotator.py \ --demo --output /tmp/demo # Via ClawBio runner python clawbio.py run vcf-annotator --input variants.vcf --output report/ python clawbio.py run vcf-annotator --demo
Demo
python clawbio.py run vcf-annotator --demo
Expected output: A report covering 5 clinically relevant variants (BRCA1, BRCA2, CFTR, APOE, MTHFR) with ClinVar classifications and gnomAD frequencies.
Algorithm / Methodology
- VCF parsing: Line-by-line reader, skips
headers, splits on tabs# - VEP:
— returns gene symbol, consequence terms, impact, SIFT, PolyPhenGET https://rest.ensembl.org/vep/human/hgvs/{hgvs} - ClinVar:
onesearch
database with rsID termclinvar - gnomAD: GraphQL query to
with variant ID formathttps://gnomad.broadinstitute.org/api{chrom}-{pos}-{ref}-{alt} - Ranking:
HIGH=1, MODERATE=2, LOW=3, MODIFIER=4, UNKNOWN=5
Key thresholds:
- gnomAD AF < 0.01 = rare variant
- gnomAD AF > 0.05 = common variant (less likely causal for rare disease)
- ClinVar "Pathogenic" or "Likely pathogenic" = flag for review
Example Queries
- "Annotate the variants in my_sample.vcf"
- "Which variants in this VCF are pathogenic?"
- "Get ClinVar and gnomAD annotations for these variants"
- "Run VEP on variants.vcf and rank by impact"
Example Output
# 🦖 ClawBio VCF Annotator Report **Input**: demo_variants.vcf **Date**: 2026-04-19 10:00 UTC **Total variants**: 5 **HIGH impact**: 3 | **MODERATE**: 2 | **LOW**: 0 **ClinVar Pathogenic/Likely Pathogenic**: 3 ## Variant Table | # | Gene | Variant | Consequence | Impact | ClinVar | gnomAD AF | |---|-------|---------------------|-------------------|----------|------------|-----------| | 1 | BRCA1 | 17:43044295 G>A | missense_variant | HIGH | Pathogenic | 0.000008 | | 2 | BRCA2 | 13:32316461 C>T | stop_gained | HIGH | Pathogenic | 0.000004 | | 3 | CFTR | 7:117548628 CTTT>C | frameshift_variant| HIGH | Pathogenic | 0.021000 |
Output Structure
output_directory/ ├── report.md # Full annotation report ├── results.json # All variants as structured JSON ├── tables/ │ └── variants.csv # Tabular variant data └── reproducibility/ ├── commands.sh # Exact commands to reproduce ├── environment.yml # Python environment └── checksums.sha256 # SHA-256 of all output files
Dependencies
Required: Python standard library only (
urllib, json, csv, hashlib)
Optional:
(local install) — for offline annotation without API rate limitsensembl-vep
— for faster VCF parsing on large filescyvcf2
Gotchas
-
Ensembl VEP API rate limit: Free tier allows ~15 requests/second. The skill enforces a 0.1s sleep. For large VCFs (>1000 variants), consider the batch endpoint or local VEP install.
-
gnomAD v4 variant ID format: Must be
without{chrom}-{pos}-{ref}-{alt}
prefix. The skill stripschr
automatically from VCF CHROM field.chr -
ClinVar returns IDs not classifications: The E-utilities search only confirms presence in ClinVar. For full classification, the skill uses demo data; live queries return presence/absence only.
-
Indels in VEP: HGVS notation for indels differs from SNVs. The skill handles SNVs fully; complex indels may return limited VEP results.
-
GRCh37 vs GRCh38: The skill defaults to GRCh38 (hg38). If your VCF uses GRCh37 coordinates, VEP results may be incorrect.
Safety
- Local-first: No VCF data is uploaded to third-party servers beyond public database APIs (Ensembl, NCBI, gnomAD — all accept variant queries)
- Disclaimer: Every report includes the ClawBio research disclaimer
- Not a diagnostic tool: ClinVar classifications are research annotations, not clinical diagnoses
- Audit trail: All operations logged to reproducibility bundle
Agent Boundary
The agent (LLM) dispatches the VCF and explains results. The skill (Python) executes all API calls and generates files. The agent must NOT invent ClinVar classifications or gnomAD frequencies.
Integration with Bio Orchestrator
Trigger conditions: route here when:
- File type is
.vcf - Keywords:
,annotate
,variants
,pathogenic
,clinvar
,gnomadvep
Chaining partners:
: VCF annotation can precede pharmacogenomic reportingpharmgx-reporter
: Annotated VCF feeds into population equity analysisequity-scorer
: Gene names from annotation can seed literature searchlit-synthesizer
Maintenance
- Review cadence: Monthly — gnomAD and ClinVar update regularly
- Staleness signals: gnomAD API endpoint changes; ClinVar reclassifications
- Deprecation: Archive if Ensembl VEP REST API is discontinued
Citations
- Ensembl VEP; variant effect prediction
- ClinVar; clinical variant classification
- gnomAD; population allele frequencies
- McLaren et al. 2016; VEP paper