Agent skill · Testing & QA

bio-de-edger-basics

Perform differential expression analysis using edgeR in R/Bioconductor. Use for analyzing RNA-seq count data with the quasi-likelihood F-test framework, creating DGEList objects, normalization, dispersion estimation, and statistical testing. Use when performing DE analysis with edgeR.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill edger-basics --agent claude-code

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

Facts
Files in the skill folder: 5
SKILL.md size: 14 KB
Bundled scripts: none
Path: skills/bioskills/edger-basics/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+, edgeR 4.0+, limma 3.58+, scanpy 1.10+ Before using code patterns, verify installed versions match. If versions differ: - R: `packageVersion('<pkg>')` then `?function_name` to verify parameters If code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying. # edgeR Basics Differential expression analysis using edgeR's quasi-likelihood framework for RNA-seq count data. ## Required Libraries ```r library(edgeR) library(limma) # For design matrices and voom ``` ## Installation ```r if (!require('BiocManager', quietly = TRUE)) install.packages('BiocManager') BiocManager::install('edgeR') ``` ## Creating DGEList Object **Goal:** Construct an edgeR container from a count matrix with sample group information. **Approach:** Wrap raw counts and group labels into a DGEList object for normalization and testing. **"Load my RNA-seq counts into edgeR"** → Create a DGEList from a count matrix with sample group assignments and optional gene annotations. ```r # From count matrix # counts: matrix with genes as rows, samples as columns #

What's inside
Steps it walks through
  1. Version Compatibility
  2. Required Libraries
  3. Installation
  4. Creating DGEList Object
  5. Standard edgeR Workflow (Quasi-Likelihood)
  6. Filtering Low-Expression Genes
  7. Normalization Methods
  8. Design Matrices
  9. Dispersion Estimation
  10. Quasi-Likelihood Testing
  11. Making Contrasts
  12. Accessing Results
  13. Result Columns
  14. Alternative: Exact Test (Classic edgeR)
Ships with 4 files
  • examples/basic_workflow.R
  • examples/batch_correction.R
  • examples/contrasts.R
  • usage-guide.md
More from awesome-bio-agent-skills
All skills →
About this skill
What does the bio-de-edger-basics skill do?

Perform differential expression analysis using edgeR in R/Bioconductor. Use for analyzing RNA-seq count data with the quasi-likelihood F-test framework, creating DGEList objects, normalization, dispersion estimation, and statistical testing. Use when performing DE analysis with edgeR.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill edger-basics --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