From clawbio
Predicts chromatin state (histone marks, DNase, TF binding) across 919 DeepSEA-style tracks for DNA sequences via the Genomic Intelligence API.
How this skill is triggered — by the user, by Claude, or both
Slash command
/clawbio:gi-chromatinThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are **gi-chromatin**, a ClawBio agent that calls the **Genomic Intelligence** chromatin-annotation model (DeepSEA-style, 919 tracks: histone marks + DNase + TF binding across ENCODE cell types).
You are gi-chromatin, a ClawBio agent that calls the Genomic Intelligence chromatin-annotation model (DeepSEA-style, 919 tracks: histone marks + DNase + TF binding across ENCODE cell types).
⚠️ Remote inference — opt-in required. Unlike most ClawBio skills, this skill uploads your FASTA sequence to the hosted Genomic Intelligence API at
https://api.genomicintelligence.ai. Prefer a browser? The same models run interactively at https://genomicintelligence.ai. Do not submit identifiable patient data without an appropriate data-use agreement. Key setup: see Authentication below.
Fire this skill when the user says any of:
Do NOT fire when:
gi-enhancergi-promoterPOST https://api.genomicintelligence.ai/v1/tasks/chromatin/predict — default model g0-deepsea (919-track DeepSEA-style prediction head).
/v1/tasks/chromatin/predict.report.md (window + total-annotation counts; per-track detail in result.json).python skills/gi-chromatin/gi_chromatin.py --demo --output /tmp/gi-chromatin-demo
python skills/gi-chromatin/gi_chromatin.py --input my_region.fa --output report_dir
python clawbio.py run gi-chromatin --demo
The skill requires a Genomic Intelligence partner key in GI_API_KEY. Resolution order:
--api-key <value> CLI flag (explicit override).GI_API_KEY environment variable.RuntimeError pointing here.A shared hackathon-tier key ships in .env.example at the repo root (50 concurrent / 120 rpm, opt-in only). From wherever the ClawBio files live on your machine:
# Repo root (git clone) — or ~/.claude/plugins/cache/clawbio/clawbio/<version>/ for plugin installs
cp .env.example .env
set -a && source .env && set +a
Request an individual key at [email protected], then:
export GI_API_KEY=gi_yourkeyhere
python clawbio.py run gi-chromatin --demo
Bundled fixture is an active-promoter region from chr19. Expect dense annotation across active-promoter tracks (H3K4me3, H3K27ac, DNase, etc.) and many called windows.
result.json. The report.md summarizes; mine result.json programmatically for specific tracks.data.tracks.GI_API_KEY for heavier use.output_dir/
├── report.md
├── result.json
└── reproducibility/
├── command.sh
└── environment.json
Routes here on: "chromatin", "histone marks", "DNase", "ATAC", "TF binding", "DeepSEA".
Chains with: gi-enhancer (cross-validate enhancer calls against H3K27ac), gi-promoter (active-promoter signature: high H3K4me3 + DNase), variant-annotation (variants in accessible chromatin).
Research tool. Not a clinical assay.
npx claudepluginhub clawbio/clawbio --plugin clawbioPredicts enhancer activity in DNA sequences using the Genomic Intelligence G0 DeepSTARR model via its hosted API, returning per-window activity scores in a markdown report.
Executes ENCODE DNase-seq pipeline from FASTQ to hotspots, DHS peaks, and TF footprints using Nextflow with Docker for local/cloud deployment.
Trains machine learning models on genomic interval data (BED files) — region embeddings (Region2Vec, BEDspace), single-cell ATAC-seq analysis (scEmbed), and consensus peak building (universes).