add functionality to parse spectra directly from ms2spectrum objects … #253
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new function to the core processing workflow of the
ms2pippackage, enabling direct handling of PSMs (peptide-spectrum matches) that already have attachedMS2Spectrumobjects. Additionally, it makes necessary imports and updates the package's public API to expose this new functionality.New processing function for pre-attached spectra:
process_MS2_spectrafunction tocore.py, allowing users to process PSMs with pre-attachedMS2Spectrumobjects, including spectrum extraction, prediction, and optional correlation computation. This function streamlines workflows where spectra are already parsed and available in memory.API and import updates:
MS2Spectrumfromms2rescore_rsincore.pyto support the new processing function.process_observed_spectrato the package's public API in__init__.py, making the new processing capability accessible to users.