Correcting space clamp in dendrites (Schaefer et al. 2003 and 2007)

 Download zip file   Auto-launch 
Help downloading and running models
Accession:22203
In voltage-clamp experiments, incomplete space clamp distorts the recorded currents, rendering accurate analysis impossible. Here, we present a simple numerical algorithm that corrects such distortions. The method enabled accurate retrieval of the local densities, kinetics, and density gradients of somatic and dendritic channels. The correction method was applied to two-electrode voltage-clamp recordings of K currents from the apical dendrite of layer 5 neocortical pyramidal neurons. The generality and robustness of the algorithm make it a useful tool for voltage-clamp analysis of voltage-gated currents in structures of any morphology that is amenable to the voltage-clamp technique.
Reference:
1 . Schaefer AT, Helmstaedter M, Sakmann B, Korngreen A (2003) Correction of conductance measurements in non-space-clamped structures: 1. Voltage-gated K+ channels. Biophys J 84:3508-28 [PubMed]
2 . Schaefer AT, Helmstaedter M, Schmitt AC, Bar-Yehuda D, Almog M, Ben-Porat H, Sakmann B, Korngreen A (2007) Dendritic voltage-gated K+ conductance gradient in pyramidal neurones of neocortical layer 5B from rats. J Physiol 579:737-52 [PubMed]
Citations  Citation Browser
Model Information (Click on a link to find other models with that property)
Model Type: Neuron or other electrically excitable cell;
Brain Region(s)/Organism:
Cell Type(s): Neocortex M1 L5B pyramidal pyramidal tract GLU cell;
Channel(s): I K; I K,leak; I M; I Potassium;
Gap Junctions:
Receptor(s):
Gene(s):
Transmitter(s):
Simulation Environment: NEURON;
Model Concept(s): Parameter Fitting; Influence of Dendritic Geometry; Detailed Neuronal Models;
Implementer(s): Schaefer, Andreas T [andreas.schaefer at crick.ac.uk];
Search NeuronDB for information about:  Neocortex M1 L5B pyramidal pyramidal tract GLU cell; I K; I K,leak; I M; I Potassium;
// Fit Procedure, fitting for given experimental currents

strdef loadProg, GFileName
objref vC, st

load_file("stdgui.hoc")
{load_proc("nrnmainmenu") nrnmainmenu() }


// ++++ CELL ++++
// active & passive parameters //

// reducing cell model:

    if (ReduceCell) {
      xopen("ReduceModel.cell")
      ReduceModel()
    }

forall {
  // passive:
  insert pas
  Ra = ra
  cm = c_m
  g_pas = 1/rm
  e_pas = Epas
  // dummy active:
  insert gDKkin3
  gbar_gDKkin3 = 0
  ek = Ek
  for(x) gbar_gDKkin3(x)=0
  VoltageOffset_gDKkin3=gDKVOffset  // set by Parameter-File
  tstart_gDKkin3=MeasTStart         // beginning of kinetics in gDK.mod
}

//add_spines()

dt = Experimental_dt  // cf. Parameter-File

// VOLTAGE CLAMP
// all explicitly set by Parameter-File:

stimSec.sec vC  = new TwoElectrodeIdealVClamp()    // perfect tow electrode voltage clamp 

stimSec.sec vC.xmeasure(stimPosV)
stimSec.sec vC.xinject(stimPosI)


// ROUTINES

    xopen("InOut.fit")      // including input/output routines
    xopen("Routines.fit")   // including clamp and filter routines
    xopen("Algorithm.fit")  // including correction algorithm
    xopen("Display")