-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdrawfig5.py
More file actions
317 lines (279 loc) · 12.2 KB
/
drawfig5.py
File metadata and controls
317 lines (279 loc) · 12.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
from pylab import *
import scipy.io
import pickle
from os.path import exists
from matplotlib.collections import PatchCollection
import scipy.stats
def mystr(x):
mystr = str(x)
if '000000' in mystr or '999999' in mystr:
for q in range(7,0,-1):
mystr = ('{:.'+str(q)+'f}').format(x)
ilast = len(mystr)-1
if 'e' in mystr:
ilast = mystr.find('e') - 1
if mystr[ilast] != '0':
return mystr
return mystr
def myscistr(x):
mystr = '{:e}'.format(x)
if '0000' in mystr or '9999' in mystr:
for q in range(7,0,-1):
mystr = ('{:.'+str(q)+'e}').format(x)
ilast = mystr.find('e') - 1
if mystr[ilast] != '0':
return mystr
return mystr
def discontlog(ax,x,y,width=18,height=1.05,col='#000000'):
ax.plot([x-width/2,x+width/2],[y/sqrt(height),y*sqrt(height)],'k-',lw=2.3,clip_on=False,color=col)
ax.plot([x-width,x+width],[y/height,y*height],'w-',lw=1.0,clip_on=False,zorder=100)
f,axarr = subplots(4,1)
for iax in range(0,4):
for tick in axarr[iax].xaxis.get_major_ticks() + axarr[iax].yaxis.get_major_ticks():
tick.label.set_fontsize(3.5)
axarr[iax].spines['top'].set_visible(False)
axarr[iax].spines['right'].set_visible(False)
axarr[iax].get_xaxis().tick_bottom()
axarr[iax].get_yaxis().tick_left()
#for ix in range(0,3):
# axarr[ix].set_xlabel('')
for ix in range(0,2):
axarr[ix].set_position([0.15,0.64-0.37*ix,0.29,0.34])
axarr[2+ix].set_position([0.06+0.26*ix,0.06,0.19,0.10])
dist1s = [200,300,400,500,600,700,800,900,1000,1100,1200,1300]
treename = 'apic'
patchxs0 = [[0.5-0.45*sin(0.025*x*2*pi) for x in range(0,21)],[0.5-0.45*sin(0.025*x*2*pi) for x in range(20,41)]]
patchys0 = [[0.5+0.45*cos(0.025*x*2*pi) for x in range(0,21)],[0.5+0.45*cos(0.025*x*2*pi) for x in range(20,41)]]
patchxs = patchxs0[0]+[0.5,0,0,1,1,0.5]+patchxs0[1]
patchys = patchys0[0]+[0,0,1,1,0,0]+patchys0[1]
minmaxes = [inf,-inf]
coeffs_saved = [[],[]]
Ihcoeffs = [0.0,1.0]
for imodel in range(0,2):
for idist1 in range(0,len(dist1s)):
dist1 = dist1s[idist1]
for idist2 in range(idist1+1,len(dist1s)):
dist2 = dist1s[idist2]
threshEcons_thisdist2 = []
for iIhcoeff in range(0,2):
Ihcoeff = Ihcoeffs[iIhcoeff]
foundOne = 0
threshEcons = []
for myseed in range(1,41):
if imodel == 0:
basalthreshcoeff = 0.8
basaldt = 0.0
filename = 'modulhcn_hay/ffthreshs/ffthreshs_basalthreshcoeff'+str(basalthreshcoeff)+'_basaldt'+str(basaldt)+'_Ihcoeff'+str(Ihcoeff)+'_'+treename+str(dist1)+'-'+str(dist2)+'_seed'+str(myseed)+'.sav'
else:
basalgabacond = 0.0002
basal_t_jitter_sd = 25.0
filename = 'modulhcn_hay/ffthreshs/ffthreshs_basalgabacond'+str(basalgabacond)+'_unijitter'+str(basal_t_jitter_sd)+'_Ihcoeff'+str(Ihcoeff)+'_'+treename+str(dist1)+'-'+str(dist2)+'_seed'+str(myseed)+'.sav'
if not exists(filename):
#print(filename+' does not exist, trying dist without decimal point')
filename = filename.replace(',500.0_',',500_')
if exists(filename):
unpicklefile = open(filename,'rb')
unpickledlist = pickle.load(unpicklefile)
unpicklefile.close()
threshEcons.append(unpickledlist[0][2])
foundOne = 1
else:
print(filename+' does not exist either')
if not foundOne:
print(filename+' does not exist')
threshEcons_thisdist2.append(threshEcons[:])
if len(threshEcons) == 0:
print('Ihcoeff = '+str(Ihcoeff)+', continue')
continue
c = tanh(mean(threshEcons[:])/5e-5)
minmaxes = [min(minmaxes[0],mean(threshEcons[:])),max(minmaxes[1],(mean(threshEcons[:]) if mean(threshEcons[:]) < 0.0999 else -inf))]
myhex = hex(255-int(255*c))
if len(myhex) < 3:
mycol = '#000000'
elif len(myhex) < 4:
mycol = '#'+'0'+myhex[2]+'0'+myhex[2]+'0'+myhex[2]
elif len(myhex) > 4:
mycol = '#000000'
else:
mycol = '#'+myhex[2:]+myhex[2:]+myhex[2:]
print('Ihcoeff = '+str(Ihcoeff)+', mycol = '+str(mycol))
if iIhcoeff == 0:
polygon = Polygon(array([[idist1,idist1+1,idist1],[idist2,idist2,idist2+1]]).T, True) #lower left triangle Ih blocked
else:
polygon = Polygon(array([[idist1,idist1+1,idist1+1],[idist2+1,idist2,idist2+1]]).T, True) #upper right triangle control
p = PatchCollection([polygon], cmap=matplotlib.cm.jet)
p.set_facecolor(mycol); p.set_edgecolor('none')
print('Ihcoeff = '+str(Ihcoeff)+', mycol = '+str(mycol))
axarr[imodel].add_collection(p)
if len(threshEcons_thisdist2) > 1 and len(threshEcons_thisdist2[0]) > 1 and len(threshEcons_thisdist2[1]) > 1:
s1 = mean(threshEcons_thisdist2[0])
s2 = mean(threshEcons_thisdist2[1])
print('s1 = '+str(s1)+', s2 = '+str(s2))
if s1 == s2:
mycol = '#808080'
elif s1 > s2: # more spiking with Ih than without
c = tanh((s1/s2 - 1)/2)
#print('c = '+str(c))
myhex = hex(200-int(200*c))
if len(myhex) < 3:
mycol = '#000000'
elif len(myhex) < 4:
mycol = '#ff'+'0'+myhex[2]+'0'+myhex[2]
elif len(myhex) > 4:
mycol = '#ff0000'
else:
mycol = '#ff'+myhex[2:]+myhex[2:]
coeffs_saved[0].append(s1/s2)
else: # more spiking without Ih than without
c = tanh((s2/s1 - 1)/2)
#print('c = '+str(c))
myhex = hex(200-int(200*c))
if len(myhex) < 4:
mycol = '#0'+myhex[2]+'0'+myhex[2]+'ff'
elif len(myhex) > 4:
mycol = '#0000ff'
else:
mycol = '#'+myhex[2:]+myhex[2:]+'ff'
coeffs_saved[1].append(s1/s2)
#print(mycol)
#print(myhex)
#print('s1 = '+str(s1)+', s2 = '+str(s2))
pval = scipy.stats.ranksums(threshEcons_thisdist2[0], threshEcons_thisdist2[1])[1]
polygon = Polygon(array([[idist2+1,idist2+1,idist2,idist2],[idist1,idist1+1,idist1+1,idist1]]).T, True)
p = PatchCollection([polygon], cmap=matplotlib.cm.jet)
p.set_facecolor(mycol); p.set_edgecolor('none')
axarr[imodel].add_collection(p)
if pval < 0.05/66:
axarr[imodel].plot(idist2+0.5,idist1+0.5,'k*',lw=0.5,mew=0.5,ms=2.0)
print('minmaxes = '+str(minmaxes))
axnew = f.add_axes([0.026,0.27,0.033,0.69])
axnew2 = f.add_axes([0.457,0.27,0.033,0.69])
zs = [5e-6*i for i in range(0,21)]
for iz in range(0,len(zs)):
polygon = Polygon(array([[1,2,2,1],[iz,iz,iz+1,iz+1]]).T, True)
c = tanh(zs[iz]/5e-5)
myhex = hex(int(255-255*c))
if len(myhex) < 4:
mycol = '#'+'0'+myhex[2]+'0'+myhex[2]+'0'+myhex[2]
elif len(myhex) > 4:
mycol = '#000000'
else:
mycol = '#'+myhex[2:]+myhex[2:]+myhex[2:]
print('myhex='+myhex)
p = PatchCollection([polygon], cmap=matplotlib.cm.jet)
p.set_facecolor(mycol); p.set_edgecolor('none')
axnew.add_collection(p)
if iz < len(zs)-1:
axnew.text(0.8,iz+0.5,myscistr(1e3*zs[iz]),fontsize=4,ha='right',va='center') # convert from uS to nS
else:
axnew.text(0.8,iz+0.5,'$\geq$0.1',fontsize=4,ha='right',va='center')
axnew.text(0.8,len(zs)+0.1,'(nS)',fontsize=4,ha='right',va='center')
axnew.set_ylim([0,21])
axnew.set_xlim([0,2])
axnew.get_xaxis().set_visible(False)
axnew.get_yaxis().set_visible(False)
for q in ['top','bottom','left','right']:
axnew.spines[q].set_visible(False)
zs = [1.1]+[1.0+0.5*i for i in range(1,10)]
for iz in range(0,len(zs)):
polygon = Polygon(array([[1,2,2,1],[iz+1,iz+1,iz+2,iz+2]]).T, True)
polygon2 = Polygon(array([[1,2,2,1],[-iz,-iz,-iz-1,-iz-1]]).T, True)
c = tanh((zs[iz]-1)/2)
myhex = hex(200-int(200*c))
print('myhex='+myhex)
if len(myhex) < 3:
mycol = '#000000'
elif len(myhex) < 4:
mycol = '#ff'+'0'+myhex[2]+'0'+myhex[2]
elif len(myhex) > 4:
mycol = '#ff0000'
else:
mycol = '#ff'+myhex[2:]+myhex[2:]
if len(myhex) < 4:
mycol2 = '#0'+myhex[2]+'0'+myhex[2]+'ff'
elif len(myhex) > 4:
mycol2 = '#0000ff'
else:
mycol2 = '#'+myhex[2:]+myhex[2:]+'ff'
p = PatchCollection([polygon], cmap=matplotlib.cm.jet)
p.set_facecolor(mycol); p.set_edgecolor('none')
axnew2.add_collection(p)
if iz < len(zs)-1:
axnew2.text(0.8,iz+1.5,mystr(zs[iz]),fontsize=4,ha='right',va='center')
else:
axnew2.text(0.8,iz+1.5,'>5',fontsize=4,ha='right',va='center')
p = PatchCollection([polygon2], cmap=matplotlib.cm.jet)
p.set_facecolor(mycol2); p.set_edgecolor('none')
axnew2.add_collection(p)
if iz < len(zs)-1:
axnew2.text(0.8,-iz-0.5,mystr(zs[iz]),fontsize=4,ha='right',va='center')
else:
axnew2.text(0.8,-iz-0.5,'>5',fontsize=4,ha='right',va='center')
polygon = Polygon(array([[1,2,2,1],[0,0,1,1]]).T, True)
p = PatchCollection([polygon], cmap=matplotlib.cm.jet)
p.set_facecolor('#808080'); p.set_edgecolor('none')
axnew2.add_collection(p)
axnew2.text(0.5,0.5,'n/a',fontsize=4,ha='center',va='center')
axnew2.set_ylim([-11,12])
axnew2.set_xlim([0,2])
axnew2.get_xaxis().set_visible(False)
axnew2.get_yaxis().set_visible(False)
for q in ['top','bottom','left','right']:
axnew2.spines[q].set_visible(False)
axnew2.text(2.2,1.5,'Threshold larger when $I_h$ blocked',fontsize=4.5,color='#FF0000',ha='left',va='bottom',rotation=90,clip_on=False)
axnew2.text(2.2,-0.5,'Threshold smaller when $I_h$ blocked',fontsize=4.5,color='#0000FF',ha='left',va='top',rotation=90,clip_on=False)
for iax in range(0,4):
pos = axarr[iax].get_position()
f.text(pos.x0 - 0.03 - (iax > 1)*0.02, pos.y1 - 0.01, chr(ord('A')+iax), fontsize=9)
dists = [50.0, 100.0, 150.0, 200.0, 250.0, 300.0, 350.0, 400.0, 450.0, 500.0, 550.0, 600.0, 650.0, 700.0, 750.0, 800.0, 850.0, 900.0, 950.0, 1000.0]
styles = ['bx-','kx-']
colors_dim = ['#AAAAFF','#CCCCCC']
condes = [0.0, -80.0]
basalconds = [0.1, 5.0]
for iIhcoeff in range(0,2):
Ithreshs = []
dists_saved = []
for idist in range(0,len(dists)):
Ihcoeff = Ihcoeffs[iIhcoeff]
filename = 'modulhcn_hay/strongdendthresh'+str(dists[idist])+'_Ihcoeff'+str(Ihcoeff)+'_absbound.sav'
if not exists(filename):
print(filename+" does not exist")
continue
unpicklefile = open(filename,'rb');unpickledlist = pickle.load(unpicklefile);unpicklefile.close()
print(filename+" loaded")
Ithreshs.append(unpickledlist[0][-1])
dists_saved.append(dists[idist])
axarr[2].semilogy(dists_saved, Ithreshs, styles[iIhcoeff],lw=0.5,mew=0.5,ms=2.0,color=colors_dim[iIhcoeff])
axarr[3].semilogy(dists_saved, Ithreshs, styles[iIhcoeff],lw=0.5,mew=0.5,ms=2.0,color=colors_dim[iIhcoeff])
for iconde in range(0,2):
Ithreshs_all = []
for iIhcoeff in range(0,2):
Ithreshs = []
dists_saved = []
for idist in range(0,len(dists)):
Ihcoeff = Ihcoeffs[iIhcoeff]
filename = 'modulhcn_hay/strongdendthresh'+str(dists[idist])+'_basal50.0cond'+str(basalconds[iconde])+'_conde'+str(condes[iconde])+'_Ihcoeff'+str(Ihcoeff)+'_absbound.sav'
if not exists(filename):
print(filename+" does not exist")
continue
unpicklefile = open(filename,'rb');unpickledlist = pickle.load(unpicklefile);unpicklefile.close()
print(filename+" loaded")
Ithreshs.append(unpickledlist[0][-1])
dists_saved.append(dists[idist])
Ithreshs_all.append(Ithreshs[:])
axarr[2+iconde].semilogy(dists_saved, Ithreshs, styles[iIhcoeff],lw=0.5,mew=0.5,ms=2.0)
for iax in range(0,2):
axarr[iax].set_xticks([0.5+x for x in range(0,len(dist1s))])
axarr[iax].set_yticks([0.5+x for x in range(0,len(dist1s))])
axarr[iax].set_xticklabels([str(d) for d in dist1s],fontsize=4,rotation=20)
axarr[iax].set_yticklabels([str(d) for d in dist1s],fontsize=4,rotation=20)
axarr[2+iax].set_xlabel('distance ($\mu$m)',fontsize=6)
axarr[iax].set_ylabel('distance ($\mu$m)',fontsize=6)
axarr[0].set_xticklabels([])
axarr[1].set_xlabel('distance ($\mu$m)',fontsize=6)
axarr[2].set_ylabel('$I$ (nA)',fontsize=6)
f.text(0.15+0.29*0.5,0.64+0.34-0.37*0,'Hay, with basal excitation',fontsize=6,ha='center',va='center')
f.text(0.15+0.29*0.5,0.64+0.34-0.37*1,'Hay, with basal inhibition',fontsize=6,ha='center',va='center')
axarr[2].set_title('Hay, with basal excitation',fontsize=6)
axarr[3].set_title('Hay, with basal inhibition',fontsize=6)
f.savefig("fig5.eps")