-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcorems_run.py
executable file
·329 lines (248 loc) · 9.14 KB
/
corems_run.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
#!/usr/bin/env python3
# I used a script template created by Ken Youens-Clark
# from the Tiny Python Projects
# (https://github.com/kyclark/tiny_python_projects)
"""
Author : Nathalia Graf Grachet
Date : 2021-01-06
Purpose: Wrapper for CoreMS
"""
import argparse
from typing import NamedTuple
import os
import errno
import glob
import datetime
import pandas as pd
import numpy as np
from corems.transient.input.brukerSolarix import ReadBrukerSolarix
from corems.encapsulation.factory.parameters import MSParameters
from corems.mass_spectrum.calc.Calibration import MzDomainCalibration
from corems.molecular_id.search.molecularFormulaSearch import SearchMolecularFormulas
from corems.molecular_id.factory.classification import HeteroatomsClassification
import corems
class Args(NamedTuple):
""" Command-line arguments """
positional: str
string_arg: str
int_arg: int
calibration: bool
# define Python user-defined exceptions
class NeedCalibrationFile(Exception):
"""Base class for other exceptions"""
pass
# --------------------------------------------------
def get_args() -> Args:
""" Get command-line arguments """
parser = argparse.ArgumentParser(
description="""
Wrapper for CoreMS. Limited argumants.
""",
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
parser.add_argument('data',
metavar='str',
help='Path to directory where Bruker .d files are located')
parser.add_argument('-ref',
'--reference',
metavar='str',
type=str,
help='Path to calibration file',
default=None)
parser.add_argument('-ppm',
'--calib_ppm',
help='Calibration threshold in ppm',
metavar='int',
type=int,
default=10)
parser.add_argument('-c',
'--calibration',
help='Perform calibration?',
metavar='bool',
type=str,
default='False')
parser.add_argument('-o',
'--outdir',
help='Name for output dir',
metavar='str',
type=str,
default='corems_output')
args = parser.parse_args()
return args
# --------------------------------------------------
def main() -> None:
"""
Does it all
"""
args = get_args()
# print(args)
print(timestamp())
print()
print("CoreMS version: {}".format(corems.__version__))
validate_input_files(args.data)
list_files = glob.glob(args.data+'/*.d')
ref = args.reference
validate_calibration_file(ref)
validate_output_dir()
# Set parameters for CoreMS
MSParameters.mass_spectrum.threshold_method = 'signal_noise'
MSParameters.mass_spectrum.s2n_threshold = 6
MSParameters.molecular_search.min_ppm_error = -10 # +/- 10 ppm
MSParameters.molecular_search.max_ppm_error = 10
MSParameters.molecular_search.mz_error_range = 1.5 # default 1.5
MSParameters.molecular_search.error_method = None # default is None
MSParameters.molecular_search.mz_error_average = 0 # default is 0
MSParameters.molecular_search.score_method = 'prob_score' # prob_score
MSParameters.molecular_search.min_mz = 200
MSParameters.molecular_search.max_mz = 1000
MSParameters.molecular_search.usedAtoms['C'] = (1, 90)
MSParameters.molecular_search.usedAtoms['H'] = (4, 200)
MSParameters.molecular_search.usedAtoms['O'] = (1, 20)
MSParameters.molecular_search.usedAtoms['N'] = (0, 3)
MSParameters.molecular_search.usedAtoms['S'] = (0, 1)
MSParameters.molecular_search.usedAtoms['P'] = (0, 1)
print()
if args.calibration == "True":
MSParameters.mass_spectrum.do_calibration = True
MSParameters.mass_spectrum.min_calib_ppm_error = -args.calib_ppm
MSParameters.mass_spectrum.max_calib_ppm_error = args.calib_ppm
print('With calibration at {} ppm'.format(args.calib_ppm))
else:
MSParameters.mass_spectrum.do_calibration = False
print('Without calibration')
print()
print('Start CoreMS')
# Start CoreMS run
# Open variables
result_SearchMF = []
df_coreMS = pd.DataFrame()
# loop over each file in the list_files
for file in list_files:
# get just the filename
filename = file.split('/')[-1]
print(filename)
print()
# import .d
mass_spectrum = import_d_files(file)
# print(mass_spectrum)
# do calibration, or don't
if args.calibration == 'True':
MzDomainCalibration(mass_spectrum, ref).run()
# Formula assignment
mass_spectrum.molecular_search_settings.url_database = "postgresql+psycopg2://coremsappdb:coremsapppnnl@localhost:5432/coremsapp"
SearchMolecularFormulas(mass_spectrum,
first_hit=True).run_worker_mass_spectrum()
# Get results from the SearchMolecularFormulas
result_SearchMF.append(get_searchMF_results(mass_spectrum, filename))
# get the table from mass spectrum obj
df = mass_spectrum.to_dataframe()
# remove formula with 13C
df = df[df['13C'].isnull()]
# add sample_id information
df['SampleID'] = filename
# concat with the df_coreMS (==final df)
df_coreMS = pd.concat([df_coreMS, df], axis=0)
print()
print()
# make a df from result_SearchMF
col_list = [
'n_peaks_assigned', 'n_peaks_n_assigned', 'p_total', 'rel_abundance',
'RMS_error_ppm', 'Calibration_points', 'SampleID'
]
df_SearchMF = pd.DataFrame(result_SearchMF, columns = col_list)
# save it
df_SearchMF.to_csv(
os.path.join(args.outdir, "summary_SearchMolecularFormulas.csv"),
index = False
)
# save the corems final df
df_coreMS.to_csv(
os.path.join(args.outdir, "CoreMS_report.csv"),
index = False
)
print('CoreMS Concluded!')
print()
print(timestamp())
# --------------------------------------------------
def validate_output_dir():
"""
Validate if path to output exists
"""
args = get_args()
if os.path.exists(args.outdir):
print("\u2713 Output directory {} already exists".format(args.outdir))
else:
os.makedirs(args.outdir)
print("\u2713 Created output directory {}".format(args.outdir))
# --------------------------------------------------
def validate_input_files(directory):
"""
Validate if path to data directory where .d are exists
"""
list_files = glob.glob(directory+'/*.d')
if len(list_files) == 0:
raise FileNotFoundError(
errno.ENOENT,
os.strerror(errno.ENOENT),
args.outdir
)
else:
for file in list_files:
if os.path.exists(file):
print("\u2713 {}".format(file))
else:
raise FileNotFoundError(
errno.ENOENT,
os.strerror(errno.ENOENT),
args.outdir
)
# --------------------------------------------------
def validate_calibration_file(calib_file):
"""
Validate if path to calibration file exists, if provided
"""
args = get_args()
if calib_file == None:
if args.calibration == 'False':
pass
else:
raise NeedCalibrationFile
else:
if os.path.exists(calib_file):
print("\u2713 {}".format(calib_file))
else:
raise FileNotFoundError(errno.ENOENT,
os.strerror(errno.ENOENT),
args.outdir)
# --------------------------------------------------
def import_d_files(file_d):
"""
Import a .d file as a mass_spectrum object
"""
bruker_reader = ReadBrukerSolarix(file_d)
bruker_transient = bruker_reader.get_transient()
mass_spectrum = bruker_transient.get_mass_spectrum(plot_result=False,
auto_process=True)
return mass_spectrum
# --------------------------------------------------
def get_searchMF_results(ms_obj, sample_id):
"""
Get the results from SearchMolecularFormulas()
"""
result_list = [
i for i in ms_obj.percentile_assigned(report_error=True)
]
# append n calibration points
result_list.append(ms_obj.calibration_points)
# append sampleid
result_list.append(sample_id)
return result_list
# --------------------------------------------------
def timestamp():
"""
Get date and time right now
"""
right_now = datetime.datetime.now()
return right_now.strftime("%b-%d-%Y @ %I:%M %p")
# --------------------------------------------------
if __name__ == '__main__':
main()