Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

calcium-imaging-analysis-guide钙成像分析指南

Agent Skill

calcium-imaging-analysis-guide 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

27,317

周安装

829

GitHub Stars

18

下载量

9,004
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:calcium-imaging-analysis-guide(钙成像分析指南)
来源仓库:https://github.com/haoxuanlithuai/awesome_cognitive_and_neuroscience_skills
仓库路径:skills/calcium-imaging-analysis-guide
安装命令:
npx skills add https://github.com/haoxuanlithuai/awesome_cognitive_and_neuroscience_skills --skill 'Calcium Imaging Analysis Guide'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/haoxuanlithuai/awesome_cognitive_and_neuroscience_skills --skill 'Calcium Imaging Analysis Guide'

简介

calcium-imaging-analysis-guide 编码了钙成像数据分析的专业方法知识,涵盖去卷积参数选择、神经质污染校正等关键决策点。

  • 适用于光学神经生理数据分析、预处理流程设计与信号解释指导。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合具体实验条件调用。
  • 不得替代专业训练,仅作为辅助参考用于避免常见错误假设。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Calcium Imaging Analysis Guide

Purpose

This skill encodes expert methodological knowledge for analyzing calcium imaging data from fluorescent genetically encoded calcium indicators (GECIs). It covers the domain-specific decisions that a general-purpose programmer or data scientist would get wrong without specialized training in optical neurophysiology: choosing deconvolution parameters based on indicator kinetics, correcting neuropil contamination, handling modality-specific preprocessing, and interpreting fluorescence signals as neural activity.

When to Use This Skill

  • Designing an analysis pipeline for two-photon, one-photon/miniscope, or fiber photometry data
  • Choosing motion correction strategy for awake behaving animal recordings
  • Selecting ROI detection method for your preparation density and imaging modality
  • Setting deconvolution parameters matched to your calcium indicator
  • Evaluating whether extracted signals reflect genuine single-neuron activity
  • Troubleshooting common artifacts: photobleaching, neuropil contamination, motion

Research Planning Protocol

Before executing the domain-specific steps below, you MUST:

  1. State the research question — What neural activity question is this calcium imaging analysis addressing?
  2. Justify the method choice — Why calcium imaging (not electrophysiology, fMRI, etc.)? What alternatives were considered?
  3. Declare expected outcomes — What activity patterns would support vs. refute the hypothesis?
  4. Note assumptions and limitations — What does this method assume? Where could it mislead (e.g., indicator kinetics, neuropil)?
  5. Present the plan to the user and WAIT for confirmation before proceeding.

For detailed methodology guidance, see the research-literacy skill.

⚠️ Verification Notice

This skill was generated by AI from academic literature. All parameters, thresholds, and citations require independent verification before use in research. If you find errors, please open an issue.

Decision Tree: Which Pipeline for Your Modality

What is your imaging modality?
 |
 +-- Two-photon (2P) microscopy
 | |
 | +-- Sparse labeling (Cre-dependent, cell-type specific)?
 | | --> Suite2P or CaImAn with standard CNMF
 | | Neuropil coefficient ~0.7 (Chen et al., 2013)
 | |
 | +-- Dense labeling (pan-neuronal)?
 | --> Suite2P with increased max_overlap (>=0.75)
 | or CaImAn CNMF with careful merge parameters
 | Consider soma-targeted indicators (Chen et al., 2020)
 |
 +-- One-photon (1P) / miniscope
 | |
 | --> CNMF-E (Zhou et al., 2018) or MIN1PIPE (Lu et al., 2018)
 | Standard CNMF will FAIL: 1P has large structured background
 | that requires explicit background modeling
 | CaImAn supports 1P via CNMF-E mode
 |
 +-- Fiber photometry (population-level)
 |
 --> No single-cell extraction needed
 Use isosbestic channel (405-415 nm) for motion/bleaching correction
 IRLS regression preferred over OLS (Lerner et al., 2015)
 Compute dF/F or z-scored signal

Core Pipeline Steps

Step 1: Motion Correction

Motion correction must precede all other analysis. Uncorrected motion creates false transients and blurs cellular signals.

ParameterRigidNon-RigidSource
Use caseAnesthetized or head-fixed, stableAwake behaving, brain pulsationPnevmatikakis & Giovannucci, 2017
Max shift10% of FOV (default)10% of FOV per patchSuite2P default
Reference frameIterative: top 20 of 300 random framesSame, per-patchPachitariu et al., 2017

