Skip to content

Commit

Permalink
Add LPI and LPG NH4adduct spectrum (#499)
Browse files Browse the repository at this point in the history
* Add LPI[M+NH4]+ and  LPG[M+NH4]+ annotation method

---------

Co-authored-by: mikiko.takahashi <[email protected]>
  • Loading branch information
mikikot113 and mikiko.takahashi authored Jan 27, 2025
1 parent 8d9dc29 commit c560b4b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Common/CommonStandard/Lipidomics/MsmsCharacterization.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6366,7 +6366,7 @@ public static LipidMolecule JudgeIfLysopg(IMSScanProperty msScanProp, double ms2
}
else if (adduct.IonMode == IonMode.Positive)
{ // positive ion mode
if (adduct.AdductIonName == "[M+H]+")
if (adduct.AdductIonName == "[M+H]+" || adduct.AdductIonName == "[M+NH4]+")
{
// seek Header loss (MG+ + chain Acyl)
var threshold = 5.0;
Expand Down Expand Up @@ -6422,7 +6422,7 @@ public static LipidMolecule JudgeIfLysopi(IMSScanProperty msScanProp, double ms2
}
else if (adduct.IonMode == IonMode.Positive)
{ // positive ion mode
if (adduct.AdductIonName == "[M+H]+")
if (adduct.AdductIonName == "[M+H]+"|| adduct.AdductIonName == "[M+NH4]+")
{
// seek Header loss (MG+ + chain Acyl)
var threshold = 5.0;
Expand Down
2 changes: 2 additions & 0 deletions src/Common/CommonStandard/Resources/LbmQueries.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ LPC [M+Na]+ Positive TRUE
LPE [M+H]+ Positive TRUE
LPS [M+H]+ Positive FALSE
LPG [M+H]+ Positive FALSE
LPG [M+NH4]+ Positive FALSE
LPI [M+H]+ Positive FALSE
LPI [M+NH4]+ Positive FALSE
PC [M+H]+ Positive TRUE
PC [M+Na]+ Positive TRUE
PE [M+H]+ Positive TRUE
Expand Down

0 comments on commit c560b4b

Please sign in to comment.