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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill rnaseq-to-de-gptomics-bioskills-276fb1a5 --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Path: skills/analysis/rnaseq-to-de-gptomics-bioskills-276fb1a5/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

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

From the SKILL.md

# RNA-seq to Differential Expression Workflow 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] -----> Volcano, MA, heatmaps | v Significant gene list ``` ## Primary Path: Salmon + DESeq2 ### Step 1: Quality Control with fastp ```bash # Single sample fastp -i sample_R1.fastq.gz -I sample_R2.fastq.gz \ -o sample_R1.trimmed.fq.gz -O sample_R2.trimmed.fq.gz \ --detect_adapter_for_pe \ --qualified_quality_phred 20 \ --length_required 35 \ --html sample_fastp.html # Batch processing for sample in sample1 sample2 sample3; do fastp -i ${sample}_R1.fastq.gz -I ${sample}_R2.fastq.gz \ -o trimmed/${sample}_R1.fq.gz -O trimmed/${sample}_R2.fq.gz \ --detect_adapter_for_pe \ --html qc/${sample}_fastp.html done ``` **QC Checkpoint 1:** Check fastp reports - Q30 bases >80% - Adapter content <5% - Duplication rate reasonable for library type ### Step 2: Salmon Quantification ```bash # Build index (onc

What's inside
Steps it walks through
  1. Workflow Overview
  2. Primary Path: Salmon + DESeq2
  3. Step 1: Quality Control with fastp
  4. Step 2: Salmon Quantification
  5. Step 3: Import with tximport
  6. Step 4: DESeq2 Analysis
  7. Step 5: Visualization and Export
  8. Alternative Path: STAR + featureCounts + DESeq2
  9. Step 2 Alternative: STAR Alignment
  10. Step 3 Alternative: featureCounts
  11. Step 4 Alternative: Load Counts Directly
  12. Parameter Recommendations
  13. Troubleshooting
  14. Complete Bash Pipeline Script
Ships with 1 file
  • metadata.json
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 claude-skill-registry
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 majiayu000/claude-skill-registry --skill rnaseq-to-de-gptomics-bioskills-276fb1a5 --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 majiayu000/claude-skill-registry, a repository with 534 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