Agent skill · Data & Analytics

bio-gene-regulatory-networks-coexpression-networks

Build weighted gene co-expression networks to identify modules of co-regulated genes and relate them to phenotypes using WGCNA and CEMiTool. Detects hub genes and module-trait relationships from bulk or single-cell expression data. Use when finding co-expression modules, identifying hub genes, or relating gene networks to clinical or experimental variables.

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

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

Facts
Files in the skill folder: 4
SKILL.md size: 9 KB
Bundled scripts: none
Path: skills/bioskills/coexpression-networks/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: WGCNA 1.72+, CEMiTool 1.26+ 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. # Co-expression Networks **"Find co-expression modules and hub genes from my RNA-seq data"** → Build a weighted gene co-expression network, detect modules of co-regulated genes via hierarchical clustering, and correlate modules with sample traits to identify hub genes. - R: `WGCNA::blockwiseModules()` for network construction and module detection - R: `CEMiTool::cemitool()` for automated co-expression analysis Build weighted gene co-expression networks to identify modules of co-regulated genes and relate them to sample traits. ## WGCNA Workflow ### Required Libraries ```r library(WGCNA) options(stringsAsFactors = FALSE) allowWGCNAThreads() ``` ### Input Preparation ```r # Expression matrix: genes as columns, samples as rows (WGCNA convention) expr_data <- read.csv('normalized_counts.csv', r

What's inside
Steps it walks through
  1. Version Compatibility
  2. WGCNA Workflow
  3. Required Libraries
  4. Input Preparation
  5. Soft-Thresholding Power Selection
  6. Network Construction and Module Detection
  7. Module Eigengenes and Trait Relationships
  8. Hub Gene Identification
  9. Export for Cytoscape
  10. CEMiTool (Automated Analysis)
  11. hdWGCNA (Single-Cell)
  12. PyWGCNA (Python Alternative)
  13. Statistical Considerations
  14. Related Skills
Ships with 3 files
  • examples/cemitool_quick.R
  • examples/wgcna_analysis.R
  • usage-guide.md
More from awesome-bio-agent-skills
All skills →
About this skill
What does the bio-gene-regulatory-networks-coexpression-networks skill do?

Build weighted gene co-expression networks to identify modules of co-regulated genes and relate them to phenotypes using WGCNA and CEMiTool. Detects hub genes and module-trait relationships from bulk or single-cell expression data. Use when finding co-expression modules, identifying hub genes, or relating gene networks to clinical or experimental variables.

How do I install it?

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