-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathisoDetecting_scan_MS1_pointNet.py
592 lines (473 loc) · 28.5 KB
/
isoDetecting_scan_MS1_pointNet.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
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
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
# nohup python -u isoDetecting_scan_MS1_pointNet.py [recordpath] [sample_name] [modelpath] [gpu_index] [start_mz] [topath] > output.log &
''' nohup python -u isoDetecting_scan_MS1_pointNet.py /data/anne/dilution_series_syn_pep/hash_record/ 130124_dilA_1_01 /data/anne/pointIso/3D_model/ 0 400
/data/anne/dilution_series_syn_pep/scanned_result/ > output.log & '''
from __future__ import division
from __future__ import print_function
#import tensorflow as tf
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
from time import time
import pickle
import numpy as np
from collections import deque
from collections import defaultdict
import sys
import bisect
import gc
import os
recordpath=sys.argv[1]
sample_name=sys.argv[2]
modelpath=sys.argv[3]
gpu_index=sys.argv[4]
start_mz=sys.argv[5]
topath=sys.argv[6]
os.environ["CUDA_VISIBLE_DEVICES"]=gpu_index
isotope_gap=np.zeros((10))
isotope_gap[0]=0.00001
isotope_gap[1]=1.00000
isotope_gap[2]=0.50000
isotope_gap[3]=0.33333
isotope_gap[4]=0.25000
isotope_gap[5]=0.20000
isotope_gap[6]=0.16667
isotope_gap[7]=0.14286
isotope_gap[8]=0.12500
isotope_gap[9]=0.11111
total_class=10
RT_unit=0.01
mz_unit=0.00001
#modelpath='/data/fzohora/dilution_series_syn_pep/model/deepIso_PointNet/'
#datapath='/data/fzohora/dilution_series_syn_pep/' #'/data/fzohora/water/' #'/media/anne/Study/study/PhD/bsi/update/data/water/' #
'''dataname=['130124_dilA_1_01','130124_dilA_1_02','130124_dilA_1_03','130124_dilA_1_04',
'130124_dilA_2_01','130124_dilA_2_02','130124_dilA_2_03','130124_dilA_2_04','130124_dilA_2_05','130124_dilA_2_06','130124_dilA_2_07',
'130124_dilA_3_01','130124_dilA_3_02','130124_dilA_3_03','130124_dilA_3_04','130124_dilA_3_05','130124_dilA_3_06','130124_dilA_3_07',
'130124_dilA_4_01','130124_dilA_4_02','130124_dilA_4_03','130124_dilA_4_04','130124_dilA_4_05','130124_dilA_4_06','130124_dilA_4_07',
'130124_dilA_5_01','130124_dilA_5_02','130124_dilA_5_03','130124_dilA_5_04',
'130124_dilA_6_01','130124_dilA_6_02','130124_dilA_6_03','130124_dilA_6_04',
'130124_dilA_7_01','130124_dilA_7_02','130124_dilA_7_03','130124_dilA_7_04',
'130124_dilA_8_01','130124_dilA_8_02','130124_dilA_8_03','130124_dilA_8_04',
'130124_dilA_9_01','130124_dilA_9_02','130124_dilA_9_03','130124_dilA_9_04',
'130124_dilA_10_01','130124_dilA_10_02', '130124_dilA_10_03', '130124_dilA_10_04',
'130124_dilA_11_01', '130124_dilA_11_02', '130124_dilA_11_03', '130124_dilA_11_04',
'130124_dilA_12_01', '130124_dilA_12_02', '130124_dilA_12_03', '130124_dilA_12_04'] '''
activation_func=2
set_lr_rate= 0.001 #float(sys.argv[1]) #
log_no='deepIso_pointNet_isoDetect_mz5_v6_'+'lrp001r1'
momentum_value=0.9
reg_weight=0.001
total_frames_var=20
RT_window=15
mz_window=int(round(2.0/mz_unit)) #200
######################################################################
num_class=10
state_size =10
datapoints=5000
block_size=5
mid_block=12
mid_block_input=4
def weight_variable(shape, variable_name):
initial = tf.truncated_normal(shape, stddev=0.1)
return tf.Variable(initial, name=variable_name)
def bias_variable(shape, variable_name):
initial = tf.constant(0.1, shape=shape)
return tf.Variable(initial, name=variable_name)
def conv2d(x, W):
return tf.nn.conv2d(x, W, strides=[1, 1, 1, 1], padding='VALID')
def bias_variable_Tnet(shape, variable_name):
initial = tf.constant(np.eye(shape).flatten(), dtype=tf.float32)
return tf.Variable(initial, name=variable_name)
#def max_pool_2x2(x):
# return tf.nn.max_pool(x, ksize=[1, 2, 2, 1], strides=[1, 2, 2, 1], padding='SAME')
#################################################################
#################################################################
with tf.device('/device:GPU:'+ gpu_index):
is_train = tf.placeholder(tf.bool, name="is_train")
batchX_placeholder = tf.placeholder(tf.float32, [None, 9, datapoints, 3]) #image block to consider for one run of training by back propagation
sample_weight = tf.placeholder(tf.float32, [None, datapoints])
batchY_placeholder = tf.placeholder(tf.int32, [None, datapoints])
keep_probability = tf.placeholder(tf.float32)
learn_rate=tf.placeholder(tf.float32) #set_lr_rate
# total_loss_place = tf.placeholder(tf.float32, [None, 9,datapoints,3])
# T-Net
# ------------------------------------------------------------------------------------------------------------------------------------------------------------
T_net_W_conv0 = weight_variable([1, 3 , 1, 16], 'W_conv0')# 64 kernels each having [1,3] sized filter.
T_net_b_conv0 = bias_variable([16], 'b_conv0') #for each of feature maps
T_net_W_conv1 = weight_variable([1, 1 , 16, 32], 'W_conv1')# #20x193
T_net_b_conv1 = bias_variable([32], 'b_conv1') #for each of feature maps
T_net_W_fc0 = weight_variable([32, 32], 'W_fc1')
T_net_b_fc0 = bias_variable([32], 'b_fc1')
T_net_W_fc1 = weight_variable([32, 16], 'W_fc1')
T_net_b_fc1 = bias_variable([16], 'b_fc1')
#
T_net_W_out = weight_variable([16, 3*3], 'W_out')
T_net_b_out = bias_variable_Tnet(3, 'b_out')
# -------------------
nw_W_conv0 = weight_variable([1, 3 , 1, 16], 'nw_W_conv0')# 64 kernels each having [1,3] sized filter.
nw_b_conv0 = bias_variable([16], 'nw_b_conv0') #for each of feature maps
nw_W_conv0b = weight_variable([1, 1 , 16, 32], 'nw_W_conv0b')# 64 kernels each having [1,3] sized filter.
nw_b_conv0b = bias_variable([32], 'nw_b_conv0b') #for each of feature maps
#--------------------
F_net_W_conv0 = weight_variable([1, 32 , 1, 16], 'F_W_conv0')# 64 kernels each having [1,3] sized filter.
F_net_b_conv0 = bias_variable([16], 'F_b_conv0') #for each of feature maps
F_net_W_conv1 = weight_variable([1, 1 , 16, 32], 'F_W_conv1')# #20x193
F_net_b_conv1 = bias_variable([32], 'F_b_conv1') #for each of feature maps
F_net_W_fc0 = weight_variable([32, 32], 'F_W_fc0')
F_net_b_fc0 = bias_variable([32], 'F_b_fc0')
F_net_W_fc1 = weight_variable([32, 16], 'F_W_fc1')
F_net_b_fc1 = bias_variable([16], 'F_b_fc1')
F_net_W_out = weight_variable([16, 32*32], 'F_W_out')
F_net_b_out = bias_variable_Tnet(32, 'F_b_out')
#--------------------------
nw_W_conv1 = weight_variable([1, 32 , 1, 16], 'nw_W_conv1')# 64 kernels each having [1,3] sized filter.
nw_b_conv1 = bias_variable([16], 'nw_b_conv1') #for each of feature maps
nw_W_conv2 = weight_variable([1, 1 , 16, 32], 'nw_W_conv2')# #20x193
nw_b_conv2 = bias_variable([32], 'nw_b_conv2') #for each of feature maps
#----------------------here you got the F_net+global feature+states-----
pf_WL = weight_variable([1, 32+32, 1, 64], 'pf_WL')
pf_bL = bias_variable([64], 'pf_bL')
pf_WR = weight_variable([1, 32+32, 1, 64], 'pf_WR')
pf_bR = bias_variable([64], 'pf_bR')
pf_WU = weight_variable([1, 32+32, 1, 64], 'pf_WU')
pf_bU = bias_variable([64], 'pf_bU')
pf_WD = weight_variable([1, 32+32, 1, 64], 'pf_WD')
pf_bD = bias_variable([64], 'pf_bD')
pf_WM = weight_variable([1, 32+32, 1, 64], 'pf_WM')
pf_bM = bias_variable([64], 'pf_bM')
attention_weight_L=weight_variable([datapoints, 64], 'attention_weight_L')
attention_weight_R=weight_variable([datapoints, 64], 'attention_weight_R')
attention_weight_U=weight_variable([datapoints, 64], 'attention_weight_U')
attention_weight_D=weight_variable([datapoints, 64], 'attention_weight_D')
P_W_conv1 = weight_variable([1, 64 , 1, 256], 'P_W_conv1')# 64 kernels each having [1,3] sized filter.
P_b_conv1 = bias_variable([256], 'P_b_conv1') #for each of feature maps
P_W_conv2 = weight_variable([1, 1 , 256, 128], 'P_W_conv2')# #20x193
P_b_conv2 = bias_variable([128], 'P_b_conv2') #for each of feature maps
P_W_conv3 = weight_variable([1, 1 , 128, 64], 'P_W_conv3')# #20x193
P_b_conv3 = bias_variable([64], 'P_b_conv3') #for each of feature maps
# P_W_conv4 = weight_variable([1, 1 , 32, 16], 'P_W_conv4')# #20x193
# P_b_conv4 = bias_variable([16], 'P_b_conv4') #for each of feature maps
nw_W_out = weight_variable([1, 1 , 64, num_class], 'nw_W_out')
nw_b_out = bias_variable([num_class], 'nw_b_out')
#-----------------------------
global_feature=[]
local_feature=[]
##############
#2d for loop starts for fw pass
global_position_idx=0 #for real 3x3 block to hold weighted input
for row_idx in range (1, 4):
for col_idx in range (1, 4):
global_position_idx_state= row_idx*block_size+col_idx
block_input=batchX_placeholder[:, global_position_idx, :, :]
T_net_mlp_0 = tf.nn.relu(conv2d(tf.reshape(block_input[:, :, :], [-1, datapoints, 3, 1]) , T_net_W_conv0) + T_net_b_conv0) # now the layer is : b x n x 64
T_net_mlp_1 = tf.nn.relu(conv2d(T_net_mlp_0, T_net_W_conv1) + T_net_b_conv1) # now layer is : b x n x 128
# T_net_mlp_2 = tf.tanh(conv2d(T_net_mlp_1, T_net_W_conv2) + T_net_b_conv2) # now the layer is : b x n x 1024
T_net_maxpool_points=tf.nn.max_pool(T_net_mlp_1, ksize=[1, datapoints, 1, 1], strides=[1, datapoints, 1, 1], padding='SAME')
T_net_maxpool_points = tf.reshape(T_net_maxpool_points, [-1, 32])
T_net_fc0 = tf.nn.relu(tf.matmul(T_net_maxpool_points, T_net_W_fc0) + T_net_b_fc0) # finally giving the output
T_net_fc1 = tf.nn.relu(tf.matmul(T_net_fc0, T_net_W_fc1) + T_net_b_fc1) # finally giving the output
T_net_point_transformation_matrix = tf.nn.relu(tf.matmul(T_net_fc1, T_net_W_out) + T_net_b_out) # finally giving the output [b x 3 x 3]
##############################
T_net_point_transformation_matrix = tf.reshape(T_net_point_transformation_matrix, [-1, 3, 3])
T_net_point_transformation = tf.matmul(block_input, T_net_point_transformation_matrix) # dimension [n x 3]
# -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
nw_mlp_0 = tf.nn.relu(conv2d(tf.reshape(T_net_point_transformation[:, :, :], [-1, datapoints, 3, 1]), nw_W_conv0) + nw_b_conv0) # now the layer is : b x n x 64
nw_mlp_0b = tf.nn.relu(conv2d(nw_mlp_0, nw_W_conv0b) + nw_b_conv0b) # now the layer is : b x n x 64
nw_mlp_0b = tf.reshape(nw_mlp_0b,[-1,datapoints,32])
# ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
F_net_mlp_0 = tf.nn.relu(conv2d(tf.reshape(nw_mlp_0b[:, :, :], [-1, datapoints, 32, 1]), F_net_W_conv0) + F_net_b_conv0) # now the layer is : b x n x 64
F_net_mlp_1 = tf.nn.relu(conv2d(F_net_mlp_0, F_net_W_conv1) + F_net_b_conv1) # now layer is : b x n x 128
# F_net_mlp_2 = tf.tanh(conv2d(F_net_mlp_1, F_net_W_conv2) + F_net_b_conv2) # now the layer is : b x n x 1024
F_net_maxpool_points=tf.nn.max_pool(F_net_mlp_1, ksize=[1, datapoints, 1, 1], strides=[1, datapoints, 1, 1], padding='SAME')
F_net_maxpool_points = tf.reshape(F_net_maxpool_points, [-1, 32])
F_net_fc0 = tf.nn.relu(tf.matmul(F_net_maxpool_points, F_net_W_fc0) + F_net_b_fc0) # finally giving the output
F_net_fc1 = tf.nn.relu(tf.matmul(F_net_fc0, F_net_W_fc1) + F_net_b_fc1) # finally giving the output
F_net_point_transformation_matrix = tf.nn.relu(tf.matmul(F_net_fc1, F_net_W_out) + F_net_b_out) # finally giving the output [b x 3 x 3]
##############################
F_net_point_transformation_matrix = tf.reshape(F_net_point_transformation_matrix, [-1, 32, 32])
if row_idx==2 and col_idx==2:
transformation_matrix_holder=F_net_point_transformation_matrix
F_net_point_transformation = tf.matmul(nw_mlp_0b , F_net_point_transformation_matrix) # dimension [n x 64]
local_feature.append(F_net_point_transformation)
# ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
nw_mlp_1 = tf.nn.relu(conv2d(tf.reshape(F_net_point_transformation, [-1, datapoints, 32, 1]), nw_W_conv1) + nw_b_conv1) # now the layer is : b x n x 64
nw_mlp_2 = tf.nn.relu(conv2d(nw_mlp_1, nw_W_conv2) + nw_b_conv2) # now layer is : b x n x 128
nw_maxpool_points=tf.nn.max_pool(nw_mlp_2, ksize=[1, datapoints, 1, 1], strides=[1, datapoints, 1, 1], padding='SAME')
global_feature.append(tf.reshape(nw_maxpool_points, [-1, 32]) ) # this is the global feature
global_position_idx=global_position_idx+1
#####-------------following block will be executed only for mid block------------------------------------------------
feature_l=tf.reshape( global_feature[3], [-1, 1, global_feature[3].shape[1].value])
feature_l= tf.tile(feature_l, [1, datapoints, 1])
feature_l=tf.concat((local_feature[3],feature_l), axis=2)
point_feature_l=tf.nn.relu(conv2d(tf.reshape(feature_l, [-1, datapoints, 32+32, 1]), pf_WL) + pf_bL) # B
point_feature_l=tf.reshape(point_feature_l, [-1, datapoints,point_feature_l.shape[3].value]) # [?, 3000, 16] = point_feature
feature_r=tf.reshape(global_feature[5], [-1, 1, global_feature[5].shape[1].value])
feature_r= tf.tile(feature_r, [1, datapoints, 1])
feature_r=tf.concat((local_feature[5],feature_r), axis=2)
point_feature_r=tf.nn.relu(conv2d(tf.reshape(feature_r, [-1, datapoints, 32+32, 1]), pf_WR) + pf_bR)
point_feature_r=tf.reshape(point_feature_r, [-1, datapoints,point_feature_r.shape[3].value]) # [?, 3000, 16] = point_feature
feature_u=tf.reshape(global_feature[7], [-1, 1, global_feature[1].shape[1].value])
feature_u= tf.tile(feature_u, [1, datapoints, 1])
feature_u=tf.concat((local_feature[7],feature_u), axis=2)
point_feature_u=tf.nn.relu(conv2d(tf.reshape(feature_u, [-1, datapoints, 32+32, 1]), pf_WU) + pf_bU)
point_feature_u=tf.reshape(point_feature_u, [-1, datapoints,point_feature_u.shape[3].value]) # [?, 3000, 16] = point_feature
feature_d=tf.reshape(global_feature[1], [-1, 1, global_feature[1].shape[1].value])
feature_d= tf.tile(feature_d, [1, datapoints, 1])
feature_d=tf.concat((local_feature[1],feature_d), axis=2)
point_feature_d=tf.nn.relu(conv2d(tf.reshape(feature_d, [-1, datapoints, 32+32, 1]), pf_WD) + pf_bD)
point_feature_d=tf.reshape(point_feature_d, [-1, datapoints,point_feature_d.shape[3].value]) # [?, 3000, 16] = point_feature
global_feature_expand= tf.tile(tf.reshape(global_feature[4], [-1, 1, global_feature[4].shape[1].value]), [1, datapoints, 1]) # [?, 3000, 32]
concat_local_global=tf.concat((local_feature[4],global_feature_expand), axis=2) # [?, 3000, 32+16]
# pass it through another weight???
point_feature_m=tf.nn.relu(conv2d(tf.reshape(concat_local_global, [-1, datapoints, 32+32, 1]), pf_WM) + pf_bM) # C
point_feature_m=tf.reshape(point_feature_m, [-1, datapoints,point_feature_m.shape[3].value]) # [?, 3000, 16] = point_feature
filtered_left=tf.matmul(tf.nn.softmax(tf.matmul(point_feature_m, tf.transpose(point_feature_l, perm=[0,2,1])), axis=2) , point_feature_l ) # [?, 3000, 16] = point_feature
attention_left=tf.multiply(filtered_left, attention_weight_L) # [?, 3000, 16] = point_feature
filtered_right=tf.matmul(tf.nn.softmax(tf.matmul(point_feature_m, tf.transpose(point_feature_r, perm=[0,2,1])), axis=2) , point_feature_r )
attention_right=tf.multiply(filtered_right, attention_weight_R) # [?, 3000, 16] = point_feature
filtered_up=tf.matmul(tf.nn.softmax(tf.matmul(point_feature_m, tf.transpose(point_feature_u, perm=[0,2,1])), axis=2) , point_feature_u )
attention_up=tf.multiply(filtered_up, attention_weight_U) # [?, 3000, 16] = point_feature
filtered_down=tf.matmul(tf.nn.softmax(tf.matmul(point_feature_m, tf.transpose(point_feature_d, perm=[0,2,1])), axis=2), point_feature_d)
attention_down=tf.multiply(filtered_down, attention_weight_D) # [?, 3000, 16] = point_feature
surrounding_feature=tf.add(attention_left,attention_right)
surrounding_feature= tf.add(surrounding_feature,attention_up)
surrounding_feature= tf.add(surrounding_feature,attention_down) #[?, dataoints, 16]
# surrounding_feature holds all useful point features from up, down, right, left for each datapoints in current window
concat_local_global_surround=tf.add(point_feature_m, surrounding_feature) #[?, dataoints, 16]
p_mlp_1 = tf.nn.relu(conv2d(tf.reshape(concat_local_global_surround[:, :, :], [-1, datapoints, concat_local_global_surround.shape[2].value, 1]), P_W_conv1) + P_b_conv1) # finally giving the output
p_mlp_2 = tf.nn.relu(conv2d(tf.nn.dropout(p_mlp_1, keep_probability), P_W_conv2) + P_b_conv2)
p_mlp_3 = tf.nn.relu(conv2d(tf.nn.dropout(p_mlp_2, keep_probability), P_W_conv3) + P_b_conv3)
nw_out = conv2d(tf.nn.dropout(p_mlp_3, keep_probability), nw_W_out) + nw_b_out
nw_out=tf.reshape(nw_out, [-1, datapoints, num_class])
prediction = tf.argmax(tf.nn.softmax(nw_out), 2) # it should be [n x num_class]
# prediction_score = np.max(tf.nn.softmax(nw_out), 2)
loss=tf.nn.sparse_softmax_cross_entropy_with_logits(logits=nw_out, labels=batchY_placeholder) # batchY_placeholder = [n x num_class] -- one hot vector for each n
considered_loss=tf.multiply(sample_weight, loss)
total_loss=tf.reduce_mean(tf.reduce_mean(considered_loss, axis=1))
# train_step = tf.contrib.opt.NadamOptimizer(learn_rate).minimize(total_loss)
config=tf.ConfigProto(allow_soft_placement=True, log_device_placement=True)
#config=tf.ConfigProto(log_device_placement=True)
config.gpu_options.allow_growth = True
sess = tf.Session(config=config)
saver = tf.train.Saver()
saver.restore(sess, modelpath+log_no+'_best_model_1.ckpt')
#saver.restore(sess, modelpath+log_no+'_best_model_loss.ckpt')
print('~ Model built ~ ')
####################################################################
print(dataname[test_index])
print(gc.collect())
print('trying to load ms1 record')
data_index=test_index
f=open(recordpath+'pointCloud_'+sample_name+'_RT_index_new_mz5', 'rb')
RT_index=pickle.load(f)
f.close()
f=open(recordpath+'pointCloud_'+sample_name+'_ms1_record_mz5', 'rb')
sorted_mz_list,maxI=pickle.load(f)
f.close()
print('data read done!')
RT_mz_I_dict=RT_index
RT_list=sorted(RT_mz_I_dict.keys())
RT_index_array=dict()
for i in range (0, len(RT_list)):
RT_index_array[round(RT_list[i], 2)]=i
###########################
#scan ms1_block and record the outputs in list_dict[z]: hash table based on m/z
#for each m/z
mz_resolution=5
RT_list = np.sort(list(RT_mz_I_dict.keys()))
max_RT=RT_list[len(RT_list)-1]
min_RT=RT_list[0]
max_mz=0
min_mz=1000
for i in range (0, len(sorted_mz_list)):
mz_I_list=sorted_mz_list[i]
mz=mz_I_list[len(mz_I_list)-1]
if mz>max_mz:
max_mz=mz
mz=mz_I_list[0]
if mz<min_mz:
min_mz=mz
rt_search_index=0
while(RT_list[rt_search_index]<=min_RT):
if RT_list[rt_search_index]==min_RT:
break
rt_search_index=rt_search_index+1
total_RT=len(RT_list)-rt_search_index
#############################
mz_used_before=np.zeros((total_class))
pred_RT=np.zeros((total_class))
pred_start=np.zeros((total_class))
list_dict=[]
for i in range (0, total_class):
list_dict.append(dict())
batch_size=1
current_mz=float(start_mz) #min_mz
current_RT=min_RT
max_mz=current_mz+200.00000
total_time=time()
while current_mz<max_mz:
start_time=time()
print('##### mz:%g #######'%current_mz)
output_list=defaultdict(dict)
real_RT_index=rt_search_index
real_img_row=RT_window #check
while real_img_row<= total_RT-RT_window:
RT_index_start=real_RT_index
# print('RT for output:%d, mz for output: %g'%(real_img_row, current_mz))
batch_ms1=np.zeros((batch_size,9, datapoints, 3))
batch_points=np.zeros((batch_size, 9))
count=0
#####
#prepare it
RT_inc=15
for row_idx in range (0, 3):
mz_start=round(current_mz-mz_window*mz_unit, mz_resolution)
RT_index_end=min(RT_index_start+RT_window-1, len(RT_list)-1) #inc
rt_idx_s=RT_index_start
rt_idx_e=RT_index_end
if row_idx==0:
rt_idx_s=rt_idx_s+7
elif row_idx==2:
rt_idx_e=rt_idx_e-7
for col_idx in range (0, 3):
# print('mz_start %g'%(mz_start))
flat_index=row_idx*3+col_idx
point_index=0
mz_end=round(mz_start+2.0-mz_unit, mz_resolution) #inc, we don't allow overlap, like 700 to 701.99 --> 200 pixels
if col_idx==0:
mz_start=round(mz_start+1.0, mz_resolution)
elif col_idx==2:
mz_end=round(mz_end-1.0, mz_resolution)
rt_row=0
break_flag=-1
for RT_idx in range (rt_idx_s, rt_idx_e+1):
if RT_idx<0 or RT_idx>(len(RT_list)-1):
rt_row=rt_row+1
continue
mz_value=mz_start
find_mz_idx_start= bisect.bisect_left(sorted_mz_list[RT_idx], mz_value)
if len(sorted_mz_list[RT_idx])==find_mz_idx_start or round(sorted_mz_list[RT_idx][find_mz_idx_start], mz_resolution)>mz_end:
rt_row=rt_row+1
continue
mz_value=round(sorted_mz_list[RT_idx][find_mz_idx_start] , mz_resolution)
datapoint=RT_index[round(RT_list[RT_idx], 2)][mz_value]
intensity=round(((datapoint[0]-0)/(maxI-0))*255, 2) # scale it to the grey value
mz_row=round(mz_value-mz_start, mz_resolution)
if point_index<5000:
batch_ms1[count, flat_index, point_index, 0]=mz_row
batch_ms1[count, flat_index, point_index, 1]= rt_row
batch_ms1[count, flat_index, point_index, 2]=intensity
point_index=point_index+1
else:
break
next_mz_idx=int(datapoint[1])+1
if len(sorted_mz_list[RT_idx])>next_mz_idx:
mz_value= sorted_mz_list[RT_idx][next_mz_idx]
else:
rt_row=rt_row+1
continue
while mz_value<=mz_end:
datapoint=RT_index[round(RT_list[RT_idx], 2)][mz_value]
intensity=round(((datapoint[0]-0)/(maxI-0))*255, 2) # scale it to the grey value
mz_row=round(mz_value-mz_start, mz_resolution) # 0 to 1.99999
if point_index<5000:
batch_ms1[count, flat_index, point_index, 0]=mz_row
batch_ms1[count, flat_index, point_index, 1]= rt_row
batch_ms1[count, flat_index, point_index, 2]=intensity
point_index=point_index+1
else:
break_flag=1
break
next_mz_idx=int(datapoint[1])+1
if len(sorted_mz_list[RT_idx])>next_mz_idx:
mz_value= sorted_mz_list[RT_idx][next_mz_idx]
else:
break
if break_flag==1:
break
rt_row=rt_row+1
mz_start=round(mz_end+mz_unit, mz_resolution) # go to next right window
if col_idx==1 and row_idx==1: # mid block
if RT_idx<rt_idx_e: # 0 to 14 = 15. if stopped at 12, then next scan starts at 13, instead of 15. 12-0+1=13. otherwise, 14-0+1=15.
RT_inc=RT_idx-rt_idx_s+1
batch_points[count, flat_index]=point_index
RT_index_start=min(RT_index_start+min(15, RT_inc), len(RT_list)-1) # go to next up window
#####
# one 3x3 seq is formed
# print('block is formed')
if int(batch_points[count, 4])!=0 and np.max(batch_ms1[count, 4, :, 2])>0:
batchX = batch_ms1 #[:,row_idx,:,:]
_prediction = sess.run(
prediction,
feed_dict={
batchX_placeholder:batchX,
keep_probability:1.0,
learn_rate:set_lr_rate,
is_train:False
})
#one batch is done
count=0
for point_idx in range (0, int(batch_points[count, 4])):
mz_index=int(round(batch_ms1[count, 4, point_idx, 0]/mz_unit, mz_resolution)) # 0 to 199999
rt_index=int(batch_ms1[count, 4, point_idx, 1])
output_list[mz_index][real_img_row+rt_index]=_prediction[count][point_idx]
# output_list[count, real_img_row+rt_index, mz_index]=_prediction[count][point_idx]
real_img_row=real_img_row+min(RT_window, RT_inc)
real_RT_index=real_RT_index+min(RT_window, RT_inc)
for batch_index in range (0, batch_size):
mz_keys=sorted(output_list.keys())
for j in mz_keys: #range (0, int(mz_window)): ## <---
mz_poz=round(current_mz+j*mz_unit, mz_resolution)
# if mz_poz==707.36:
# break
mz_used_before[:]=0
pred_RT[:]=0
pred_start[:]=0
not_exist=1
RT_keys=sorted(output_list[j].keys())
for count_rt_index in range (0, len(RT_keys)):
i=RT_keys[count_rt_index]
RT_poz=round(RT_list[rt_search_index+i], 2)
z=int(output_list[j][i])
if z!=0:
# add (m/z,RT) to the dict
if mz_used_before[z]==1: #list_dict[p_ion[i]].has_key(mz_poz):
# append the new number to the existing array at this slot
# if RT_poz not in list_dict[p_ion[i]][mz_poz]:
if RT_index_array[RT_poz]-RT_index_array[pred_RT[z]]==1: #continuation of same isotope
pred_RT[z]=RT_poz
elif pred_start[z]==pred_RT[z]: # the RT span of this isotope is only one scan then remove it
list_dict[z][mz_poz].append(-1) # insert a separating marker
list_dict[z][mz_poz].append(RT_poz) # insert the starting RT of new isotope
pred_start[z]=RT_poz #keep track of starting RT
pred_RT[z]=RT_poz
else: #if the RT span of current isotope is => 2 scan then keep it
list_dict[z][mz_poz].append(round(pred_RT[z], 2))
list_dict[z][mz_poz].append(-1) # insert a separating marker --> CHECK
list_dict[z][mz_poz].append(RT_poz) # insert the starting RT of new isotope
pred_start[z]=RT_poz #keep track of starting RT
pred_RT[z]=RT_poz
else:
# create a new array in this slot
list_dict[z][mz_poz] = deque()#[RT_poz]
list_dict[z][mz_poz].append(RT_poz)
mz_used_before[z]=1
pred_start[z]=RT_poz
pred_RT[z]=RT_poz
for i in range (1, total_class):
if mz_used_before[i]==1:
if pred_start[i]==pred_RT[i]: # the RT span of this isotope is only .01 minute (one step) then remove it
list_dict[i][mz_poz].pop()
else: #if the RT span of current isotope is => 2 step (.02 minute) then keep it
list_dict[i][mz_poz].append(round(pred_RT[i], 2))
list_dict[i][mz_poz].append(-1)
# all rt done for one mz
#one stripe done
current_mz=round(current_mz+(mz_window)*mz_unit, mz_resolution) ## <------
# followings are tabbed back
time_elapsed=time()-start_time
print(time_elapsed)
print('total time taken %g'%(time()-total_time))
print('writing')
f=open(topath+sample_name+'_IsoDetecting_scanned_result_'+start_mz, 'wb') #v3r2
pickle.dump([list_dict,float(start_mz)], f, protocol=3) #all mz_done
f.close()
print('done')