bio-de-results
Extract, filter, annotate, and export differential expression results from DESeq2 or edgeR. Use for identifying significant genes, applying multiple testing corrections, adding gene annotations, and preparing results for downstream analysis. Use when filtering and exporting DE analysis results.
npx skills add majiayu000/claude-skill-registry --skill de-results-gptomics-bioskills-2 --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# DE Results Extract, filter, and export differential expression results. ## Required Libraries ```r library(DESeq2) # or library(edgeR) library(dplyr) # For data manipulation ``` ## Extracting DESeq2 Results ```r # Basic results res <- results(dds) # With specific alpha (adjusted p-value threshold) res <- results(dds, alpha = 0.05) # With log fold change shrinkage res <- lfcShrink(dds, coef = 'condition_treated_vs_control', type = 'apeglm') # Convert to data frame res_df <- as.data.frame(res) res_df$gene <- rownames(res_df) ``` ## Extracting edgeR Results ```r # Get all results results <- topTags(qlf, n = Inf)$table # Add gene column results$gene <- rownames(results) ``` ## Filtering Significant Genes ### By Adjusted P-value ```r # DESeq2 sig_genes <- subset(res, padj < 0.05) # edgeR sig_genes <- subset(results, FDR < 0.05) # Using dplyr sig_genes <- res_df %>% filter(padj < 0.05) %>% arrange(padj) ``` ### By Fold Change ```r # Absolute log2 fold change > 1 (2-fold change) sig_genes <- subset(res, padj < 0.05 & abs(log2FoldChange) > 1) # Up-regulated only up_genes <- subset(res, padj < 0.05 & log2FoldChange > 1) # Down-regulated only down_genes <- subset(res, padj < 0.05 & log2Fol
- Required Libraries
- Extracting DESeq2 Results
- Extracting edgeR Results
- Filtering Significant Genes
- By Adjusted P-value
- By Fold Change
- Combined Filters
- Ordering Results
- Summary Statistics
- Adding Gene Annotations
- From Bioconductor Annotation Package
- From BioMart
- From Custom File
- Exporting Results
What does the bio-de-results skill do?
Extract, filter, annotate, and export differential expression results from DESeq2 or edgeR. Use for identifying significant genes, applying multiple testing corrections, adding gene annotations, and preparing results for downstream analysis. Use when filtering and exporting DE analysis results.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill de-results-gptomics-bioskills-2 --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.
