Agent skill · Workflow & Productivity

bio-workflows-rnaseq-to-de

End-to-end RNA-seq workflow from FASTQ files to differential expression results. Covers QC, quantification (Salmon or STAR+featureCounts), and DESeq2 analysis with visualization. Use when running RNA-seq from FASTQ to DE results.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeships scriptsNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill rnaseq-to-de --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 4
SKILL.md size: 10 KB
Bundled scripts: yes
Path: skills/bioskills/rnaseq-to-de/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 135
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

## Version Compatibility Reference examples tested with: DESeq2 1.42+, STAR 2.7.11+, Salmon 1.10+, Subread 2.0+, fastp 0.23+, ggplot2 3.5+, kallisto 0.50+, scanpy 1.10+ Before using code patterns, verify installed versions match. If versions differ: - R: `packageVersion('<pkg>')` then `?function_name` to verify parameters - CLI: `<tool> --version` then `<tool> --help` to confirm flags If code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying. # RNA-seq to Differential Expression Workflow **"Run RNA-seq analysis from FASTQ to differentially expressed genes"** → Orchestrate fastp QC, STAR/HISAT2 alignment, featureCounts/Salmon quantification, DESeq2 differential expression, shrinkage estimation, and results visualization (volcano, MA plots). Complete pipeline from raw FASTQ files to differential expression results. ## Workflow Overview ``` FASTQ files | v [1. QC & Trimming] -----> fastp | v [2. Quantification] ----> Salmon (recommended) or STAR + featureCounts | v [3. Import to R] -------> tximport (for Salmon) or direct counts | v [4. DE Analysis] -------> DESeq2 | v [5. Visualization

What's inside
Steps it walks through
  1. Version Compatibility
  2. Workflow Overview
  3. Primary Path: Salmon + DESeq2
  4. Step 1: Quality Control with fastp
  5. Step 2: Salmon Quantification
  6. Step 3: Import with tximport
  7. Step 4: DESeq2 Analysis
  8. Step 5: Visualization and Export
  9. Alternative Path: STAR + featureCounts + DESeq2
  10. Step 2 Alternative: STAR Alignment
  11. Step 3 Alternative: featureCounts
  12. Step 4 Alternative: Load Counts Directly
  13. Parameter Recommendations
  14. Troubleshooting
Ships with 3 files
  • examples/salmon_deseq2_workflow.R
  • examples/star_deseq2_workflow.sh
  • usage-guide.md
Commands it runs
Single sample
fastp -i sample_R1.fastq.gz -I sample_R2.fastq.gz \
Batch processing
for sample in sample1 sample2 sample3; do
fastp -i ${sample}_R1.fastq.gz -I ${sample}_R2.fastq.gz \
done
Build index (once per transcriptome)
salmon index -t transcriptome.fa -i salmon_index -k 31
Quantify each sample
salmon quant -i salmon_index \
More from awesome-bio-agent-skills
All skills →
About this skill
What does the bio-workflows-rnaseq-to-de skill do?

End-to-end RNA-seq workflow from FASTQ files to differential expression results. Covers QC, quantification (Salmon or STAR+featureCounts), and DESeq2 analysis with visualization. Use when running RNA-seq from FASTQ to DE results.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill rnaseq-to-de --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From BioTender-max/awesome-bio-agent-skills, a repository with 135 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going