adaptyv
How to use the Adaptyv Bio Foundry API and Python SDK for protein experiment design, submission, and results retrieval. Use this skill whenever the user…
End-to-end bulk RNA-seq orchestrator — takes raw FASTQ reads through QC and trimming (FastQC, fastp/Trim Galore), alignment and quantification (STAR, Salmon, featureCounts), assembles a gene-level counts matrix, then hands off to differential expression (pydeseq2), pathway/GSEA
$ npx -y skills add K-Dense-AI/scientific-agent-skills --skill bulk-rnaseq --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/bulk-rnaseqContext preview
The summary Claude sees to decide when to auto-load this skill.
End-to-end bulk RNA-seq orchestrator — takes raw FASTQ reads through QC and trimming (FastQC, fastp/Trim Galore), alignment and quantification (STAR, Salmon, featureCounts), assembles a gene-level counts matrix, then hands off to differential expression (pydeseq2), pathway/GSEA
name: bulk-rnaseq description: End-to-end bulk RNA-seq orchestrator — takes raw FASTQ reads through QC and trimming (FastQC, fastp/Trim Galore), alignment and quantification (STAR, Salmon, featureCounts), assembles a gene-level counts matrix, then hands off to differential expression (pydeseq2), pathway/GSEA enrichment (pathway-enrichment), and publication figures (scientific-visualization). Use whenever the user has bulk RNA-seq reads or quant output and wants a complete, reproducible differential-expression workflow — e.g. "analyze my RNA-seq", "FASTQ to DESeq2", "run nf-core/rnaseq", "STAR/Salmon quantification", "build a counts matrix for DESeq2", or "go from reads to differentially expressed genes and enriched pathways". Routes between an nf-core/rnaseq (Nextflow) path and a standalone STAR/Salmon path, and covers experimental design, strandedness, and QC gates. For single-cell RNA-seq use the scanpy skill instead. license: MIT metadata: version: "1.1" skill-author: K-Dense Inc.
This skill orchestrates a complete, **defensible** bulk RNA-seq differential-expression study, from raw sequencing reads to enriched pathways and figures. It is a router, not a reimplementation: most stages already have dedicated skills in this repo, and this skill connects them in the right order, fills the one real gap (raw reads → a gene-level counts matrix), and enforces the design and QC decisions that determine whether the final result is trustworthy.
"Defensible" means three things, applied throughout:
The pipeline is: **FastQC/trim → align/quant (STAR/Salmon) → counts → DE (pydeseq2) → enrichment (pathway-enrichment) → figures**.
Use this skill when the user wants to:
This is **bulk** RNA-seq (samples = biological specimens). For single-cell/nuclei data use `scanpy`; for the DE statistics alone use `pydeseq2`; for enrichment alone use `pathway-enrichment`.
flowchart TD
fastq["Raw FASTQ + samplesheet"] --> qc["FastQC + MultiQC"]
qc --> trim["Trim: fastp / Trim Galore"]
trim --> align["Align + quant: STAR and/or Salmon"]
align --> counts["Gene-level counts matrix"]
counts --> de["Differential expression"]
de --> enrich["Pathway / GSEA enrichment"]
de --> fig["Figures"]
enrich --> fig
nfcore["nf-core/rnaseq via nextflow skill"] -.->|"path A"| align
manual["Standalone recipes (this skill)"] -.->|"path B"| align
bridge["build_counts_matrix.py (this skill)"] -.-> counts
pydeseq2skill["pydeseq2 skill"] -.-> de
pwskill["pathway-enrichment skill"] -.-> enrich
vizskill["scientific-visualization skill"] -.-> figThe reads → counts stage can be run two ways. They produce equivalent gene counts; choose by context, then stay on that path.
| Use **Path A — `nf-core/rnaseq`** when… | Use **Path B — standalone tools** when… | |------------------------------------------|------------------------------------------| | You want the field-standard, audited, citable pipeline with one command | You have a few samples and want to learn/inspect each step | | Many samples, or you'll scale to HPC/cloud | No Nextflow/containers available, or a constrained environment | | Reproducibility and a full MultiQC report matter most | You need a non-standard step the pipeline doesn't expose | | → Drive it through the **`nextflow`** skill | → Follow `references/upstream-manual.md` |
When unsure, prefer **Path A**: `nf-core/rnaseq` already wires together FastQC → trimming → STAR/Salmon → quantification → tximport → MultiQC with sensible, reviewed defaults, which is the most defensible option. Path B exists for transparency and constrained setups.
Both paths converge on a **gene-level counts matrix**, after which the workflow is identical.
# This skill's glue (bridge + handoffs) — Python uv pip install pytximport pandas # Downstream skills install their own deps: # pydeseq2 skill -> uv pip install pydeseq2 # pathway-enrichment skill -> uv pip install gseapy gprofiler-official # Path A (nf-core): only Nextflow + a container engine are needed — see the `nextflow` skill. # Path B (standalone tools): install via bioconda. Pin versions for reproducibility. conda create -n rnaseq -c bioconda -c conda-forge \ fastqc fastp trim-galore "star=2.7.11b" "salmon=1.10.3" subread multiqc
Record the exact versions you use (pipeline revision, tool versions, reference genome + annotation release) — they belong in the methods section and make the analysis reproducible.
# 0. Validate the samplesheet first (catches the most common failures early) python scripts/validate_samplesheet.py --samplesheet samplesheet.csv # 1. Smoke-test the environment with tiny bundled data nextflow run nf-core/rnaseq -r 3.26.0 -profile test,docker --outdir test_results # 2. Real run: pin the revision, pick an aligner, pass a samplesheet + reference nextflow run nf-core/rnaseq -r 3.26.0 \ -profile docker \ --input samplesheet.csv \ --genome GRC
🔔 Claude Scientific Skills is now Scientific Agent Skills. Same skills, broader compatibility — now works with any AI agent that supports the open Agent Skills standard, not just Claude.
How to use the Adaptyv Bio Foundry API and Python SDK for protein experiment design, submission, and results retrieval. Use this skill whenever the user…
This skill should be used for time series machine learning tasks including classification, regression, clustering, forecasting, anomaly detection,…
Plan, execute, and document validation, verification, and transfer of analytical procedures under the governing framework - ICH Q2(R2) and Q14, USP…
Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data…
Autonomously improve a real artifact (code, training recipe, agent harness, data pipeline, prompt) against an objective and an evaluator, using Hypothesis Tree…
Infer gene regulatory networks (GRNs) from gene expression data using scalable algorithms (GRNBoost2, GENIE3). Use when analyzing transcriptomics data (bulk…