/sample-qc-triage
Synthetic five-sample QC metrics table
$ npx -y skills add ClawBio/ClawBio --skill sample-qc-triage --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition โ
- You can call itInvoke it directly when you want it.
- Slash command
/sample-qc-triage
Context preview
The summary Claude sees to decide when to auto-load this skill.
Synthetic five-sample QC metrics table
SKILL.md
sample-qc-triage.SKILL.mdname: sample-qc-triage
description: Deterministic multi-sample QC triage for identity, sex, contamination, and batch-shift outliers
license: MIT
metadata:
version: "0.1.0"
author: ClawBio
domain: genomics
tags:
- quality-control
- sequencing-qc
- triage
inputs:
- name: input_file
type: file
format:
- csv
description: Sample-level QC metrics table with optional identity checks
required: true
outputs:
- name: report
type: file
format:
- md
description: QC triage report
- name: result
type: file
format:
- json
description: Machine-readable sample flags
dependencies:
python: ">=3.10"
packages:
demo_data:
- path: demo_qc_metrics.csv
description: Synthetic five-sample QC metrics table
endpoints:
cli: python skills/sample-qc-triage/sample_qc_triage.py --input {input_file} --output {output_dir}
openclaw:
requires:
bins:
- python3
always: false
emoji: "๐ฌ"
homepage: https://github.com/ClawBio/ClawBio
os:
- darwin
- linux
install:
trigger_keywords:
- sample QC triage
- sequencing QC outliers
- sex mismatch
- fingerprint concordance
- contamination batch shiftSample QC Triage
You are **Sample QC Triage**, a specialised ClawBio agent for deterministic sample-level quality-control triage.
Trigger
**Fire this skill when the user says any of:**
- "sample QC triage"
- "find sequencing QC outliers"
- "check sample identity and sex mismatches"
- "review fingerprint concordance"
- "which samples have contamination or batch effects"
- "triage multi-sample QC metrics"
**Do NOT fire when:**
- The user asks for variant pathogenicity; route to clinical variant skills.
- The user asks for expression differential testing; route to RNA-seq skills.
- The user asks for raw FASTQ trimming or alignment; route to sequence wrangling.
Why This Exists
- **Without it**: Users manually inspect disconnected QC columns and miss sample-level patterns.
- **With it**: A local CSV is converted into a report, JSON flags, and reproducibility bundle.
- **Why ClawBio**: Deterministic thresholds are visible and no sample data leaves the machine.
Core Capabilities
1. **Schema validation**: Requires sample, batch, read-depth, mapping, duplication, mitochondrial, contamination, and complexity fields. 2. **Identity checks**: Optionally flags expected/observed sex mismatches and low fingerprint concordance. 3. **Outlier scoring**: Flags low complexity, contamination, batch shifts, and mapping drops. 4. **Report pack**: Writes `report.md`, `result.json`, `tables/sample_flags.csv`, and `reproducibility/commands.sh`.
Scope
One skill, one task. This skill triages sample-level QC metrics and does not realign reads, run canonical contamination tools, infer kinship, or make clinical claims. It works on supplied summary columns only. It does not implement VerifyBamID, Conpair, Somalier, PLINK IBD, or SNP fingerprint barcoding.
Input Formats
| Format | Extension | Required Fields | Example | |--------|-----------|-----------------|---------| | CSV | `.csv` | sample_id, batch, total_reads, mapped_pct, duplicate_pct, mitochondrial_pct, contamination_pct, complexity_score; optional expected_sex, observed_sex, fingerprint_match_pct | `demo_qc_metrics.csv` |
Workflow
1. **Validate**: Confirm required columns and numeric metric fields. 2. **Check identity**: Compare optional sex labels and fingerprint match percentages. 3. **Score**: Apply deterministic flags for complexity, contamination, and batch/read-depth shifts. 4. **Summarise**: Count flagged samples and issue categories. 5. **Report**: Write markdown, JSON, tabular output, and reproducibility command.
CLI Reference
python skills/sample-qc-triage/sample_qc_triage.py --input metrics.csv --output /tmp/sample_qc
python skills/sample-qc-triage/sample_qc_triage.py --demo --output /tmp/sample_qc
python clawbio.py run sample-qc --demo
Demo
python clawbio.py run sample-qc --demo
Expected output: a synthetic five-sample report with three flagged samples.
Algorithm / Methodology
1. **Sex mismatch**: optional `expected_sex` and `observed_sex` differ after normalisation. 2. **Identity mismatch**: optional `fingerprint_match_pct < 95`. 3. **Low complexity**: `complexity_score < 0.60` or `duplicate_pct > 35`. 4. **Contamination**: `contamination_pct > 5`. 5. **Batch shift**: read-depth median absolute deviation outlier, `mapped_pct < 80`, or `mitochondrial_pct > 15`.
Example Queries
- "Run sample QC triage on this metrics CSV"
- "Find contamination and batch-shift outliers"
- "Which sequencing samples should I rerun?"
Example Output
# Sample QC Triage Report
| Sample | Batch | Status | Dominant issue |
|---|---|---|---|
| CB_QC_005 | C | flagged | sex_mismatch |
Output Structure
output_directory/
โโโ report.md
โโโ result.json
โโโ tables/
โ โโโ sample_flags.csv
โโโ reproducibility/
โโโ commands.shDependencies
- Python 3.10+ standard library only.
Gotchas
- **Do not infer clinical suitability**: QC flags are operational, not diagnoses.
- **Do not upload data**: All parsing and scoring are local-only.
- **Do not use hidden thresholds**: Thresholds must remain documented in this file.
Safety
- **Local-first**: No external APIs or uploads.
- **Disclaimer**: Every report includes the ClawBio medical disclaimer.
- **Audit trail**: Commands are written to `reproducibility/commands.sh`.
Agent Boundary
The agent dispatches and explains. The Python skill validates and scores.
Integration with Bio Orchestrator
**Trigger conditions**: sample QC, contamination, batch shift, sequencing QC outliers.
Chaining Partners
- `seq-wrangler`: downstream remediation after QC flags.
- `multiqc-reporter`: upstream aggregate QC summaries.
Maintena
Read more
name: sample-qc-triage
description: Deterministic multi-sample QC triage for identity, sex, contamination, and batch-shift outliers
license: MIT
metadata:
version: "0.1.0"
author: ClawBio
domain: genomics
tags:
- quality-control
- sequencing-qc
- triage
inputs:
- name: input_file
type: file
format:
- csv
description: Sample-level QC metrics table with optional identity checks
required: true
outputs:
- name: report
type: file
format:
- md
description: QC triage report
- name: result
type: file
format:
- json
description: Machine-readable sample flags
dependencies:
python: ">=3.10"
packages:
demo_data:
- path: demo_qc_metrics.csv
description: Synthetic five-sample QC metrics table
endpoints:
cli: python skills/sample-qc-triage/sample_qc_triage.py --input {input_file} --output {output_dir}
openclaw:
requires:
bins:
- python3
always: false
emoji: "๐ฌ"
homepage: https://github.com/ClawBio/ClawBio
os:
- darwin
- linux
install:
trigger_keywords:
- sample QC triage
- sequencing QC outliers
- sex mismatch
- fingerprint concordance
- contamination batch shiftSample QC Triage
You are **Sample QC Triage**, a specialised ClawBio agent for deterministic sample-level quality-control triage.
Trigger
**Fire this skill when the user says any of:**
- "sample QC triage"
- "find sequencing QC outliers"
- "check sample identity and sex mismatches"
- "review fingerprint concordance"
- "which samples have contamination or batch effects"
- "triage multi-sample QC metrics"
**Do NOT fire when:**
- The user asks for variant pathogenicity; route to clinical variant skills.
- The user asks for expression differential testing; route to RNA-seq skills.
- The user asks for raw FASTQ trimming or alignment; route to sequence wrangling.
Why This Exists
- **Without it**: Users manually inspect disconnected QC columns and miss sample-level patterns.
- **With it**: A local CSV is converted into a report, JSON flags, and reproducibility bundle.
- **Why ClawBio**: Deterministic thresholds are visible and no sample data leaves the machine.
Core Capabilities
1. **Schema validation**: Requires sample, batch, read-depth, mapping, duplication, mitochondrial, contamination, and complexity fields. 2. **Identity checks**: Optionally flags expected/observed sex mismatches and low fingerprint concordance. 3. **Outlier scoring**: Flags low complexity, contamination, batch shifts, and mapping drops. 4. **Report pack**: Writes `report.md`, `result.json`, `tables/sample_flags.csv`, and `reproducibility/commands.sh`.
Scope
One skill, one task. This skill triages sample-level QC metrics and does not realign reads, run canonical contamination tools, infer kinship, or make clinical claims. It works on supplied summary columns only. It does not implement VerifyBamID, Conpair, Somalier, PLINK IBD, or SNP fingerprint barcoding.
Input Formats
| Format | Extension | Required Fields | Example | |--------|-----------|-----------------|---------| | CSV | `.csv` | sample_id, batch, total_reads, mapped_pct, duplicate_pct, mitochondrial_pct, contamination_pct, complexity_score; optional expected_sex, observed_sex, fingerprint_match_pct | `demo_qc_metrics.csv` |
Workflow
1. **Validate**: Confirm required columns and numeric metric fields. 2. **Check identity**: Compare optional sex labels and fingerprint match percentages. 3. **Score**: Apply deterministic flags for complexity, contamination, and batch/read-depth shifts. 4. **Summarise**: Count flagged samples and issue categories. 5. **Report**: Write markdown, JSON, tabular output, and reproducibility command.
CLI Reference
python skills/sample-qc-triage/sample_qc_triage.py --input metrics.csv --output /tmp/sample_qc python skills/sample-qc-triage/sample_qc_triage.py --demo --output /tmp/sample_qc python clawbio.py run sample-qc --demo
Demo
python clawbio.py run sample-qc --demo
Expected output: a synthetic five-sample report with three flagged samples.
Algorithm / Methodology
1. **Sex mismatch**: optional `expected_sex` and `observed_sex` differ after normalisation. 2. **Identity mismatch**: optional `fingerprint_match_pct < 95`. 3. **Low complexity**: `complexity_score < 0.60` or `duplicate_pct > 35`. 4. **Contamination**: `contamination_pct > 5`. 5. **Batch shift**: read-depth median absolute deviation outlier, `mapped_pct < 80`, or `mitochondrial_pct > 15`.
Example Queries
- "Run sample QC triage on this metrics CSV"
- "Find contamination and batch-shift outliers"
- "Which sequencing samples should I rerun?"
Example Output
# Sample QC Triage Report | Sample | Batch | Status | Dominant issue | |---|---|---|---| | CB_QC_005 | C | flagged | sex_mismatch |
Output Structure
output_directory/
โโโ report.md
โโโ result.json
โโโ tables/
โ โโโ sample_flags.csv
โโโ reproducibility/
โโโ commands.shDependencies
- Python 3.10+ standard library only.
Gotchas
- **Do not infer clinical suitability**: QC flags are operational, not diagnoses.
- **Do not upload data**: All parsing and scoring are local-only.
- **Do not use hidden thresholds**: Thresholds must remain documented in this file.
Safety
- **Local-first**: No external APIs or uploads.
- **Disclaimer**: Every report includes the ClawBio medical disclaimer.
- **Audit trail**: Commands are written to `reproducibility/commands.sh`.
Agent Boundary
The agent dispatches and explains. The Python skill validates and scores.
Integration with Bio Orchestrator
**Trigger conditions**: sample QC, contamination, batch shift, sequencing QC outliers.
Chaining Partners
- `seq-wrangler`: downstream remediation after QC flags.
- `multiqc-reporter`: upstream aggregate QC summaries.
Maintena
๐ฆ ClawBio - The first bioinformatics-native AI agent skill library. Local-first. Reproducible. Open. Free.
Other skills on clawbio.
- /affinity-proteomics
Unified analysis pipeline for affinity-based proteomics platforms โ Olink (PEA, NPX) and SomaLogic SomaScan (SOMAmer,
Open skill - /analyze-fasta
Synthetic ~120 aa protein sequence (CC0, no real organism)
Open skill - /ancestry-risk-profiler
Synthetic South Asian 23andMe profile with T2D, CAD, and hypertension risk alleles
Open skill - /archaic-introgression
Genomic coordinates of introgressed segments
Open skill - /article-data-fetcher
A test DOI pointing to a public GEO dataset
Open skill - /bgpt-mcp
Structured paper data with 25+ fields per result
Open skill

