File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1- """MS²Rescore: Sensitive PSM rescoring with predicted MS² peak intensities and RTs ."""
1+ """Modular and user-friendly platform for AI-assisted rescoring of peptide identifications ."""
22
3- __version__ = "3.2.0.dev1"
3+ __version__ = "3.2.0.dev2"
4+ __all__ = [
5+ "parse_configurations" ,
6+ "rescore" ,
7+ ]
48
59from warnings import filterwarnings
610
1216 module = "psims.mzmlb" ,
1317)
1418
15- from ms2rescore .config_parser import parse_configurations # noqa: F401 E402
16- from ms2rescore .core import rescore # noqa: F401 E402
19+ from ms2rescore .config_parser import parse_configurations # noqa: E402
20+ from ms2rescore .core import rescore # noqa: E402
Original file line number Diff line number Diff line change 2525
2626import logging
2727import multiprocessing
28+ import os
2829import warnings
2930from itertools import chain
3031from typing import List , Optional , Union
@@ -194,6 +195,7 @@ def add_features(self, psm_list: PSMList) -> None:
194195 spectrum_filename = infer_spectrum_path (self .spectrum_path , run )
195196 logger .debug (f"Using spectrum file `{ spectrum_filename } `" )
196197 try :
198+ os .environ .pop ("CUDA_VISIBLE_DEVICES" , None )
197199 ms2pip_results = correlate (
198200 psms = psm_list_run ,
199201 spectrum_file = str (spectrum_filename ),
You can’t perform that action at this time.
0 commit comments