Skip to content

Files

Latest commit

a199a0c · Jan 20, 2023

History

History
61 lines (31 loc) · 1.85 KB

File metadata and controls

61 lines (31 loc) · 1.85 KB

Membrane properties analysis

Man Ho Wong
Xu Lab, Department of Neuroscience, University of Pittsburgh.

This page documents the algorithm of membrane properties analysis, which is implemented through the function membraneProps.m.

Steps

1. Zero every trace

Zero every trace of capacitance transient by the average amplitude of its own baseline (defined by the user, e.g. 0 to 4 ms of the trace).

2. Get the average trace

3. Determine transient peak direction by test pulse direction

4. Find the peak location

The location of the first transient peak is defined as the first sampling point with either minimum or maximum value depending on peak direction.

5. Locate the decay window

The decay window is defined as the decay from the peak location to the user-defined end point (this depends on the length of test pulse).

6. Zero the trace in the decay window to the stable current

The stable current ( I s t a b l e ) is the difference between the baseline and the last 10 sampling points of the decay window.

7. Fit decay to a first-order exponential function

The trace within the decay window is fitted to a first-order exponential function using the non-linear least squares method. The function is shown below:

I = I 0 e t / t a u

where I 0 is the initial current (i.e. peak).

8. Compute passive membrane properties

The decay time constant (tau) is obtained directly from the fitting result. Other passive membrane properties are defined as follows:

R i n p u t = V t e s t   p u l s e / I s t a b l e

R s e r i e s = V t e s t   p u l s e / I p e a k

C m e m b r a n e = t a u / R s e r i e s

where

R i n p u t = input resistance

R s e r i e s = series resistance

C m e m b r a n e = membrane capacitance

V t e s t   p u l s e = test pulse size

I s t a b l e = stable current (see step 6)

I p e a k = peak current