Agent skill · Data & Analytics

bio-flow-cytometry-doublet-detection

Detect and remove doublets from flow and mass cytometry data. Covers FSC/SSC gating and computational doublet detection methods. Use when filtering out cell aggregates before clustering or quantitative analysis.

FreedomIntelligencegithub.com/FreedomIntelligenceGitHub ↗
claude-code
Install
npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill bio-flow-cytometry-doublet-detection --agent claude-code

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

Facts
Files in the skill folder: 3
SKILL.md size: 8 KB
Bundled scripts: none
Path: skills/bio-flow-cytometry-doublet-detection/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,909
Language: Python
Read our review of the source →

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: flowCore 2.14+, ggplot2 3.5+ 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. # Doublet Detection **"Remove doublets from my flow cytometry data"** → Detect and filter out cell aggregates using FSC-A/FSC-H gating or computational methods before clustering or quantitative analysis. - R: `flowCore` rectangular gates on FSC-A vs FSC-H ## FSC-A vs FSC-H Gating (Standard Method) ```r library(flowCore) library(ggcyto) # Load data fs <- read.flowSet(list.files('data/', pattern = '\\.fcs$', full.names = TRUE)) # FSC-A vs FSC-H for doublet discrimination # Singlets fall on diagonal, doublets have higher FSC-A for given FSC-H # Manual rectangular gate singlet_gate <- rectangleGate( filterId = 'singlets', 'FSC-A' = c(50000, 250000), 'FSC-H' = c(50000, 250000) ) # Or use polygon gate for diagonal singlet_polygon <- polygonGate( filterId = 'singlets', .gate = data.frame( 'FSC-A'

What's inside
Steps it walks through
  1. Version Compatibility
  2. FSC-A vs FSC-H Gating (Standard Method)
  3. Automated Singlet Gating with flowDensity
  4. flowAI Quality Control
  5. FSC-A/FSC-W Method (Width Parameter)
  6. Ratio-Based Doublet Detection
  7. SSC-Based Doublet Detection
  8. CyTOF Doublet Detection
  9. CATALYST Workflow with Doublet Removal
  10. Batch Processing
  11. Visualization
  12. Related Skills
Ships with 2 files
  • examples/detect_doublets.R
  • usage-guide.md
More from OpenClaw-Medical-Skills
All skills →
About this skill
What does the bio-flow-cytometry-doublet-detection skill do?

Detect and remove doublets from flow and mass cytometry data. Covers FSC/SSC gating and computational doublet detection methods. Use when filtering out cell aggregates before clustering or quantitative analysis.

How do I install it?

Run `npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill bio-flow-cytometry-doublet-detection --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 FreedomIntelligence/OpenClaw-Medical-Skills, a repository with 2,909 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