Use this skill to build a deterministic toy biological interaction graph and summarize basic network properties with NetworkX.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add ma-compbio-lab/SkillFoundry --skill networkx-graph-construction-starter --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Networkx Graph Construction Starter?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/ma-compbio-lab-networkx-graph-construction-starter)More formats (shields.io, HTML) on the badges page.
# NetworkX Graph Construction Starter
Use this skill to build a deterministic toy biological interaction graph and summarize basic network properties with NetworkX.
## What it does
- Loads a small TSV edge list representing a pathway-like interaction graph.
- Builds a NetworkX graph with edge attributes.
- Summarizes node and edge counts, connected components, degree centrality, and a shortest path example.
- Writes compact JSON that can feed downstream reporting or agent-planning steps.
## When to use it
- You need a local starter for graph-construction workflows in systems biology.
- You want a deterministic network summary before moving on to propagation, enrichment, or causal-network tasks.
## Example
```bash
python3 skills/systems-biology/networkx-graph-construction-starter/scripts/run_networkx_graph_construction.py \
--input skills/systems-biology/networkx-graph-construction-starter/examples/toy_pathway_edges.tsv \
--source-node EGFR \
--target-node STAT3 \
--out scratch/networkx/graph_summary.json
```
## Verification
- Skill-local tests: `python3 -m unittest discover -s skills/systems-biology/networkx-graph-construction-starter/tests -p 'test_*.py'`
- Repository smoke: `python3 -m unittest tests.smoke.test_phase25_agent_clinical_proteomics_graph_skills -v`
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!