Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
fix matched yes/no in the log
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Feb 6, 2017
1 parent 562b5bf commit db3eb02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moff.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def apex_multithr(data_ms2,name_file, raw_name, tol, h_rt_w, s_w, s_w_match, loc
log.info('peptide at line %i --> MZ: %4.4f RT: %4.4f',(offset_index +c +2), row['mz'], time_w)
temp_w = s_w
else:
log.info('peptide at line %i --> MZ: %4.4f RT: %4.4f matched (y/n): %i',(offset_index +c +2), row['mz'], time_w,mbr_flag)
log.info('peptide at line %i --> MZ: %4.4f RT: %4.4f matched (yes=1/no=0): %i',(offset_index +c +2), row['mz'], time_w,row['matched'])
# row['matched'])
if row['matched'] == 1:
temp_w = s_w_match
Expand Down

0 comments on commit db3eb02

Please sign in to comment.