genomic-variants

genomic-variants is a skill for Claude Code, Codex from inflexa-ai/inflexa. It costs 31 tokens per session (2,374 once invoked), scanned A, original, Apache-2.0.

A guide to analysing already-called genetic variants in VCF, BCF, or PLINK files. It covers quality filtering, annotation, genome-wide association studies, and population-genetics summaries; it does not call variants from raw sequencing reads.

In plain words
What is it for?
Use it to filter variants, add information from reference databases, test variants for links to traits, and summarise genetic variation across a population.
Why use it?
Variant files can contain low-quality calls and many fields whose meaning depends on how they were produced. The guide helps filter and interpret them without treating raw-read variant calling as part of the workflow.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to filter variants, add information from reference databases, test variants for links to traits, and summarise genetic variation across a population.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/inflexa-ai/inflexa/genomic-variants
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add inflexa-ai/inflexa --skill genomic-variants
Clone the repo
git clone --depth 1 https://github.com/inflexa-ai/inflexa

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for genomic-variants

README.md
[![agentmods](https://agentmods.dev/badge/skills/inflexa-ai/inflexa/genomic-variants/github.svg)](https://agentmods.dev/skills/inflexa-ai/inflexa/genomic-variants)
Your own site
<a href="https://agentmods.dev/skills/inflexa-ai/inflexa/genomic-variants"><img src="https://agentmods.dev/badge/skills/inflexa-ai/inflexa/genomic-variants/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for genomic-variants

Your own site · 80×15
<a href="https://agentmods.dev/skills/inflexa-ai/inflexa/genomic-variants"><img src="https://agentmods.dev/badge/skills/inflexa-ai/inflexa/genomic-variants.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,374 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00031 $0.02374
Opus 5 $0.00015 $0.01187
Sonnet 5 $0.00006 $0.00475
Haiku 4.5 $0.00003 $0.00237

Measured yesterday against content hash 3ba6bc57e101, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

genomic-variants scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/genomic-variants/SKILL.md · 186 lines

How it starts

The opening of the file, as written. The whole thing — 186 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Genomic Variant Analysis

Guidelines for working with called variants: quality filtering, annotation against catalogued resources, genome-wide association, and population-genetics summaries.

Where This Pack Starts

Your input is a VCF/BCF, a PLINK-format cohort, or an aligned BAM/CRAM you read evidence from. Variant calling is upstream and out of scope — no caller is installed and none can be. If you are handed reads, say what called form you need and stop.

Knowing what produced the input still matters for reading it. Germline call sets usually come from GATK HaplotypeCaller, DeepVariant or FreeBayes; somatic sets from Mutect2; structural variants from Manta, DELLY or Sniffles2; copy number from CNVkit or FACETS. Use those names to interpret the FILTER values, INFO fields and headers you are given — not as steps to run.

Method-Selection Decision Tree

1. Variant filtering

Called VCF
  → Programmatic pass → cyvcf2 (Python), full control over per-record logic
  → Expression pass over a large file → bcftools view/filter
  → Rare-variant subset → allele frequency from an annotation resource,
    or cohort AF computed from AC/AN when none resolves
  • Hard-filter thresholds for a supplied germline call set, when the INFO fields are present: QD > 2.0, FS < 60.0, MQ > 40.0, MQRankSum > -12.5, ReadPosRankSum > -8.0. Check the distributions before applying them — these are starting points, not universal cutoffs, and a caller that did not emit a field cannot be filtered on it.
  • Report the FILTER field as the caller populated it. Never present an unfiltered set as filtered.

2. GWAS

Genotype data (VCF or PLINK format)
  → QC: missingness (<0.02), HWE (p > 1e-6), MAF (>0.01)
    → Population structure: PCA (top 10-20 PCs as covariates)
      → Relatedness: PLINK2 --king-cutoff (remove or model related pairs)
        → Association: PLINK2 --glm (linear/logistic)
  • Verify plink2 is on PATH before building a pipeline around it — it is installed on x86_64 only. There is no linux-aarch64 build, so on an arm64 host it is absent by design, not by misconfiguration, and no-egress means it cannot be installed at runtime. Probe (command -v plink2), and if it is missing, report the reason and fall back: bcftools/cyvcf2 for filtering, allele frequencies and missingness, statsmodels for per-variant association on a cyvcf2-extracted dosage matrix, scikit-learn PCA for population structure. references/plink2-cli.md maps each step to its substitute.
  • ALWAYS include PCA covariates to adjust for population structure. Omitting this produces inflated results.
  • Check genomic inflation factor (lambda_GC); values >1.05 suggest residual confounding.

Read the full file on GitHub · 186 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 186 lines · 31 tokens per session scan A 3ba6bc57e101

Subscribe to this mod's changes

genomic-variants is a skill published in the GitHub repository inflexa-ai/inflexa (33 stars, last pushed today), licensed Apache-2.0. It adds 31 tokens to every session and 2,374 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-09.

Related

Other skills, from other repositories

biosymphony-structure-factory

Use when planning structural biology campaigns, binder-design triage, model comparison, structure mapping, RunPod or cloud GPU stage contracts, or Symphony or Linear task packs for long-running biological agent work.

BioSymphony/structure-factory · 47 tokens

binder-lane-round

Plan and run study-shaped protein-binder rounds with interchangeable toolchains, execution profiles, license gates, output checks, and result boundaries.

BioSymphony/structure-factory · 32 tokens

esm2

Skill for working with ESM2 protein language models from Meta FAIR. Use this skill whenever the user wants to generate protein embeddings or representations, score variant effects or predict mutation fitness, run contact prediction, or use ESMFold for structure prediction. Also trigger when the user mentions ESM2…

naity/FM4Life · 86 tokens

evo2

Skill for genomic sequence modeling and design with Evo2 from Arc Institute. Use this skill when a user wants to model or generate DNA sequences, score variant effects at single-nucleotide resolution, extract genomic embeddings, analyze mutations in non-coding or coding regions, design synthetic genomic elements…

naity/FM4Life · 153 tokens

alphafold

Skill for protein structure prediction and analysis with AlphaFold. Use this skill whenever a user wants to predict or fetch a protein 3D structure, download structures from the AlphaFold Database (AFDB), run ColabFold for novel proteins, parse pLDDT confidence scores or PAE (predicted aligned error) from AlphaFold…

naity/FM4Life · 141 tokens

alphafold3

Skill for structure prediction with AlphaFold 3 (AF3) from Google DeepMind. Use this skill when a user wants to predict the structure of a protein complex with ligands, DNA, or RNA; predict protein-ligand binding poses; model protein-nucleic acid interactions; use SMILES or CCD codes to specify small molecules; parse…

naity/FM4Life · 151 tokens