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.
npx skills add fmschulz/omics-skills --skill bio-reads-qc-mappinggit clone --depth 1 https://github.com/fmschulz/omics-skillsWrote 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.
[](https://agentmods.dev/skills/fmschulz/omics-skills/bio-reads-qc-mapping)<a href="https://agentmods.dev/skills/fmschulz/omics-skills/bio-reads-qc-mapping"><img src="https://agentmods.dev/badge/skills/fmschulz/omics-skills/bio-reads-qc-mapping/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.
<a href="https://agentmods.dev/skills/fmschulz/omics-skills/bio-reads-qc-mapping"><img src="https://agentmods.dev/badge/skills/fmschulz/omics-skills/bio-reads-qc-mapping.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00039 | $0.01484 |
| Opus 5 | $0.00019 | $0.00742 |
| Sonnet 5 | $0.00008 | $0.00297 |
| Haiku 4.5 | $0.00004 | $0.00148 |
Grade A, and why
bio-reads-qc-mapping 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 6d 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.
How it starts
The opening of the file, as written. The whole thing — 74 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Bio Reads QC Mapping
Ingest, QC, and map reads with reproducible outputs. Use for raw read processing and coverage stats.
Instructions
Tool guides and versions: docs/README.md.
-
Parse and validate
sample_sheet.tsvagainstschemas/sample-sheet.schema.json. Use the executable driver for both planning and restartable execution:uv run --script skills/bio-reads-qc-mapping/scripts/run_reads_qc_mapping.py \ sample_sheet.tsv --out results/bio-reads-qc-mapping # Inspect run_manifest.json, then execute the same plan: uv run --script skills/bio-reads-qc-mapping/scripts/run_reads_qc_mapping.py \ sample_sheet.tsv --out results/bio-reads-qc-mapping --executeread_typemust bepaired_short,single_short, orlong. Mapping runs only for rows with a non-emptyreference; a missing reference is not a mapping failure. The driver reuses a stage only when its declared outputs are non-empty and the stage's.donemarker exists. -
For short reads: run QC and adapter/quality trimming with
bbdukorfastpv1.3.3+. -
For long reads: use current basecaller-aware QC first. For ONT, prefer Dorado summaries/trimming during basecalling or demultiplexing when starting from signal/BAM; for FASTQ-only filtering use
chopperfor quality/length/end trimming orfiltlongv0.3.1 when selecting reads for assembly (v0.3.0 renamed the short-read options to--short_1/--short_2; see docs/filtlong.md). UsePychopperfor full-length cDNA. TreatPorechop_ABIas a targeted legacy/fallback adapter-discovery tool, and record why it is needed.- For very large ONT FASTQ inputs, do not burn the first full read pass on raw
gzip -tor rawseqkit statspreflight unless the user explicitly asks for it. Record rawstatmetadata and, if needed, a small sampled sanity check; let the first full pass be the actual filtering/orientation step, then runseqkit statson produced outputs. - For ONT cDNA with
Pychopper, write outputs with plain.fastqsuffixes unless you explicitly pipe/compress them yourself.Pychoppercan write plain FASTQ even when the output path ends in.gz; avoidgzip -tonPychopperoutputs unless magic bytes confirm gzip. If legacy outputs have.fastq.gznames but plain FASTQ content, rename them to.fastqbefore resuming. Pychopperreport plotting can fail after the reads are already processed, for example from a pandas/statistics type-conversion error. On that failure, inspect whether the classified/unclassified/rescued/read-stats outputs exist and are non-empty. If they do, resume downstream from those outputs rather than rerunning the fullPychopperpass.
- For very large ONT FASTQ inputs, do not burn the first full read pass on raw
-
Map reads and produce coverage tables:
- Short reads, CPU:
bbmaporbwa-mem2v2.2.1+. Short reads, GPU node available: NVIDIA Parabricksfq2bam(wrapsbwa-mem2+ GATK markdup; typically 3–4× faster thanbwa-mem2on 8 cores and up to ~80× over a 96-core CPU pipeline). - Long reads, CPU:
minimap2v2.30+. AVX-512 hardware:mm2-fastas a drop-in replacement (~1.8× speedup). GPU node available:mm2-gbormm2-axfor CUDA-accelerated long-read alignment.
- Short reads, CPU:
-
Record the tool, version, and any GPU device used in the run log.
What ships with it
14 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.
- docs/bbduk.md 5.5 KB
- docs/bbmap.md 6.3 KB
- docs/filtlong.md 6.4 KB
- docs/minimap2.md 8.3 KB
- docs/porechop_abi.md 9.4 KB
- docs/README.md 6.1 KB
- fixtures/reads/long.fastq 42 B
- fixtures/reads/paired_R1.fastq 30 B
- fixtures/reads/paired_R2.fastq 30 B
- fixtures/reads/reference.fasta 36 B
- fixtures/reads/single.fastq 28 B
- fixtures/sample_sheet.tsv 221 B
- schemas/sample-sheet.schema.json 565 B
- scripts/run_reads_qc_mapping.py 7.4 KB runs code
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.
- 6d ago Changed · -1 lines 981c3f415bc6
- 12d ago First seen · 75 lines · 39 tokens per session scan A 79fa485563b2
bio-reads-qc-mapping is a skill published in the GitHub repository fmschulz/omics-skills (7 stars, last pushed 6d ago), licensed MIT. It adds 39 tokens to every session and 1,484 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-08-31.
Other skills, from other repositories
imaging-data-commons
Query and download public cancer imaging data from NCI Imaging Data Commons. Invoke for any question about IDC collections, cancer imaging datasets, DICOM data access, radiology (CT, MR, PET) or pathology AI training sets, metadata queries, visualization, or license checks — even when the user doesn't explicitly…
tamarind
Access a collection of open-source molecular design and structural biology tools on the Tamarind Bio platform, via its REST API or MCP server — no local GPUs required. Tamarind bundles popular open-source models for structure prediction (AlphaFold, Boltz, Chai, ESMFold), protein, binder, and de novo design…
genomic-intelligence
Predict regulatory features, gene structure, and expression directly from DNA sequence using Genomic Intelligence's hosted transformer DNA language models — no local GPU or model weights. Six tasks over a REST API and a hosted MCP server (keyless public demo): promoter regions, splice donor/acceptor sites, enhancer…
lab-hardware-cad
Design custom laboratory hardware as parametric build123d models and export fabrication-ready STEP, STL, and DXF files - microfluidic chips and molds, optomechanical mounts and breadboard adapters, cuvette and microplate holders, tube racks, animal-behavior rigs, and 3D-printed instrument fixtures. Use when a research…
pkpd-modeling
Pharmacokinetic and pharmacodynamic modelling and simulation - non-compartmental analysis, compartmental and population PK, PK/PD and exposure-response, TMDD, PBPK orientation, bioequivalence, allometric scaling and first-in-human dose, drug interaction prediction, and Bayesian therapeutic drug monitoring. Use when…
relsa-severity-assessment
Multivariate severity assessment and humane endpoint prediction for laboratory animal studies using the RELSA (RELative Severity Assessment) score and ARIMA-based foRcast forecasting. Use when combining welfare readouts — body weight or weight loss, body temperature, clinical or nesting scores, biomarkers, activity…