bioinformatics-scientist

bioinformatics-scientist is a skill for Claude Code, Codex from wonsukchoi/domain-experts. It costs 168 tokens per session (3,733 once invoked), scanned A, original, MIT.

A research guide for turning sequencing and other large biological datasets into defensible conclusions. It covers statistical analysis, variant interpretation, gene-expression studies, genome-wide association studies, and sequence matching.

In plain words
What is it for?
Designing differential-expression and GWAS analyses, calling and evaluating variants, interpreting BLAST or DIAMOND searches, and validating computational biological results.
Why use it?
Testing thousands or millions of genes or genetic sites creates many results that appear important by chance. This helps choose suitable methods, correct for multiple tests, and separate reliable findings from false positives.

Skill for Claude CodeCodex

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

Good fit Designing differential-expression and GWAS analyses, calling and evaluating variants, interpreting BLAST or DIAMOND searches, and validating computational biological results.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wonsukchoi/domain-experts/bioinformatics-scientist
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 wonsukchoi/domain-experts --skill bioinformatics-scientist
Clone the repo
git clone --depth 1 https://github.com/wonsukchoi/domain-experts

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 bioinformatics-scientist

README.md
[![agentmods](https://agentmods.dev/badge/skills/wonsukchoi/domain-experts/bioinformatics-scientist/github.svg)](https://agentmods.dev/skills/wonsukchoi/domain-experts/bioinformatics-scientist)
Your own site
<a href="https://agentmods.dev/skills/wonsukchoi/domain-experts/bioinformatics-scientist"><img src="https://agentmods.dev/badge/skills/wonsukchoi/domain-experts/bioinformatics-scientist/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 bioinformatics-scientist

Your own site · 80×15
<a href="https://agentmods.dev/skills/wonsukchoi/domain-experts/bioinformatics-scientist"><img src="https://agentmods.dev/badge/skills/wonsukchoi/domain-experts/bioinformatics-scientist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 168 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,733 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.00168 $0.03733
Opus 5 $0.00084 $0.01867
Sonnet 5 $0.00034 $0.00747
Haiku 4.5 $0.00017 $0.00373

Measured 8d ago against content hash 85628ffcac73, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

bioinformatics-scientist 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 8d ago.

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.

roles/bioinformatics-scientist/SKILL.md · 110 lines

How it starts

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

Bioinformatics Scientist

Identity

PhD-level scientist who designs and validates the computational and statistical methods that turn raw sequencing or omics data into a defensible biological claim — which aligner, which variant caller, which normalization, which multiple-testing correction, and why that combination fits the specific experiment. Sits upstream of the bioinformatics technician, who executes and QC-gates the pipeline this role specifies, and works alongside wet-lab biologists whose hypotheses depend on the analysis holding up under review. The defining tension: genome-scale data generates thousands to millions of parallel statistical tests, and the same dataset that makes a hit list exciting is exactly what makes most of that list false by chance — the job is deciding what survives correction, not just what looks big.

First-principles core

  1. A p-value from a single gene-level or SNP-level test is not automatically an FDR-controlled result. Genome-scale experiments run thousands to millions of parallel hypothesis tests, and even a well-designed experiment produces hundreds of nominal p<0.05 hits by chance alone; the number a claim rests on is the Benjamini-Hochberg q-value (or a genome-wide threshold like 5×10⁻⁸ for GWAS), not the raw per-test p-value.
  2. Sequencing depth is a statistical sampling process, not a quality dial. Read counts at a locus follow an approximately Poisson or negative-binomial process — Lander-Waterman coverage math (C = N·L/G) gives the expected mean, but the variance around that mean is what determines whether a low-count region is real signal or sampling noise, so low-coverage positions need wider confidence intervals, not point-estimate trust.
  3. A base call and a genotype call are different confidence statements. A phred-scaled base quality (Q = −10·log₁₀ P_error) describes sequencer confidence in one nucleotide; a genotype likelihood combines many overlapping base calls, mapping quality, and a prior to produce confidence in a diploid or somatic call — reporting a variant because "the reads show it" conflates the two.
  4. Homology inferred from an alignment score is bounded by search-space size, not just biology. A BLAST/DIAMOND E-value is the expected number of chance hits at that score given the database size, so the same alignment score is a strong hit against a small custom database and a routine, possibly-spurious hit against nr (~1e11 residues) — E-value, not raw bit score or percent identity, is what's comparable across searches.
  5. A batch effect confounded with the biological variable of interest cannot be statistically corrected away. Covariate modeling or tools like ComBat remove batch effects that vary independently of the variable of interest; if every case sample was sequenced in run 1 and every control in run 2, batch and condition are the same variable, and no downstream correction recovers the biological signal from the technical one — this has to be caught at experimental design.

Read the full file on GitHub · 110 lines

Files

What ships with it

3 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. 8d ago First seen · 110 lines · 168 tokens per session scan A 85628ffcac73

Subscribe to this mod's changes

bioinformatics-scientist is a skill published in the GitHub repository wonsukchoi/domain-experts (15 stars, last pushed 4d ago), licensed MIT. It adds 168 tokens to every session and 3,733 once invoked, about $0.0008 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-03.

Related

Other skills, from other repositories

template-autoresearch-project

AutoResearch loop exemplar — deterministic ML candidate evaluation, evidence registries, claim ledgers, artifact manifests, readiness gates.

docxology/template · 30 tokens

thesis-control

Use when AI-assisted thesis or manuscript edits risk claim drift, scope creep, loss of intended use, experiment-role promotion, or repeated revisions that fail to converge; provides author-intent control, lightweight or strict contracts, drift audits, revision escalation, and human gates.

yha9806/academic-writing-toolkit · 57 tokens

manuscript-reframe

Reframe report-like academic drafts into paper-form scientific arguments while preserving or explicitly renegotiating author intent; requires an approved old-versus-proposed spine, evidence and argument baselines, analysis-role control, and post-edit drift review.

yha9806/academic-writing-toolkit · 53 tokens

onescience-modelscope-publish

A tool for preparing a reproduced research model for ModelScope, a platform for sharing machine-learning models. It organizes files into the platform’s expected directory structure and creates upload guidance.

onescience-ai/OneSkills · 81 tokens

onescience-infer

A workflow tool for running scientific machine-learning models. It helps prepare inputs, load models or saved checkpoints, run predictions, check the results, create visualizations, and compare them with a baseline.

onescience-ai/OneSkills · 153 tokens

onescience-trainer

A workflow for planning, creating, running, and checking machine-learning model training. It covers data splits, loss functions, optimizers, learning-rate schedules, evaluation, checkpoints, logs, and runtime needs.

onescience-ai/OneSkills · 147 tokens