-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for building BiblioSpec libraries from MeroX proxl.xml files. #2388
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks okay to me. Obviously, Matt should review, as you have requested.
If a crosslinker has any neutral losses defined, it is assumed that those neutral losses result in the crosslinker being cleaved.
…k/20221117_BlibMeroXSupport
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for the delay. The blib changes look fine except for tabs. I'm looking into the MGF TITLE thing. It looks like SpectrumList::findSpotId does look up spectrum titles. But it requires the full title, not just a substring from it. That can be augmented though to address the MGF scan number issue you emailed about.
case PERCOLATOR_ANALYSIS: return blibMaker_.getScoreThreshold(GENERIC_QVALUE_INPUT); | ||
case PLINK_ANALYIS: return blibMaker_.getScoreThreshold(GENERIC_QVALUE_INPUT); | ||
case BYONIC_ANALYSIS: | ||
return blibMaker_.getScoreThreshold(BYONIC); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess your C# tab settings didn't get carried over to the C++ editor. :)
@@ -107,6 +107,8 @@ void ProxlXmlReader::startElement(const XML_Char* name, const XML_Char** attr) { | |||
analysisType_ = BYONIC_ANALYSIS; | |||
else if (program == "plink") | |||
analysisType_ = PLINK_ANALYIS; | |||
else if (program == "merox") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess your C# tab settings didn't get carried over to the C++ editor. :)
Hi @nickshulman , Looks like you actually added support for this variant of proXL. Do you remember why you picked "qvalue" instead of "score"? |
We usually do use a q value when it is present. We rarely use a native
score. What is "score"? Is it a probability value? If so what kind? e.g
expectation, posterior error probability, etc.
…On Mon, Nov 27, 2023 at 10:23 AM Matt Chambers ***@***.***> wrote:
Hi @nickshulman <https://github.com/nickshulman> ,
Looks like you actually added support for this variant of proXL. Do you
remember why you picked "qvalue" instead of "score"?
—
Reply to this email directly, view it on GitHub
<#2388 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACYBWUFTGZOS4X37LWBJQV3YGTLAZAVCNFSM6AAAAAASDYHJY6VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMRYGM4DGNZSHA>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
MeroX Score. According to Juan it's calculated across multiple files. Looks like it might be a -log score of expectation or probability (higher is better). |
Added support for building spectral libraries from MeroX proxl.xml files (requested by Juan)
(still need to add a BiblioSpec unit test)