Sodium channel mutations causing generalized epilepsy with febrile seizures + (Barela et al. 2006)

 Download zip file 
Help downloading and running models
Accession:87585
A novel mutation, R859C, in the Nav1.1 sodium channel was identified in a 4-generation, 33-member Caucasian family with a clinical presentation consistent with GEFS+. The mutation neutralizes a positively charged arginine in the domain 2 S4 voltage sensor of the Nav1.1 channel Ą subunit. When the mutation was placed in the rat Nav1.1 channel and expressed in Xenopus oocytes, the mutant channel displayed a positive shift in the voltage-dependence of sodium channel activation, slower recovery from slow inactivation, and lower levels of current compared to the wild-type channel. Computational analysis suggests that neurons expressing the mutant channel have higher thresholds for firing a single action potential and for firing multiple action potentials, along with decreased repetitive firing. Therefore, this mutation should lead to decreased neuronal excitability, in contrast to most previous GEFS+ sodium channel mutations that have changes predicted to increase neuronal firing.
References:
1 . Barela AJ, Waddy SP, Lickfett JG, Hunter J, Anido A, Helmers SL, Goldin AL, Escayg A (2006) An epilepsy mutation in the sodium channel SCN1A that decreases channel excitability. J Neurosci 26:2714-23 [PubMed]
2 . Spampanato J, Aradi I, Soltesz I, Goldin AL (2004) Increased neuronal firing in computer simulations of sodium channel mutations that cause generalized epilepsy with febrile seizures plus. J Neurophysiol 91:2040-50 [PubMed]
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):
Channel(s): I Na,t; I K; I Sodium;
Gap Junctions:
Receptor(s):
Gene(s): Nav1.1 SCN1A;
Transmitter(s):
Simulation Environment: NEURON;
Model Concept(s): Action Potentials; Epilepsy;
Implementer(s): Lickfett, Jay ; Goldin, Al [agoldin at uci.edu];
Search NeuronDB for information about:  I Na,t; I K; I Sodium;
// displaytraces.hoc
// displays some traces generated from Barela et al. 2006

objref file_id
file_id = new File()
file_id.ropen("APthreshold.txt")

strdef tmpstring
for i=1, 3 {
	file_id.gets(tmpstring)
	print tmpstring
}

objref data_vecs[36]

for i=0, 35 {
	data_vecs[i] = new Vector()
}
for i=0,3000 {
	for j=0,35 {
		data_vecs[j].append(file_id.scanvar())
	}
}

objref g[36]

objref vbox, hbox[7]
vbox = new VBox()

vbox.intercept(1)
   for k=0,6 {
     hbox[k] = new HBox()
     hbox[k].intercept(1)
	for i=k*5+1,(k+1)*5 {
		g[i] = new Graph()
		data_vecs[i].line(g[i],data_vecs[0])
		sprint(tmpstring,"%d",k*5+i)
		g[i].label(.9,.9,tmpstring)
		g[i].exec_menu("View = plot")
	}
     hbox[k].intercept(0)
     hbox[k].map()
   }
vbox.intercept(0)
vbox.map("Barela et al. 2006 output", 60, 120, 860, 600)

Loading data, please wait...