Skip to content
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

Removed 131C ions from TMT10 #2314

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions MetaMorpheus/EngineLayer/Mods/tmt.txt
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,6 @@ DI HCD:C7 H15 C{13}1 N{15}1
DI HCD:C6 H15 C{13}2 N{15}1
#NL HCD:C5 H15 C{13}3 N{15}1
DI HCD:C5 H15 C{13}3 N{15}1
#NL HCD:C3 N1 H15 C{13}5
DI HCD:C3 N1 H15 C{13}5
#NL HCD:C7 N1 H15 C{13}1
DI HCD:C7 N1 H15 C{13}1
#NL HCD:C6 N1 H15 C{13}2
Expand All @@ -184,8 +182,6 @@ DI HCD:C7 H15 C{13}1 N{15}1
DI HCD:C6 H15 C{13}2 N{15}1
#NL HCD:C5 H15 C{13}3 N{15}1
DI HCD:C5 H15 C{13}3 N{15}1
#NL HCD:C3 N1 H15 C{13}5
DI HCD:C3 N1 H15 C{13}5
#NL HCD:C7 N1 H15 C{13}1
DI HCD:C7 N1 H15 C{13}1
#NL HCD:C6 N1 H15 C{13}2
Expand Down
12 changes: 12 additions & 0 deletions MetaMorpheus/Test/Multiplex_Labeling_TMT_iTRAQ.cs
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,18 @@ public static void TestTmtQuantificationOutput()
Directory.Delete(outputFolder, true);
}

[Test]
public static void TestTMT10vs11()
{
var tmt10 = GlobalVariables.AllModsKnown
.First(m => m.ModificationType == "Multiplex Label" && m.IdWithMotif.Contains("TMT10"));
var tmt11 = GlobalVariables.AllModsKnown
.First(m => m.ModificationType == "Multiplex Label" && m.IdWithMotif.Contains("TMT11"));

Assert.That(tmt10.DiagnosticIons[DissociationType.HCD].Count, Is.EqualTo(10));
Assert.That(tmt10.DiagnosticIons[DissociationType.HCD].Max(), Is.LessThan(tmt11.DiagnosticIons[DissociationType.HCD].Max()));
}

[Test]
public static void TestDiLeuQuantificationOutput()
{
Expand Down