Agent skill · Data & Analytics

bio-data-visualization-circos-plots

Build circular genome visualizations using circlize (R), pyCirclize (Python), or Circos (Perl CLI) with ideogram tracks, multi-data tracks (scatter, histogram, heatmap), chord/link arcs for interactions, and explicit circos.clear() between plots. Covers when circular is appropriate vs when Cartesian wins (Cleveland-McGill 1984), karyograms, and chromosome adjacency in chord diagrams. Use when adjacency on the circle conveys meaning — chromosome-level overview, structural variants, Hi-C interactions, cross-genome comparisons.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeships scriptsNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill circos-plots --agent claude-code

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

Facts
Files in the skill folder: 4
SKILL.md size: 13 KB
Bundled scripts: yes
Path: skills/bioskills/circos-plots/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: circlize 0.4.16+ (R), pyCirclize 1.4+ (Python), Circos 0.69-9 (Perl CLI), ComplexHeatmap 2.18+ (uses circlize for color mapping). Before using code patterns, verify installed versions match. If versions differ: - R: `packageVersion('<pkg>')` then `?function_name` - Python: `pip show <package>` then `help(module.function)` If code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying. # Circular Genome Plots (Circos) **"Make a circos plot"** -> Render genome chromosomes around a circle with stacked tracks (histogram, scatter, heatmap) and arcs/chords showing interactions. Krzywinski 2009 *Genome Res* 19:1639 introduced the genre for genome-scale comparative views. The single decision that matters: **does the circular layout convey meaning that Cartesian cannot?** - R: `circlize::circos.initializeWithIdeogram` + `circos.genomicTrack*` (Gu 2014) - Python: `pyCirclize.Gcircle` - CLI: Circos (Perl); config-driven; most flexible but steepest learning ## The Single Most Important Modern Insight -- Circular Plots Often Hide What Cartesian

What's inside
Steps it walks through
  1. Version Compatibility
  2. circlize (R) — Modern Default
  3. The circos.clear() Trap
  4. pyCirclize (Python)
  5. Circos CLI (Perl) — Most Powerful, Steepest Curve
  6. Decision Tree by Use Case
  7. Ideogram + Karyogram Without Circos
  8. Per-Method Failure Modes
  9. circos.clear() forgotten in a loop
  10. Using circular when Cartesian would be better
  11. Too many links produce a black blob
  12. Sector ordering arbitrary
  13. Wrong species ideogram
  14. Ideogram covers data track
Ships with 3 files
  • examples/circos_basic.R
  • examples/circos_basic.py
  • usage-guide.md
Commands it runs
circos -conf circos.conf -outputfile output.png
More from awesome-bio-agent-skills
All skills →
About this skill
What does the bio-data-visualization-circos-plots skill do?

Build circular genome visualizations using circlize (R), pyCirclize (Python), or Circos (Perl CLI) with ideogram tracks, multi-data tracks (scatter, histogram, heatmap), chord/link arcs for interactions, and explicit circos.clear() between plots. Covers when circular is appropriate vs when Cartesian wins (Cleveland-McGill 1984), karyograms, and chromosome adjacency in chord diagrams. Use when adjacency on the circle conveys meaning — chromosome-level overview, structural variants, Hi-C interactions, cross-genome comparisons.

How do I install it?

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