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 Lord1Egypt/scientific-agent-toolkit --skill ngs-pipeline-managementgit clone --depth 1 https://github.com/Lord1Egypt/scientific-agent-toolkitWrote 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/lord1egypt/scientific-agent-toolkit/ngs-pipeline-management)<a href="https://agentmods.dev/skills/lord1egypt/scientific-agent-toolkit/ngs-pipeline-management"><img src="https://agentmods.dev/badge/skills/lord1egypt/scientific-agent-toolkit/ngs-pipeline-management/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/lord1egypt/scientific-agent-toolkit/ngs-pipeline-management"><img src="https://agentmods.dev/badge/skills/lord1egypt/scientific-agent-toolkit/ngs-pipeline-management.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00072 | $0.02543 |
| Opus 5 | $0.00036 | $0.01272 |
| Sonnet 5 | $0.00014 | $0.00509 |
| Haiku 4.5 | $0.00007 | $0.00254 |
Grade A, and why
ngs-pipeline-management 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 9d 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 — 337 lines — stays where its author put it; the contents beside it link to each section on GitHub.
NGS Pipeline Management
Overview
NGS pipeline management involves building reproducible, scalable workflows for processing next-generation sequencing data. This skill covers Snakemake and Nextflow for workflow definition, execution on HPC clusters and cloud platforms, containerization with Docker/Singularity, and best practices for reproducible bioinformatics.
When to Use This Skill
- Building RNA-seq, WGS, ChIP-seq, ATAC-seq, or amplicon pipelines
- Running bioinformatics workflows on SLURM/PBS/SGE clusters
- Scaling pipelines to AWS, GCP, or Azure
- Containerizing workflows with Docker or Singularity
- Debugging failed pipeline steps and log inspection
- Managing conda environments within workflows
- Parallelizing sample processing and step execution
- Generating reproducible workflow reports
Quick Start
Snakemake RNA-seq Pipeline
# Snakefile for bulk RNA-seq analysis
SAMPLES = ["sample1", "sample2", "sample3", "sample4"]
GENOME = "GRCh38"
rule all:
input:
expand("results/counts/{sample}.counts.txt", sample=SAMPLES),
"results/multiqc_report.html",
rule trim_reads:
input:
r1="data/raw/{sample}_R1.fastq.gz",
r2="data/raw/{sample}_R2.fastq.gz",
output:
r1="data/trimmed/{sample}_R1_trimmed.fastq.gz",
r2="data/trimmed/{sample}_R2_trimmed.fastq.gz",
json="qc/{sample}_fastp.json",
html="qc/{sample}_fastp.html",
threads: 8
shell:
"""
fastp -i {input.r1} -I {input.r2} \
-o {output.r1} -O {output.r2} \
-j {output.json} -h {output.html} \
--thread {threads} --detect_adapter_for_pe
"""
rule align_star:
input:
r1="data/trimmed/{sample}_R1_trimmed.fastq.gz",
r2="data/trimmed/{sample}_R2_trimmed.fastq.gz",
index="reference/star_index/",
output:
bam="results/bam/{sample}.Aligned.sortedByCoord.out.bam",
log="results/bam/{sample}.Log.final.out",
threads: 16
shell:
"""
STAR --runThreadN {threads} \
--genomeDir {input.index} \
--readFilesIn {input.r1} {input.r2} \
--readFilesCommand zcat \
--outSAMtype BAM SortedByCoordinate \
--outSAMattributes NH HI AS NM \
--outFileNamePrefix results/bam/{wildcards.sample}. \
--quantMode GeneCounts
samtools index {output.bam}
"""
rule feature_counts:
input:
bam="results/bam/{sample}.Aligned.sortedByCoord.out.bam",
gtf="reference/annotation.gtf",
output:
counts="results/counts/{sample}.counts.txt",
threads: 4
shell:
"""
featureCounts -T {threads} \
-a {input.gtf} \
-o {output.counts} \
-p -B -C \
{input.bam}
"""
rule multiqc:
input:
expand("qc/{sample}_fastp.json", sample=SAMPLES),
expand("results/bam/{sample}.Log.final.out", sample=SAMPLES),
expand("results/counts/{sample}.counts.txt", sample=SAMPLES),
output:
"results/multiqc_report.html",
shell:
"multiqc qc/ results/ -o results/ -n multiqc_report"
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.
- 9d ago First seen · 337 lines · 72 tokens per session scan E c2536f5d46b8
ngs-pipeline-management is a skill published in the GitHub repository Lord1Egypt/scientific-agent-toolkit (3 stars, last pushed 3mo ago), licensed MIT. It adds 72 tokens to every session and 2,543 once invoked, about $0.0004 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.
Other skills, from other repositories
alterlab-remote-compute
Dispatch long-running GPU/CPU jobs to remote compute with a provider-agnostic submit → poll → harvest pattern across SLURM/HPC (sbatch, squeue, sacct) and managed APIs (Modal, RunPod, GCP Batch / Vertex AI). Use when submitting a batch job to a cluster, polling job status, retrieving result artifacts from a scheduler…
pipeline-chipseq
Execute ENCODE ChIP-seq processing pipeline from FASTQ to peaks and signal tracks. Child of pipeline-guide. Provides stage-by-stage Nextflow execution with Docker containers and cloud deployment. Use when users need to process ChIP-seq data following ENCODE standards, run peak calling with MACS2, perform IDR analysis…
pipeline-dnaseseq
Execute ENCODE DNase-seq pipeline from FASTQ to hotspots and footprints. Child of pipeline-guide. Provides Nextflow execution with Docker and cloud deployment. Use when processing DNase-seq data, calling DNase hypersensitive sites, performing footprinting analysis. Trigger on: DNase-seq pipeline, DNase hypersensitive…
pipeline-wgbs
Execute ENCODE Whole Genome Bisulfite Sequencing (WGBS) pipeline from FASTQ to methylation calls. Child of pipeline-guide. Provides Nextflow execution with Docker and cloud deployment. Use when processing WGBS/bisulfite-seq data, calling methylation levels, generating bedMethyl files. Trigger on: WGBS pipeline…
nextflow-workflow-engine
Dataflow workflow engine for scalable bioinformatics pipelines. Defines processes (containerized tasks) connected by channels; runs local, HPC (SLURM/SGE), cloud (AWS/GCP/Azure), or Kubernetes via a single config change. Powers nf-core. Use Snakemake for rule-based Python workflows; use Nextflow for containerized…
latchbio-integration
Build, register, debug, and operate bioinformatics workflows on Latch using the Python SDK, CLI, Latch Data and Registry, Nextflow, Snakemake, programmatic execution, and Latch MCP. Use when authoring or deploying Latch workflows, configuring resources or interfaces, moving data, integrating Registry, or launching and…