Domain judgment:

  • Always use non-rigid registration for awake behaving animals. Brain tissue deforms non-uniformly due to heartbeat, respiration, and locomotion (Dombeck et al., 2007).
  • For 1P/miniscope data, apply spatial high-pass filtering before estimating motion vectors, because the large fluctuating background confounds rigid correlation-based registration (Giovannucci et al., 2019).
  • Inspect registration quality by computing the correlation of each frame to the reference. Frames with correlation below 0.5 indicate severe motion and should be flagged or excluded (expert consensus).
  • Edge pixels that shift out of the FOV during registration should be cropped; ROIs near edges may have unreliable signals.

Step 2: ROI Detection

MethodBest ForToolSource
CNMF / sparse NMF2P, moderate densityCaImAnPnevmatikakis et al., 2016
Clustering + PCA2P, large FOVSuite2PPachitariu et al., 2017
CNMF-E1P / miniscopeCaImAn (1P mode)Zhou et al., 2018
Cellpose (anatomical)Weak functional signal, good morphologySuite2P + CellposeStringer et al., 2021
PCA/ICALegacy, not recommended for dense dataVariousMukamel et al., 2009

Domain judgment:

  • Set expected cell diameter to match your preparation. Cortical pyramidal somata are ~10-15 um; Purkinje cells are ~25 um; granule cells are ~5 um. Converting to pixels depends on your magnification and pixel size.
  • For dense labeling, increase max_overlap to 0.75-1.0 (Suite2P) or adjust merge thresholds (CaImAn). Default overlap rejection discards valid overlapping neurons.
  • Set connected=False when detecting dendrites or axonal boutons, which are not spatially contiguous in 2D projections.
  • Always manually curate detected ROIs. Automated classifiers achieve near-human performance (Giovannucci et al., 2019) but are not perfect, especially for non-standard preparations.

Step 3: Neuropil Contamination Correction

Why this matters: In 2P imaging, each ROI's fluorescence contains signal from the surrounding neuropil (dense mesh of dendrites and axons). Without correction, you will observe artificial correlations between neurons, inflated response amplitudes, and obscured cell-specific tuning (Chen et al., 2013).

Correction formula:

F_corrected = F_raw - r * F_neuropil
ParameterTypical ValueSource
Neuropil coefficient (r)0.7 (range: 0.5-0.8)Chen et al., 2013
Neuropil annulus inner gap2 pixels from ROI borderSuite2P default
Minimum neuropil pixels350Suite2P default

Domain judgment:

  • The coefficient r = 0.7 is an empirically derived average for 2P cortical imaging. It was estimated by measuring fluorescence in blood vessels (which should have zero true signal) relative to surrounding neuropil (Chen et al., 2013).
  • Suite2P estimates r iteratively together with spike deconvolution, minimizing the deconvolution residual. This data-driven approach is preferred over a fixed coefficient.
  • For 1P data, neuropil correction is handled differently: CNMF-E models the background as a low-rank spatiotemporal component rather than a per-ROI annulus (Zhou et al., 2018).
  • Over-subtraction (r too high) produces negative fluorescence values. If you see many negative dF/F values, reduce r.
  • For soma-targeted indicators (e.g., soma-GCaMP6f; Chen et al., 2020), neuropil contamination is reduced but not eliminated.

Step 4: dF/F Computation

Baseline estimation methods:

MethodDescriptionBest ForSource
Rolling percentile (8th)8th percentile over sliding windowContinuous recordings, moderate activityDombeck et al., 2007
Rolling percentile (10th-20th)Higher percentile over sliding windowLower activity preparationsExpert consensus
Exponential fitFit decaying exponential to sessionStrong photobleachingGiovannucci et al., 2019
Mode of distributionHistogram mode of fluorescenceStable baseline, high frame ratePeron et al., 2015

Formula:

dF/F = (F(t) - F0) / F0

Domain judgment:

  • The sliding window for rolling percentile should be 30-60 seconds to capture slow baseline fluctuations without tracking fast transients (expert consensus).
  • Using the mean as baseline inflates dF/F for highly active neurons. Use a low percentile (8th-10th) or the mode instead (Dombeck et al., 2007).
  • Photobleaching causes an exponential decay in baseline fluorescence. If uncorrected, early time points will have artificially low dF/F and late time points artificially high dF/F. Fit and subtract an exponential before computing dF/F (Giovannucci et al., 2019).

Step 5: Deconvolution / Spike Inference

