@@ -58,6 +58,13 @@ impl Runner {
58
58
record. push_field ( ryu:: Buffer :: new ( ) . format ( feature. aligned_rt ) . as_bytes ( ) ) ;
59
59
record. push_field ( ryu:: Buffer :: new ( ) . format ( feature. predicted_rt ) . as_bytes ( ) ) ;
60
60
record. push_field ( ryu:: Buffer :: new ( ) . format ( feature. delta_rt_model ) . as_bytes ( ) ) ;
61
+ record. push_field ( ryu:: Buffer :: new ( ) . format ( feature. ims ) . as_bytes ( ) ) ;
62
+ record. push_field ( ryu:: Buffer :: new ( ) . format ( feature. predicted_ims ) . as_bytes ( ) ) ;
63
+ record. push_field (
64
+ ryu:: Buffer :: new ( )
65
+ . format ( feature. delta_ims_model )
66
+ . as_bytes ( ) ,
67
+ ) ;
61
68
record. push_field ( itoa:: Buffer :: new ( ) . format ( feature. matched_peaks ) . as_bytes ( ) ) ;
62
69
record. push_field ( itoa:: Buffer :: new ( ) . format ( feature. longest_b ) . as_bytes ( ) ) ;
63
70
record. push_field ( itoa:: Buffer :: new ( ) . format ( feature. longest_y ) . as_bytes ( ) ) ;
@@ -174,6 +181,9 @@ impl Runner {
174
181
"aligned_rt" ,
175
182
"predicted_rt" ,
176
183
"delta_rt_model" ,
184
+ "ion_mobility" ,
185
+ "predicted_mobility" ,
186
+ "delta_mobility" ,
177
187
"matched_peaks" ,
178
188
"longest_b" ,
179
189
"longest_y" ,
@@ -261,6 +271,7 @@ impl Runner {
261
271
record. push_field ( ryu:: Buffer :: new ( ) . format ( feature. calcmass ) . as_bytes ( ) ) ;
262
272
record. push_field ( filenames[ feature. file_id ] . as_bytes ( ) ) ;
263
273
record. push_field ( ryu:: Buffer :: new ( ) . format ( feature. rt ) . as_bytes ( ) ) ;
274
+ record. push_field ( ryu:: Buffer :: new ( ) . format ( feature. ims ) . as_bytes ( ) ) ;
264
275
record. push_field ( itoa:: Buffer :: new ( ) . format ( feature. rank ) . as_bytes ( ) ) ;
265
276
record. push_field (
266
277
itoa:: Buffer :: new ( )
@@ -336,6 +347,12 @@ impl Runner {
336
347
. format ( feature. delta_rt_model . clamp ( 0.001 , 1.0 ) . sqrt ( ) )
337
348
. as_bytes ( ) ,
338
349
) ;
350
+ record. push_field ( ryu:: Buffer :: new ( ) . format ( feature. predicted_ims ) . as_bytes ( ) ) ;
351
+ record. push_field (
352
+ ryu:: Buffer :: new ( )
353
+ . format ( feature. delta_ims_model )
354
+ . as_bytes ( ) ,
355
+ ) ;
339
356
record. push_field ( itoa:: Buffer :: new ( ) . format ( feature. matched_peaks ) . as_bytes ( ) ) ;
340
357
record. push_field ( itoa:: Buffer :: new ( ) . format ( feature. longest_b ) . as_bytes ( ) ) ;
341
358
record. push_field ( itoa:: Buffer :: new ( ) . format ( feature. longest_y ) . as_bytes ( ) ) ;
@@ -384,6 +401,7 @@ impl Runner {
384
401
"CalcMass" ,
385
402
"FileName" ,
386
403
"retentiontime" ,
404
+ "ion_mobility" ,
387
405
"rank" ,
388
406
"z=2" ,
389
407
"z=3" ,
@@ -403,6 +421,8 @@ impl Runner {
403
421
"aligned_rt" ,
404
422
"predicted_rt" ,
405
423
"sqrt(delta_rt_model)" ,
424
+ "predicted_mobility" ,
425
+ "sqrt(delta_mobility)" ,
406
426
"matched_peaks" ,
407
427
"longest_b" ,
408
428
"longest_y" ,
0 commit comments