forked from compomics/moFF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
moff_all.py
executable file
·461 lines (400 loc) · 23.8 KB
/
moff_all.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
#!/usr/bin/env python
import argparse
import ast
import configparser
import gc
import json
import logging.config
import multiprocessing
import os
import sys
import time
import numpy as np
import pandas as pd
import moff
import moff_mbr
log = logging.getLogger(__name__)
log.setLevel(logging.DEBUG)
"""moFF: entry point where to run moFF and all its functions """
if __name__ == '__main__':
multiprocessing.freeze_support()
parser_1 = argparse.ArgumentParser(
description='moFF match between run and apex module input parameter', add_help=False)
parser_1.add_argument('--config_file', dest='config_file', action='store',
help='specify a moFF parameter file ', required=False)
args, remaining_argv = parser_1.parse_known_args()
if args.config_file:
config = configparser.SafeConfigParser(allow_no_value=True)
config.read([args.config_file])
moFF_parameters = dict(config.items("moFF_parameters"))
# check if loc_in is set in the input file
if not ('loc_in' in moFF_parameters.keys() and 'raw_repo' in moFF_parameters.keys()):
moFF_parameters['tsv_list'] = moFF_parameters['tsv_list'].split(
' ')
if not ('raw_repo' in moFF_parameters.keys()):
moFF_parameters['raw_list'] = moFF_parameters['raw_list'].split(
' ')
if not ('tol' in moFF_parameters.keys()):
exit('you must specify the tollerance in the configuration file ')
moFF_parameters['tol'] = float(moFF_parameters['tol'])
moFF_parameters['xic_length'] = float(moFF_parameters['xic_length'])
moFF_parameters['rt_peak_win'] = float(moFF_parameters['rt_peak_win'])
moFF_parameters['rt_peak_win_match'] = float(
moFF_parameters['rt_peak_win_match'])
moFF_parameters['peptide_summary'] = True if moFF_parameters['peptide_summary'] != '' else False
moFF_parameters['w_comb'] = True if moFF_parameters['w_comb'] != '' else False
moFF_parameters['out_flag'] = True if moFF_parameters['out_flag'] != '' else False
moFF_parameters['w_filt'] = float(moFF_parameters['w_filt'])
moFF_parameters['quantile_thr_filtering'] = float(moFF_parameters['quantile_thr_filtering'])
moFF_parameters['cpu_num'] = int(moFF_parameters['cpu'])
moFF_parameters['sample_size'] = float(moFF_parameters['sample_size'])
moFF_parameters['match_filter'] = True if moFF_parameters['match_filter'] != '' else False
args_1, remaining_argv = parser_1.parse_known_args()
parser = argparse.ArgumentParser(parents=[parser_1],
description=__doc__,
formatter_class=argparse.RawDescriptionHelpFormatter, )
parser = argparse.ArgumentParser(
description='moFF match between run and apex module input parameter')
parser.add_argument('--loc_in', dest='loc_in', action='store',
help='specify the folder of the input MS2 peptide list files', required=False)
parser.add_argument('--tsv_list', dest='tsv_list', action='store', nargs='*',
help='specify the mzid file as a list', required=False)
parser.add_argument('--raw_list', dest='raw_list', action='store',
nargs='*', help='specify the raw file as a list', required=False)
parser.add_argument('--sample', dest='sample', action='store',
help='specify witch replicated to use for mbr reg_exp are valid', required=False)
parser.add_argument('--ext', dest='ext', action='store', default='txt',
help='specify the file extentention of the input like. Default value: txt', required=False)
parser.add_argument('--log_label', dest='log_label', action='store', default='moFF',
help='a label name to use for the log file. Default value: moFF', required=False)
parser.add_argument('--w_filt', dest='w_filt', action='store', default=2,
help='width value of the filter k * mean(Dist_Malahobis). Default value: 2', required=False)
parser.add_argument('--out_flag', dest='out_flag', action='store_true', default=True,
help='if set, outliers for rt time allignment are filtered. Default value: True',
required=False)
parser.add_argument('--w_comb', dest='w_comb', action='store_true', default=False,
help='if set, RT model combination is weighted using traing model errors: Default value: False',
required=False)
parser.add_argument('--tol', dest='tol', action='store', default=10, type=float,
help='specify the tollerance parameter in ppm. Default value: 10', required=False)
parser.add_argument('--xic_length', dest='xic_length', action='store', type=float, default=3,
help='specify rt window for xic (minutes). Default value: 3', required=False)
parser.add_argument('--rt_peak_win', dest='rt_peak_win', action='store', type=float, default=1,
help='specify the time windows for the peak (minutes). Default value: 1', required=False)
parser.add_argument('--rt_peak_win_match', dest='rt_peak_win_match', action='store', type=float, default=1.2,
help='specify the time windows for the matched peptide peak (minutes). Default value: 1.2 ',
required=False)
parser.add_argument('--raw_repo', dest='raw_repo', action='store',
help='specify the raw file repository ', required=False)
parser.add_argument('--loc_out', dest='loc_out', action='store', default='', help='specify the folder output',
required=False)
parser.add_argument('--rt_feat_file', dest='rt_feat_file', action='store',
help='specify the file that contains the features to use in the match-between-run RT prediction ',
required=False)
parser.add_argument('--peptide_summary', dest='peptide_summary', action='store_true', default=False,
help='if set, export a peptide intesity summary tab-delited file. Default value: False',
required=False)
parser.add_argument('--tag_pepsum', dest='tag_pepsum', action='store', type=str, default='moFF_run',
help='a tag text used for peptide summary file name (peptide_summary_intensity_ + tag + .tab ). Default value: moFF_run ',
required=False)
parser.add_argument('--match_filter', dest='match_filter', action='store_true', default=False,
help='If set, filtering on the matched peak is activated. Default value: False', required=False)
parser.add_argument('--ptm_file', dest='ptm_file', action='store', default='ptm_setting.json',
help='name of json ptm file. default file ptm_setting.json ', required=False)
parser.add_argument('--quantile_thr_filtering', dest='quantile_thr_filtering', action='store', type=float,
default=0.75,
help='quantile value used to compute the filtering threshold for the matched peak .Default value: 0.75',
required=False)
parser.add_argument('--sample_size', dest='sample_size', action='store', type=float, default=0.20,
help='percentage of MS2 peptide used to estimated the threshold. Default value: 0.20',
required=False)
parser.add_argument('--mbr', dest='mbr', action='store', type=str, default='on',
help='select the moFF workflow: on to run mbr + apex , off to run only apex, only to run obnly mbr. Default value: on ',
required=False)
parser.add_argument('--cpu', dest='cpu_num', action='store', type=int, default=0,
help='number of cpu. as default value it will detect automaticaly the CPU number in your machine.',
required=False)
if args.config_file:
# load from config file and load the remaining parametes
parser.set_defaults(**moFF_parameters)
args = parser.parse_args(remaining_argv)
else:
# normal case for the input parsing
args = parser.parse_args()
# init global logger
ch = logging.StreamHandler()
ch.setLevel(logging.ERROR)
log.addHandler(ch)
if args.tol is None:
exit('you must specify the tollerance in ppm ')
if (args.tsv_list is None) and (args.loc_in is None) and (args.raw_list is None) and (args.raw_repo is None):
exit('you must specify the input and raw files ')
if (args.tsv_list is not None) and (args.loc_in is not None) and (args.raw_list is not None) and (
args.raw_repo is not None):
exit('you must specify the input and raw files or using: --tsv_list and --raw_list or --loc_in and --raw_repo ')
else:
if ((args.tsv_list is None) and (args.raw_list is not None)) or (
(args.tsv_list is not None) and (args.raw_list is None)):
exit(
'Missing information: using --tsv_list you must specify the raw file with --raw_list ')
if ((args.loc_in is None) and (args.raw_repo is not None)) or (
(args.loc_in is not None) and (args.raw_repo is None)):
exit(
'Missing information: using --loc_in you must specify the raw file with --raw_repo ')
if args.loc_out != '':
if not (os.path.isdir(args.loc_out)):
os.makedirs(args.loc_out)
log.critical("created output folder %r", args.loc_out)
config = configparser.RawConfigParser()
config.read(os.path.join(os.path.dirname(
os.path.realpath(sys.argv[0])), 'moff_setting.properties'))
# just for Galaxy input is possible to use one big input file and a list of raw file.
# the big file must have the result of each raw file and the columns 'Spectrum File' should be availabe
# This option work only with PS report using only --tsv_list and --raw_list
if ( args.tsv_list is not None) and ( args.raw_list is not None) and (len(args.tsv_list)==1) :
data_temp= pd.read_csv(args.tsv_list[0],sep="\t")
if moff.check_ps_input_data(data_temp.columns.tolist(), ast.literal_eval(config.get('moFF', 'ps_default_export_v1'))) == 1:
# split the data input file only if inave more than ONE raw file and tha input file contain identification for more the ONE run
if len(data_temp['Spectrum File'].unique())> 1 and len(args.raw_list) > 1:
output_list_loc=[]
for file in data_temp['Spectrum File'].unique():
data_temp[data_temp['Spectrum File']== file].to_csv(os.path.join(os.path.split(args.tsv_list[0])[0],file.split('.')[0]+ '.txt')
, sep='\t' , index=False )
output_list_loc.append(os.path.join(os.path.split(args.tsv_list[0])[0],file.split('.')[0]+ '.txt') )
if len(args.raw_list) != len(output_list_loc):
exit('-- Number of raw file is different to the number of input sources detectd in your one input file --')
#sort them to be sure about the association between input - raw file
args.raw_list= sorted(args.raw_list)
args.tsv_list= sorted(output_list_loc)
#clean dataset thta I don use anymore
del data_temp
gc.collect()
##---
# fixed variable number of split and also number of CPU presence in the macine
# change this variable with repset to the machine setting of the user
if args.cpu_num > 0:
num_CPU = args.cpu_num
else:
num_CPU = multiprocessing.cpu_count()
# only mbr
if 'only' in args.mbr:
log.critical('starting matching between run module (mbr)')
res_state, output_list_loc = moff_mbr.run_mbr(args)
if res_state == -1:
exit('An error is occurred during the writing of the mbr file')
else:
log.critical('end matching between run module (mbr)')
exit()
if 'on' in args.mbr:
log.critical('Matching between run module (mbr)')
res_state, output_list_loc = moff_mbr.run_mbr(args)
# --- debug version-- just to run skip the mbr in for special cases
# res_state= 1
# output_list_loc =[]
# for item in os.listdir(args.loc_in):
# #log.critical(item)
# if os.path.isfile(os.path.join(args.loc_in, item)):
# if os.path.join(args.loc_in, item).endswith('.' + args.ext):
# mbr_list_loc.append(os.path.join(args.loc_in, item))
if res_state == -1:
exit('An error is occurred during the writing of the mbr file')
if args.tsv_list is not None:
# input list of raw and tsv file
if len(args.tsv_list) != len(args.raw_list):
exit(
'Error: number of the input files is different from the number of raw files')
# in case list of file as input , mbr_output is written in local folder
folder = os.path.join('mbr_output')
else:
folder = os.path.join(args.loc_in, 'mbr_output')
log.critical('Apex module... ')
if 'off' in args.mbr:
# put everython in mbr_loc
output_list_loc = []
if not (args.loc_in is None):
for item in os.listdir(args.loc_in):
# log.critical(item)
if os.path.isfile(os.path.join(args.loc_in, item)):
if os.path.join(args.loc_in, item).endswith('.' + args.ext):
output_list_loc.append(os.path.join(args.loc_in, item))
else:
output_list_loc = args.tsv_list
for c, file_name in enumerate(output_list_loc):
name = os.path.basename(file_name).split('.')[0]
moff.check_log_existence(os.path.join(
args.loc_out, name + '__moff.log'))
fh = logging.FileHandler(os.path.abspath(
os.path.join(args.loc_out, name + '__moff.log')), mode='a')
fh.setLevel(logging.DEBUG)
log.addHandler(fh)
log_file = os.path.join(args.loc_out, name + '__moff.log')
tol = args.tol
h_rt_w = args.xic_length
s_w = args.rt_peak_win
s_w_match = args.rt_peak_win_match
if args.tsv_list is not None:
# raw_list contains the current raws file provided by args.raw_list option
raw_list = args.raw_list[c]
else:
raw_list = None
loc_raw = args.raw_repo if not None else raw_list
loc_output = args.loc_out
df = pd.read_csv(file_name, sep="\t")
# add same safety checks len > 1
# Flag for pride pipeline, or to set from second to minute as input rt time scale
moff_pride_flag = False
if moff.check_ps_input_data(df.columns.tolist(), ast.literal_eval(config.get('moFF', 'moffpride_format'))) == 1:
# if it is a moff_pride data I do not check aany other requirement
log.critical('moffPride input detected')
moff_pride_flag = True
else:
if not 'matched' in df.columns:
# check if it is a PS file ,
list_name = df.columns.values.tolist()
# get the lists of PS defaultcolumns from properties file
list = ast.literal_eval(config.get(
'moFF', 'ps_default_export_v1'))
# here it controls if the input file is a PS export; if yes it maps the input in right moFF name
if moff.check_ps_input_data(list_name, list) == 1:
# map the columns name according to moFF input requirements
if not args.peptide_summary:
data_ms2, list_name = moff.map_ps2moff(
df, 'col_must_have_apex')
else:
data_ms2, list_name = moff.map_ps2moff(
df, 'col_must_have_mbr')
# check if the field names are good, in case of pep summary we need same req as in mbr
if args.peptide_summary:
if moff.check_columns_name(df.columns.tolist(),
ast.literal_eval(config.get('moFF', 'col_must_have_mbr')), log) == 1:
exit('ERROR minimal field requested are missing or wrong')
else:
if moff.check_columns_name(df.columns.tolist(),
ast.literal_eval(config.get('moFF', 'col_must_have_apex')), log) == 1:
exit('ERROR minimal field requested are missing or wrong')
# check if filtering is UP and the input data is not suitable for mbr filtering
if 'off' in args.mbr and args.match_filter:
if not 'matched' in df.columns:
exit(
'mbr peptide not detect in the input file, filtering of mbr peptides is not possible. Please set --match_filter to 0 and run again.')
if not ('mod_peptide' in df.columns):
exit(
'mod_peptide sequence is not present your the input file, filtering of mbr peptides is not possible. Please check your infput file or parameter settings')
log.critical('Starting Apex for %s ...', file_name)
log.critical('moff Input file: %s XIC_tol %s XIC_win %4.4f moff_rtWin_peak %4.4f ' % (
file_name, tol, h_rt_w, s_w))
if args.raw_list is None:
log.critical('RAW file from folder : %s' % loc_raw)
else:
log.critical('RAW file : %s' % args.raw_list)
log.critical('Output file in : %s', loc_output)
# load the ptm file IF
# mbr on with filtering UP
# mbr off with filtering flag UP (already check if inputdata contains matched field.)
if 'matched' in df.columns and args.match_filter:
log.critical('Apex module has detected mbr peptides')
with open(os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), args.ptm_file)) as data_file:
ptm_map = json.load(data_file)
name = os.path.basename(file_name).split('.')[0]
# IF raw_list contains mzML file --> I m going to read the file,
# one time just to save all the scan Id and their RT.
rt_list, id_list = moff.scan_mzml(raw_list)
# control id the folder exist
moff.check_output_folder_existence(loc_output)
# control if exist the same log file : avoid appending output
# moff.check_log_existence(os.path.join(loc_output, name + '__moff.log'))
if args.match_filter:
with open(os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), args.ptm_file)) as data_file:
ptm_map = json.load(data_file)
start_time = time.time()
moff.set_logger(log_file)
log.critical('starting estimation of quality measures..')
# run estimation_parameter
rt_drift, not_used_measure, error_ratio = moff.estimate_parameter(
df, name, raw_list, tol, h_rt_w, s_w, s_w_match, loc_raw, loc_output, rt_list, id_list, moff_pride_flag,
ptm_map, args.sample_size, args.quantile_thr_filtering, args.match_filter, log_file, num_CPU)
log.critical(
'quality threhsold estimated : MAD_retetion_time %r Ratio Int. FakeIsotope/1estIsotope: %r' % (
rt_drift, error_ratio))
log.critical('starting apex quantification of MS2 peptides..')
log.info('log of MS2 identified peptide not retrived : ..')
moff.clean_json_temp_file(loc_output)
myPool = multiprocessing.Pool(num_CPU)
data_split = np.array_split(
df[df['matched'] == 0], num_CPU)
result = {}
offset = 0
for df_index in range(0, len(data_split)):
result[df_index] = myPool.apply_async(moff.apex_multithr, args=(
data_split[df_index], name, raw_list, tol, h_rt_w, s_w, s_w_match,
loc_raw, loc_output, offset, rt_list, id_list, moff_pride_flag, ptm_map, 0, rt_drift, error_ratio, 0,
log_file))
offset += len(data_split[df_index])
# save ms2 resulr
ms2_data = moff.save_moff_apex_result(result)
log.critical('end apex quantification of MS2 peptides..')
log.critical(
'starting quantification with matched peaks using the quality filtering...')
log.critical('initial # matched peaks: %r',
df[df['matched'] == 1].shape)
moff.clean_json_temp_file(loc_output)
log.info('Log Matched Peptides filtered :')
data_split = np.array_split(
df[df['matched'] == 1], num_CPU)
result = {}
offset = 0
for df_index in range(0, len(data_split)):
result[df_index] = myPool.apply_async(moff.apex_multithr, args=(
data_split[df_index], name, raw_list, tol, h_rt_w, s_w, s_w_match,
loc_raw, loc_output, offset, rt_list, id_list, moff_pride_flag, ptm_map, 0, rt_drift, error_ratio,
args.match_filter, log_file))
offset += len(data_split[df_index])
myPool.close()
myPool.join()
log.critical('end apex quantification matched peptide ')
log.critical('Computational time (sec): %4.4f ' %
(time.time() - start_time))
matched_peak = moff.save_moff_apex_result(result)
log.critical('after filtering matched peak #%r ',
matched_peak.shape[0])
# concat the ms2 res + mateched result
final_res = pd.concat([ms2_data, matched_peak])
# save result
final_res.to_csv(os.path.join(loc_output, os.path.basename(
name).split('.')[0] + "_moff_result.txt"), sep="\t", index=False)
moff.clean_json_temp_file(loc_output)
else:
moff.set_logger(log_file)
log.critical(
'starting peptide quantification (ms2 / matched ) ..')
myPool = multiprocessing.Pool(num_CPU)
data_split = np.array_split(df, num_CPU)
result = {}
offset = 0
log.info('log of MS2 identified peptide not retrived ')
start_time = time.time()
for df_index in range(0, len(data_split)):
result[df_index] = myPool.apply_async(moff.apex_multithr,
args=(data_split[df_index], name, raw_list, tol, h_rt_w,
s_w, s_w_match, loc_raw, loc_output, offset, rt_list,
id_list, moff_pride_flag, None, 0, -1, -1, 0, log_file))
offset += len(data_split[df_index])
myPool.close()
myPool.join()
log.critical('end apex quantification (ms2 / matched ) peptides')
log.critical('computational time (sec): %4.4f ' %
(time.time() - start_time))
start_time_2 = time.time()
result = moff.save_moff_apex_result(result)
result.to_csv(os.path.join(loc_output, os.path.basename(name).split(
'.')[0] + "_moff_result.txt"), sep="\t", index=False)
moff.clean_json_temp_file(loc_output)
fh.close()
log.removeHandler(fh)
moff.detach_handler()
moff.clean_json_temp_file(loc_output)
if args.peptide_summary:
state = moff.compute_peptide_matrix(args.loc_out, log, args.tag_pepsum)
if not state:
log.critical(
'Error during the computation of the peptide intensity summary file: Check the output folder that contains the moFF results file')