Calcium Imaging Data Analysis
*Images from poster presented at AChems 2022 [1].
This project takes .csv
files gathered from Inscopix Data Processing software for processing:
- Syncing traces with externally captured GPIO events.
- General based statistics.
- Plotting: animated, 2D and 3D scatter, regression, skree, heatmap and correlation matrix.
- Dimensionality reduction with variance filters and principal component analysis.
- Support Vector Machine Learning for classification tasks.
Supported OS | Linux (list of POSIX API), Windows 7 and higher. |
Directory Structure
For data loading, directories should be formatted a particular way that can be easily
modified by configuring data.data_utils.file_handler
.
./data/
├── Animal 1
│ ├── Day 1
│ │ ├── *Events.csv
│ │ └── *Traces.csv
│ └── Day 2
│ ├── *Events.csv
│ └── *Traces.csv
├── Animal 2
│ └── Day 1
│ ├── *Events.csv
│ └── *Traces.csv
└── Animal 3
└── Day 1
├── *Events.csv
└── *Traces.csv
Parameters and Directories
A configuration file config.yaml
contains defaults that can be set in a single top-level file.
-
DIRS:
- directories for loading and saving data
DIRS:
data_dir: '/Users/me/mydata'
save_stats: '~./home'
save_figs: '~/graphs'
save_nn: '~/svm'
-
SESSION:
- session instance information
SESSION:
animal: 'animal_ID'
date: '123456'
dir: '/my/data'
-
COLORS:
- event : color pairing
COLORS:
Event1: 'color'
Event2: 'color'
Event3: 'color'
-
DECODER:
- Decode GPIO signals into events
DECODER:
Event1: 1, 2, 3, 4
Event2: 1, 3, 4
Event3: 1, 2, 3
Event4: 1, 4
TO DO:
- Additional layers to neural network for additional feature extraction
- Layer for additional outlier/anomaly detection
- Layer for linear trend normalization
- Any additional feature extraction layers i.e. temporal coding [2], latency, duration, etc.
- Incorperate dataflow-based modeling design i.e. mapping actors to threads and the vectorization of actors (see [3])
- Format all docstrings to NumPy style
References
[1]
Long Term In-Vivo One-Photon Ca2+ Imaging of Taste-Responsive Cells In The Parabrachial Pons In The Freely Licking Rat.
Flynn P. O'Connell1, Joshua D. Sammons2, Patricia M. Di Lorenzo1. 1Binghamton University, Binghamton, NY, USA. 2University of Alabama at Birmingham, Birmingham, AL, USA. Achems.org
[2]
Hallock R. M., Di Lorenzo P. M. (2006). Temporal coding in the gustatory system. Neurosci. Biobehav. Rev. 30, 1145–1160. 10.1016/j.neubiorev.2006.07.005
[3]
Kyunghun Lee, Xiaomin Wu, Yaesop Lee, Da-Ting Lin, Shuvra S. Bhattacharyya & Rong Chen (2021) Neural decoding on imbalanced calcium imaging data with a network of support vector machines, Advanced Robotics, 35:7, 459-470, DOI: 10.1080/01691864.2020.1863259