Deconvolution estimates the underlying spike train from the slow calcium fluorescence signal.

AlgorithmTypeSpeedStrengthsSource
OASISModel-based (AR)Very fast (1 us/frame)Online, warm-startable, scalableFriedrich et al., 2017
FOOPSIModel-based (L1)FastSparse, non-negativeVogelstein et al., 2010
CASCADEDeep learningModerateNoise-adaptive, calibrated ratesRupprecht et al., 2021
MLSpikeBayesianSlowPrincipled uncertaintyDeneux et al., 2016

Critical: The deconvolution kernel decay constant (tau) must match your calcium indicator. See references/indicator-parameters.md for the full table.

Indicatortau (decay time) for deconvolutionSource
GCaMP6s~1.0-1.5 sChen et al., 2013
GCaMP6f~0.4 sChen et al., 2013
jGCaMP7f~0.3 sDana et al., 2019
jGCaMP8f~0.2 sZhang et al., 2023
jGCaMP8m~0.14 sZhang et al., 2023
jGCaMP8s~0.2 sZhang et al., 2023

Domain judgment:

  • If tau is wrong, deconvolution is systematically biased. Too long produces sluggish traces; too short produces overshoot artifacts.
  • The kernel is fixed to tau in Suite2P; it is not fit to the data. Always verify your indicator and set tau explicitly.
  • Do NOT threshold deconvolved events to create binary spike trains. This discards magnitude information: a 1-spike event and a 10-spike burst become identical (Pachitariu et al., 2017).
  • Deconvolved amplitudes are in arbitrary units. There is an unknown scaling factor between fluorescence and spike count. Do not interpret amplitudes as absolute firing rates.
  • CASCADE (Rupprecht et al., 2021) can produce calibrated spike rate estimates by resampling ground truth data to match your recording's noise level, but still has systematic errors at low SNR.

Step 6: Quality Metrics for ROI Acceptance

MetricCriterionRationaleSource
SNR (peak transient / noise SD)> 3Below this, transients are indistinguishable from noiseGiovannucci et al., 2019
Skewness of dF/F trace> 0.5Real calcium transients produce right-skewed distributions; noise is symmetricSuite2P classifier
Spatial footprint compactnessCompact, soma-shapedDiffuse or fragmented footprints indicate neuropil or artifactsGiovannucci et al., 2019
Spatial-temporal CNN score> 0.5 (CaImAn)Learned classifier combining shape and activityGiovannucci et al., 2019

Domain judgment:

  • SNR varies dramatically with indicator brightness, expression level, and imaging depth. An SNR of 3 is a minimum; SNR > 5 is preferred for reliable spike inference.
  • Skewness exploits the biophysics: calcium transients have fast rise and slow decay, producing a positively skewed fluorescence distribution. Gaussian noise has skewness near zero.
  • Always examine the spatial footprint. A valid somatic ROI should be roughly circular (10-20 um diameter in cortex). Elongated or multi-lobed footprints often indicate dendrites, overlapping cells, or motion artifacts.

Common Pitfalls

  1. Wrong tau for your indicator: Using GCaMP6s parameters for GCaMP6f data (or vice versa) produces incorrect deconvolution. Always check which indicator was used.
  2. Skipping neuropil correction: Without subtracting r * F_neuropil, apparent correlations between nearby neurons will be inflated by shared neuropil signal. This is the most common error in published calcium imaging analyses.
  3. Using standard CNMF for 1P data: One-photon microscopy has large, spatially structured background fluorescence from out-of-focus tissue. Standard CNMF assumes a sparse background and will fail. Use CNMF-E or MIN1PIPE.
  4. Ignoring photobleaching: GECIs photobleach over minutes to hours. Uncorrected bleaching creates a downward trend that biases dF/F computation and can mask late-session activity.
  5. Motion artifacts in awake animals: Residual motion after correction creates false transients synchronized across neurons (they all move together). Check for correlated artifacts by examining the relationship between motion metrics and neural activity.
  6. Indicator saturation at high firing rates: GECIs have a limited dynamic range. At high firing rates (> 10-20 Hz for GCaMP6s, > 50 Hz for GCaMP8f), the fluorescence signal saturates and underestimates true activity (Chen et al., 2013). Faster indicators saturate at higher rates.
  7. Over-aggressive neuropil subtraction: Setting r too high produces negative fluorescence, especially with bright indicators. Negative dF/F values that exceed noise levels indicate over-subtraction.
  8. Interpreting deconvolved amplitudes as spike counts: The mapping from fluorescence to spike number is nonlinear and depends on indicator expression level, baseline calcium, and imaging conditions. Treat deconvolved traces as relative activity measures.

