bio-de-visualization
Visualize differential expression results using DESeq2/edgeR built-in functions. Covers plotMA, plotDispEsts, plotCounts, plotBCV, sample di…
Maintainer K-Dense Inc. · Last updated April 1, 2026
NetworkX is a Python package for creating, manipulating, and analy.
Original source
https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/networkx
Skill Snapshot
Source Doc
Invoke this skill when tasks involve:
NetworkX supports four main graph types:
Create graphs by:
import networkx as nx
## Add edges
G.add_edge(1, 2)
G.add_edges_from([(1, 3), (2, 4)])
G.add_edge(1, 4, weight=0.8, relation='interacts')
Reference: See references/graph-basics.md for comprehensive guidance on creating, modifying, examining, and managing graph structures, including working with attributes and subgraphs.
Related skills
Visualize differential expression results using DESeq2/edgeR built-in functions. Covers plotMA, plotDispEsts, plotCounts, plotBCV, sample di…
Visualize enrichment results using enrichplot package functions. Use when creating publication-quality figures from clusterProfiler results.…
Reactome pathway enrichment using ReactomePA package. Use when analyzing gene lists against Reactome's curated peer-reviewed pathway databas…
Export publication-quality figures in PDF/SVG/TIFF at specified DPI.