Read and manipulate Flow Cytometry Standard (FCS) files. Covers loading data, accessing parameters, and basic data exploration. Use when loading and inspecting flow or mass cytometry data before preprocessing.
Reference examples tested with: flowCore 2.14+, flowWorkspace 4.14+, CytoML 2.14+; Python flowkit 1.1+, readfcs 1.1+.
Before using code patterns, verify installed versions match. If versions differ:
packageVersion('<pkg>') then ?function_name to verify parameterspip show <package> then help(module.function) to check signaturesIf code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying.
"Load my FCS files and inspect the channels" -> Parse FCS format into event matrix + parameter metadata, map detector channels to antibodies, and choose a reader appropriate to the instrument and downstream ecosystem.
flowCore::read.FCS() / read.flowSet() -> flowFrame/flowSet; CytoML::flowjo_to_gatingset() for FlowJo workspacesflowkit.Sample() (full workflow) or readfcs.read() -> AnnData (scanpy/scverse bridge)flowCore::read.FCS() defaults to transformation = "linearize", which APPLIES the $PnE log-amplification scaling on read. Two pipelines reading "the same raw FCS" (flowCore default vs fcsparser/transformation=FALSE) therefore return different numbers, and a compensation matrix computed on one will silently mismatch the other. For any preprocessing pipeline that will compensate and transform downstream, read with transformation = FALSE (or NULL) to get the genuinely raw values, and set truncate_max_range = FALSE so out-of-$PnR events (common on CyTOF and some digital instruments) are not silently clipped. Decide the read settings deliberately; they are not nuisance defaults.
| Keyword | Meaning | Decision-relevant nuance |
|---------|---------|--------------------------|
| $PnE | amplification type "decades,offset" | "0,0" = linear; FCS 3.1 FORBIDS log-stored floats (a float param must be "0,0"); log $PnE survives only on legacy integer analog-log data |
| $DATATYPE | I (uint) / F (float) / D (double) / A (ASCII, deprecated 3.1) | FCS 3.2 allows MIXED types per parameter via $PnDATATYPE (integer Time + float fluorescence) |
| $PnR | parameter range | for integers defines the bit mask via next power of two ($PnR=1024 -> 10-bit), NOT a value clamp |
| $SPILLOVER | standardized compensation matrix (3.1+) | digital BD instruments wrote non-standard SPILL (no $); 3.0 $COMP stored a matrix WITHOUT naming parameters (ambiguous -> why $SPILLOVER exists) |
| $TIMESTEP | seconds per Time-channel unit | the master axis for all time-based QC; missing/wrong $TIMESTEP silently breaks flow-rate/drift checks |
FCS standards: 3.0 (Seamer 1997 Cytometry 28:118), 3.1 (Spidlen 2010 Cytometry A 77:97), 3.2 (Spidlen 2021 Cytometry A 99:100). Area/Height/Width = pulse integral/peak/duration; FSC-A vs FSC-H is the doublet axis. CyTOF channels are <Metal><Mass>Di (e.g. Yb176Di) and report dual counts (pulse-counting at low signal, intensity at high).
| Reader | Language | What it does | When to use |
|--------|----------|--------------|-------------|
| flowCore::read.FCS/read.flowSet | R | core FCS -> flowFrame/flowSet | the default for any R/Bioconductor pipeline |
| flowWorkspace GatingSet | R | gated hierarchy container | when carrying gates/populations |
| CytoML | R | FlowJo (wsp) / Cytobank / Diva import-export | round-tripping a manual analysis (Finak 2018 Cytometry A 93:1189) |
| flowkit (Session/Sample) | Python | FCS + GatingML 2.0 + FlowJo wsp + compensation/transforms | Python pipelines, FlowJo interop (White 2021 Front Immunol 12:768541) |
| readfcs | Python | FCS -> AnnData | bridge to scanpy/scverse and the single-cell categories |
| fcsparser / FlowCal | Python | low-level reader / reader + MEF calibration | quick parse; FlowCal for MESF/MEF work |
Goal: Read one file (or a directory) raw, inspect parameters, and map channels to antibodies.
Approach: Read with transformation=FALSE, truncate_max_range=FALSE; the channel->antibody map lives in pData(parameters(fcs)) (name = detector, desc = antibody).
library(flowCore)
fcs <- read.FCS('sample.fcs', transformation = FALSE, truncate_max_range = FALSE)
params <- pData(parameters(fcs)) # name (detector), desc (antibody), range, minRange
channel_map <- setNames(params$desc, params$name)
fs <- read.flowSet(list.files('data', pattern = '\\.fcs$', full.names = TRUE),
transformation = FALSE, truncate_max_range = FALSE)
expr <- exprs(fcs) # cells x channels
Goal: Retrieve the acquisition-recorded spillover matrix, handling the three keyword conventions.
Approach: Try $SPILLOVER, then the legacy SPILL, then $COMP; flowCore::spillover() resolves the standard slots.
kw <- keyword(fcs)
spill <- kw$`$SPILLOVER`
if (is.null(spill)) spill <- kw$SPILL # digital BD convention
if (is.null(spill)) spill <- kw$`$COMP` # legacy FCS 3.0 (unnamed columns)
Goal: Read FCS in a Python pipeline, either for FlowKit's compensation/gating or as an AnnData for scanpy.
Approach: flowkit.Sample exposes raw/compensated/transformed events as DataFrames; readfcs.read returns AnnData with channels in var.
import flowkit as fk
import readfcs
sample = fk.Sample('sample.fcs')
events = sample.as_dataframe(source='raw') # source in {'raw','comp','xform'}
adata = readfcs.read('sample.fcs') # AnnData; adata.var has channel + antibody names
Goal: Standardize channel names to antibodies and attach sample-level metadata for downstream tools.
Approach: Replace blank desc with name; attach a pData table keyed by sampleNames(fs) (CATALYST/diffcyt require this).
new <- ifelse(is.na(params$desc) | params$desc == '', params$name, params$desc)
colnames(fcs) <- new
fcs_markers <- fcs[, c('CD4', 'CD8', 'CD3')] # subset channels
write.FCS(fcs, 'out.fcs')
pData(fs) <- data.frame(name = sampleNames(fs),
condition = c('Control','Control','Treatment','Treatment'),
patient = c('P1','P2','P1','P2'),
row.names = sampleNames(fs))
Trigger: read.FCS('x.fcs') with default args. Mechanism: transformation="linearize" applies $PnE scaling. Symptom: values differ from fcsparser; compensation matrix mismatch. Fix: transformation = FALSE.
Trigger: instrument wrote values above $PnR (common CyTOF). Mechanism: truncate_max_range=TRUE (default) clamps them. Symptom: a ceiling artifact at the channel max. Fix: truncate_max_range = FALSE.
Trigger: channels like FSC-A, Pacific Blue-A. Mechanism: hyphens/spaces are not syntactic R names. Symptom: formula/gating errors. Fix: alter.names = TRUE on read.
Trigger: looking for FlowJo import in flowWorkspace. Mechanism: parsing lives in CytoML. Symptom: function-not-found. Fix: CytoML::open_flowjo_xml() -> flowjo_to_gatingset(); only .wsp (FlowJo 10+), not legacy .jo.
| Error / symptom | Cause | Solution |
|-----------------|-------|----------|
| exprs() numbers differ across tools | default linearize | read with transformation=FALSE everywhere |
| spillover keyword is NULL | instrument used SPILL/$COMP | try all three keyword names |
| editing exprs(ff) corrupts ranges | direct reassignment skips parameters() update | use transform/Subset workflows |
| readfcs compensation not applied | matrix names don't match var_names | align channel names before relying on it |
npx skills add GPTomics/bio-flow-cytometry-fcs-handling下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer