Skip to content

Commit

Permalink
fixed Ralfs suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurDeclercq committed Apr 10, 2024
1 parent 1999039 commit 162f719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ms2rescore/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def _fill_missing_precursor_info(psm_list, config):
get_missing_values(psm_list, config, rt_required=rt_required, im_required=im_required)

# Check if values are now present
for value_name, required in [("retention_time", rt_required), ("ion_mobility", im_required)]):
for value_name, required in [("retention_time", rt_required), ("ion_mobility", im_required)]:
if required and (
0.0 in psm_list[value_name]
or None in psm_list[value_name]
Expand Down

0 comments on commit 162f719

Please sign in to comment.