Minimum Reporting Checklist

Based on community standards (Giovannucci et al., 2019; Pachitariu et al., 2017):

  • Calcium indicator used (name and version, e.g., GCaMP6f, jGCaMP8s)
  • Imaging modality and frame rate (e.g., 2P at 30 Hz, 1P miniscope at 20 Hz)
  • Motion correction method (rigid/non-rigid) and software version
  • ROI detection method and key parameters (cell diameter, threshold)
  • Number of ROIs detected and accepted after curation
  • Neuropil correction method and coefficient used
  • dF/F baseline estimation method and window
  • Deconvolution algorithm and tau value used
  • Quality metrics and acceptance thresholds (SNR, skewness)
  • Number of sessions, animals, and total neurons in final dataset

Key References

  • Chen, T. W., et al. (2013). Ultrasensitive fluorescent proteins for imaging neuronal activity. *Nature*, 499, 295-300.
  • Chen, X., et al. (2020). Soma-targeted imaging of neural circuits by ribosome tethering. *Neuron*, 107(3), 454-469.
  • Dana, H., et al. (2019). High-performance calcium sensors for imaging activity in neuronal populations and microcompartments. *Nature Methods*, 16, 649-657.
  • Deneux, T., et al. (2016). Accurate spike estimation from noisy calcium signals via supervised learning. *Nature Communications*, 7, 12190.
  • Dombeck, D. A., et al. (2007). Imaging large-scale neural activity with cellular resolution in awake, mobile mice. *Neuron*, 56(1), 43-57.
  • Friedrich, J., Zhou, P., & Paninski, L. (2017). Fast online deconvolution of calcium imaging data. *PLOS Computational Biology*, 13(3), e1005423.
  • Giovannucci, A., et al. (2019). CaImAn: An open source tool for scalable calcium imaging data analysis. *eLife*, 8, e38173.
  • Lerner, T. N., et al. (2015). Intact-brain analyses reveal distinct information carried by SNc dopamine subcircuits. *Cell*, 162(3), 635-647.
  • Lu, J., et al. (2018). MIN1PIPE: A miniscope 1-photon-based calcium imaging signal extraction pipeline. *Cell Reports*, 23(12), 3673-3684.
  • Mukamel, E. A., et al. (2009). Automated analysis of cellular signals from large-scale calcium imaging data. *Neuron*, 63(6), 747-760.
  • Pachitariu, M., et al. (2017). Suite2p: beyond 10,000 neurons with standard two-photon microscopy. *bioRxiv*, 061507.
  • Peron, S. P., et al. (2015). A cellular resolution map of barrel cortex activity during tactile behavior. *Neuron*, 86(3), 783-799.
  • Pnevmatikakis, E. A., et al. (2016). Simultaneous denoising, deconvolution, and demixing of calcium imaging data. *Neuron*, 89(2), 285-299.
  • Pnevmatikakis, E. A., & Giovannucci, A. (2017). NoRMCorre: An online algorithm for piecewise rigid motion correction of calcium imaging data. *Journal of Neuroscience Methods*, 291, 83-94.
  • Rupprecht, P., et al. (2021). A database and deep learning toolbox for noise-optimized, generalized spike inference from calcium imaging. *Nature Neuroscience*, 24, 1324-1337.
  • Stringer, C., et al. (2021). Cellpose: a generalist algorithm for cellular segmentation. *Nature Methods*, 18, 100-106.
  • Vogelstein, J. T., et al. (2010). Fast nonnegative deconvolution for spike train inference from population calcium imaging. *Journal of Neurophysiology*, 104(6), 3691-3704.
  • Zhang, Y., et al. (2023). Fast and sensitive GCaMP calcium indicators for imaging neural populations. *Nature*, 615, 884-891.
  • Zhou, P., et al. (2018). Efficient and accurate extraction of in vivo calcium signals from microendoscopic video data. *eLife*, 7, e28728.

See references/pipeline-details.md for tool comparisons and references/indicator-parameters.md for indicator kinetics tables.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.71%
按下载量换算3,395

Claude

30.06%
按下载量换算2,707

Cursor

18.3%
按下载量换算1,648

Gemini CLI

8.65%
按下载量换算779

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills