add functionality to parse spectra directly from ms2spectrum objects …#253
Open
ArthurDeclercq wants to merge 3 commits intoreleasesfrom
Open
add functionality to parse spectra directly from ms2spectrum objects …#253ArthurDeclercq wants to merge 3 commits intoreleasesfrom
ArthurDeclercq wants to merge 3 commits intoreleasesfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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, like within ms2rescore.API and import updates:
MS2Spectrumfromms2rescore_rsincore.pyto support the new processing function.process_MS2_spectrato the package's public API in__init__.py, making the new processing capability accessible to users.