-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplotTraces.py
171 lines (162 loc) · 5.75 KB
/
plotTraces.py
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
import re
import numpy as np
import matplotlib
matplotlib.use('Agg') # Must be before importing matplotlib.pyplot or pylab! - Otherwise figures try to load but -X not necessarily on
import matplotlib.pyplot as plt
import sys
import os
import glob
# setup data
try:
fileName = sys.argv[1]
except Exception:
fileName = "Ca_WT_5phubs_9s_sGJ_100by501.dat"
try:
isImagedCells = bool(int(sys.argv[2]))
except Exception:
isImagedCells = False
try:
nBatch = int(sys.argv[3])
except Exception:
nBatch = 0
fileDir = os.path.dirname(fileName)
fileBase = os.path.basename(fileName)
fileIdx = re.findall(".*model_(\d+)_morphology_(\d+)_seed_(\d+)_mode_(\d+)_.*",fileName)
fileId = "model_%s_morphology_%s_seed_%s_mode_%s"%fileIdx[0]
mode = int(fileIdx[0][3])
shape = re.findall('.*_(\w+)x(\w+)\.dat',fileName)[0]
shapeX = (int(shape[0]),int(shape[1]))
if nBatch>0:
filePrefix,startBatch = re.findall("(.*)_p_(\d+)_.*",fileName)[0]
fileNameBatch = []
shapeXBatch = []
for i in range(1,nBatch+1):
getBatch = int(startBatch)+i
tempfilename = glob.glob(filePrefix+"_p_%d_*"%getBatch)[0]
tempshape = re.findall('.*_(\w+)x(\w+)\.dat',tempfilename)[0]
shapeXBatch.append((int(tempshape[0]),int(tempshape[1])))
fileNameBatch.append(tempfilename)
varName = r"[Ca]$_i$ [mM]" if "Ca" in fileName else r"$V_m$ [mV]"
title = "short simulation homogeneous GJ @ mouse 40-3"
if isImagedCells:
saveName = os.path.join(fileDir,'imaged_'+fileBase[:-4]+'.png')
else:
saveName = os.path.join(fileDir,'whole_'+fileBase[:-4]+'.png')
# load data
startName = "#dt = "
with open(os.path.join(fileDir,fileId+'.log'),"r") as fi:
for ln in fi:
if ln.startswith(startName):
temp = ln[len(startName):]
dt = float(temp)
startName = "#downSampling = "
with open(os.path.join(fileDir,fileId+'.log'),"r") as fi:
for ln in fi:
if ln.startswith(startName):
temp = ln[len(startName):]
downSampling = float(temp)
tstep = dt*downSampling
X = np.memmap(fileName, dtype='float64', mode='r', shape=shapeX)
t = np.arange(0,shapeX[1]*tstep,tstep) # account dt and downSampling
# hubList (if have)
try:
hubList = np.loadtxt(os.path.join(fileDir,fileId+'.log'),delimiter=',',dtype=int)
except Exception:
hubList = []
# get only imaged cells (if applicable)
if isImagedCells:
imagedCells = []
startName = "#imagedCells = "
with open(os.path.join(fileDir,fileId+'.log'),"r") as fi:
for ln in fi:
if ln.startswith(startName):
imagedCells = ln[len(startName):]
imagedCells = [int(x.strip()) for x in imagedCells.split(',')]
imagedHubs = []
startName = "#imagedHubs = "
with open(os.path.join(fileDir,fileId+'.log'),"r") as fi:
for ln in fi:
if ln.startswith(startName):
imagedHubs = ln[len(startName):]
imagedHubs = [int(x.strip()) for x in imagedHubs.split(',')]
hubList = imagedHubs
# main plot
fig = plt.figure()
ax = fig.add_subplot(111)
aveX = np.zeros(X[0].shape)
maxCa = 0
for i in xrange(len(X)):
if isImagedCells:
if (i not in hubList) and (i in imagedCells):
ax.plot(t, X[i], 'k', alpha=0.3)
aveX += X[i]
else:
if i not in hubList:
ax.plot(t, X[i], 'k', alpha=0.3)
aveX += X[i]
ax.plot(t, X[i], 'k', alpha=0.3, label='non-hub')
for i in np.array(hubList)[np.array(hubList)>0]:
ax.plot(t, X[i], 'r')
aveX += X[i]
ax.plot(t, X[i], 'r', label='hub')
aveX = aveX/float(shapeX[0]) if not isImagedCells else aveX/float(len(imagedCells))
ax.plot(t, aveX, 'g', linewidth=3.0, label='average all')
maxCa = max(np.max(X),maxCa)
# plot the rest if splitted into batches
if nBatch>0:
for iBatch in range(nBatch):
shapeX = shapeXBatch[iBatch]
X = np.memmap(fileNameBatch[iBatch], dtype='float64', mode='r', shape=shapeX)
t = np.arange(t[-1],t[-1]+shapeX[1]*tstep,tstep) # account dt
aveX = np.zeros(X[0].shape)
for i in xrange(len(X)):
if isImagedCells:
if (i not in hubList) and (i in imagedCells):
ax.plot(t, X[i], 'k', alpha=0.3)
aveX += X[i]
else:
if i not in hubList:
ax.plot(t, X[i], 'k', alpha=0.3)
aveX += X[i]
for i in np.array(hubList)[np.array(hubList)>0]:
ax.plot(t, X[i], 'r')
aveX += X[i]
ax.plot(t, X[i], 'r')
aveX = aveX/float(shapeX[0]) if not isImagedCells else aveX/float(len(imagedCells))
ax.plot(t, aveX, 'g', linewidth=3.0)
maxCa = max(np.max(X),maxCa)
# show where silencing is applied
if mode!=0:
try:
import matplotlib.patches as patches
startName = "#silenceStart = "
with open(os.path.join(fileDir,fileId+'.log'),"r") as fi:
for ln in fi:
if ln.startswith(startName):
temp = ln[len(startName):]
silenceStart = float(temp)
startName = "#silenceDur = "
with open(os.path.join(fileDir,fileId+'.log'),"r") as fi:
for ln in fi:
if ln.startswith(startName):
temp = ln[len(startName):]
silenceDur = float(temp)
if maxCa>0.0005:
rect_y = (0.00095,0.00001) if "Ca" in fileName else (-5, 1)
else:
rect_y = (0.000475,0.000005) if "Ca" in fileName else (-5, 1)
ax.add_patch(patches.Rectangle( (silenceStart,rect_y[0]), silenceDur, rect_y[1] , alpha=0.6))
except Exception:
pass
# plotting setup
ax.set_xlabel("t [ms]")
ax.set_ylabel(varName)
if "Ca" in fileName:
if maxCa>0.0005:
ax.set_ylim([0, 0.001])
else:
ax.set_ylim([0, 0.0005])
else:
ax.set_ylim([-100.0, 0.0])
#ax.set_title(title)
plt.savefig(saveName)