ProteoWizard
Classes | Functions | Variables
PeptideTest.cpp File Reference
#include "pwiz/utility/misc/unit.hpp"
#include "Peptide.hpp"
#include "pwiz/utility/misc/Std.hpp"
#include "boost/thread/thread.hpp"
#include "boost/thread/barrier.hpp"

Go to the source code of this file.

Classes

struct  TestPeptide
struct  TestModification
struct  TestModifiedPeptide
struct  TestOperator
struct  TestFragmentation

Functions

void test ()
void peptideTest ()
void modificationTest ()
void operatorTest ()
void writeFragmentation (const Peptide &p, const Fragmentation &f, ostream &os)
void fragmentTest ()
void testThreadSafetyWorker (boost::barrier *testBarrier)
void testThreadSafety (const int &testThreadCount)
int main (int argc, char *argv[])

Variables

ostream * os_ = 0
const char * sequences []
TestPeptide testPeptides []
const size_t testPeptidesSize = sizeof(testPeptides)/sizeof(TestPeptide)
TestModification testModifications []
TestModifiedPeptide testModifiedPeptides []
const size_t testModificationsSize = sizeof(testModifications)/sizeof(TestModification)
const size_t testModifiedPeptidesSize = sizeof(testModifiedPeptides)/sizeof(TestModifiedPeptide)
const TestOperator testOperators []
const size_t testOperatorsSize = sizeof(testOperators)/sizeof(TestOperator)
const TestFragmentation testFragmentations []
const size_t testFragmentationsSize = sizeof(testFragmentations)/sizeof(TestFragmentation)

Function Documentation

void test ( )

Definition at line 39 of file PeptideTest.cpp.

References pwiz::proteome::Peptide::formula(), os_, and pwiz::proteome::Peptide::sequence().

{
Peptide angiotensin("DRVYIHPF");
if (os_) *os_ << "angiotensin: " << angiotensin.sequence() << " " << angiotensin.formula() << endl;
Peptide alpha16("WHWLQL");
if (os_) *os_ << "alpha16: " << alpha16.sequence() << " " << alpha16.formula() << endl;
}
void peptideTest ( )

Definition at line 79 of file PeptideTest.cpp.

References TestPeptide::avgMassNeutral, TestPeptide::avgMassPlus1, TestPeptide::avgMassPlus2, pwiz::proteome::Peptide::formula(), pwiz::proteome::Peptide::molecularWeight(), pwiz::chemistry::Formula::molecularWeight(), pwiz::proteome::Peptide::monoisotopicMass(), pwiz::chemistry::Formula::monoisotopicMass(), TestPeptide::monoMassNeutral, TestPeptide::monoMassPlus1, TestPeptide::monoMassPlus2, os_, pwiz::identdata::peptide(), TestPeptide::sequence, pwiz::proteome::Peptide::sequence(), testPeptides, testPeptidesSize, and unit_assert_equal.

Referenced by testThreadSafetyWorker().

{
for (size_t i=0; i < testPeptidesSize; ++i)
{
const TestPeptide& p = testPeptides[i];
double BIG_EPSILON = 0.001;
if (os_) *os_ << peptide.sequence() << ": " << peptide.formula() <<
" " << peptide.molecularWeight() << endl;
peptide = p.sequence; // test assignment
if (os_) *os_ << peptide.sequence() << ": " << peptide.formula() <<
" " << peptide.monoisotopicMass() <<
" " << peptide.molecularWeight() << endl;
unit_assert_equal(peptide.formula().monoisotopicMass(), p.monoMassNeutral, BIG_EPSILON);
unit_assert_equal(peptide.formula().molecularWeight(), p.avgMassNeutral, BIG_EPSILON);
unit_assert_equal(peptide.monoisotopicMass(), p.monoMassNeutral, BIG_EPSILON);
unit_assert_equal(peptide.molecularWeight(), p.avgMassNeutral, BIG_EPSILON);
}
}
void modificationTest ( )

Definition at line 411 of file PeptideTest.cpp.

References TestModifiedPeptide::avgMass, TestModification::deltaAvgMass, TestModification::deltaMonoMass, e(), pwiz::proteome::ModificationMap::end(), TestModifiedPeptide::exception, pwiz::proteome::ModificationMap::find(), pwiz::proteome::Peptide::formula(), TestModification::formula, boost::lexical_cast(), TestModifiedPeptide::md, ModificationParsing_Off, pwiz::proteome::Peptide::modifications(), TestModifiedPeptide::mods, TestModifiedPeptide::modsHaveFormulas, pwiz::proteome::Peptide::molecularWeight(), pwiz::chemistry::Formula::molecularWeight(), pwiz::proteome::Peptide::monoisotopicMass(), pwiz::chemistry::Formula::monoisotopicMass(), TestModifiedPeptide::monoMass, TestModifiedPeptide::mp, os_, pwiz::identdata::peptide(), pwiz::proteome::Peptide::sequence(), TestModifiedPeptide::sequence, testModifications, testModifiedPeptides, testModifiedPeptidesSize, unit_assert, unit_assert_equal, and unit_assert_throws_what.

Referenced by testThreadSafetyWorker().

{
for (size_t i=0; i < testModifiedPeptidesSize; ++i)
{
try
{
double monoDeltaMass = 0;
double avgDeltaMass = 0;
double BIG_EPSILON = 0.001;
if (p.exception != 0)
{
//unit_assert_throws_what(Peptide(p.sequence, p.mp, p.md), exception, string(p.exception)+p.sequence);
continue;
}
if (p.mp == ModificationParsing_Off || p.mods == NULL)
{
peptide = Peptide(p.sequence);
if (p.mods != NULL)
{
ModificationMap& modMap = peptide.modifications();
vector<string> tokens;
boost::split(tokens, p.mods, boost::is_space());
for (size_t i=0; i < tokens.size(); i+=2)
{
TestModification& mod = testModifications[lexical_cast<size_t>(tokens[i])];
int modOffset;
if (tokens[i+1] == "n")
modOffset = ModificationMap::NTerminus();
else if (tokens[i+1] == "c")
modOffset = ModificationMap::CTerminus();
else
modOffset = lexical_cast<int>(tokens[i+1]);
modMap[modOffset].push_back(Modification(mod.formula));
else
modMap[modOffset].push_back(Modification(mod.deltaMonoMass, mod.deltaAvgMass));
monoDeltaMass += mod.deltaMonoMass;
avgDeltaMass += mod.deltaAvgMass;
}
}
}
else
{
peptide = Peptide(p.sequence, p.mp, p.md);
ModificationMap& modMap = peptide.modifications();
vector<string> tokens;
boost::split(tokens, p.mods, boost::is_space());
for (size_t i=0; i < tokens.size(); i+=2)
{
TestModification& mod = testModifications[lexical_cast<size_t>(tokens[i])];
int modOffset;
if (tokens[i+1] == "n")
modOffset = ModificationMap::NTerminus();
else if (tokens[i+1] == "c")
modOffset = ModificationMap::CTerminus();
else
modOffset = lexical_cast<int>(tokens[i+1]);
ModificationMap::const_iterator itr = modMap.find(modOffset);
unit_assert(itr != modMap.end());
const ModificationList& modList = itr->second;
{
unit_assert(modList[0].hasFormula());
unit_assert(modList[0].formula() == mod.formula);
}
unit_assert_equal(modList[0].monoisotopicDeltaMass(), mod.deltaMonoMass, BIG_EPSILON);
unit_assert_equal(modList[0].averageDeltaMass(), mod.deltaAvgMass, BIG_EPSILON);
monoDeltaMass += mod.deltaMonoMass;
avgDeltaMass += mod.deltaAvgMass;
}
}
if (os_) *os_ << peptide.sequence() << ": " << peptide.monoisotopicMass() << " " << peptide.molecularWeight() << endl;
{
unit_assert_equal(peptide.formula(true).monoisotopicMass(), p.monoMass, BIG_EPSILON);
unit_assert_equal(peptide.formula(true).molecularWeight(), p.avgMass, BIG_EPSILON);
} else if (p.mods != NULL)
unit_assert_throws_what(peptide.formula(true), runtime_error,
"[Peptide::formula()] peptide formula cannot be generated when any modifications have no formula info");
unit_assert_equal(peptide.formula(false).monoisotopicMass(), p.monoMass-monoDeltaMass, BIG_EPSILON);
unit_assert_equal(peptide.formula(false).molecularWeight(), p.avgMass-avgDeltaMass, BIG_EPSILON);
unit_assert_equal(peptide.monoisotopicMass(0, true), p.monoMass, BIG_EPSILON);
unit_assert_equal(peptide.molecularWeight(0, true), p.avgMass, BIG_EPSILON);
unit_assert_equal(peptide.monoisotopicMass(0, false), p.monoMass-monoDeltaMass, BIG_EPSILON);
unit_assert_equal(peptide.molecularWeight(0, false), p.avgMass-avgDeltaMass, BIG_EPSILON);
}
catch (exception& e)
{
cout << "Unit test " << lexical_cast<string>(i+1) << " on modified peptide \"" << p.sequence << "\" failed:\n" << e.what() << endl;
}
}
}
void operatorTest ( )

Definition at line 550 of file PeptideTest.cpp.

References TestOperator::compare, e(), pwiz::util::virtual_map< keyT, valueT, _Pr, _Alloc >::empty(), boost::lexical_cast(), TestOperator::lhsPeptide, pwiz::proteome::Peptide::modifications(), TestOperator::rhsPeptide, testOperators, testOperatorsSize, and unit_assert.

Referenced by testThreadSafetyWorker().

{
for (size_t i=0; i < testOperatorsSize; ++i)
{
const TestOperator& p = testOperators[i];
try
{
switch(p.compare)
{
case 0:
unit_assert(lhs == rhs);
unit_assert(!(lhs < rhs));
unit_assert(lhs.modifications() == rhs.modifications());
unit_assert(!(lhs.modifications() < rhs.modifications()));
break;
case -1:
unit_assert(lhs < rhs);
unit_assert(!(lhs == rhs));
if (!lhs.modifications().empty() || !rhs.modifications().empty())
{
unit_assert(lhs.modifications() < rhs.modifications());
unit_assert(!(lhs.modifications() == rhs.modifications()));
}
break;
case 1:
unit_assert(!(lhs == rhs));
unit_assert(!(lhs < rhs));
if (!lhs.modifications().empty() || !rhs.modifications().empty())
{
unit_assert(!(lhs.modifications() == rhs.modifications()));
unit_assert(!(lhs.modifications() < rhs.modifications()));
}
break;
}
}
catch (exception& e)
{
cout << "Unit test " << lexical_cast<string>(i+1) << " comparing \"" << p.lhsPeptide << "\" and \"" << p.rhsPeptide << "\" failed:\n" << e.what() << endl;
}
}
}
void writeFragmentation ( const Peptide p,
const Fragmentation f,
ostream &  os 
)

Definition at line 634 of file PeptideTest.cpp.

References pwiz::proteome::Fragmentation::a(), pwiz::proteome::Fragmentation::b(), pwiz::proteome::Fragmentation::c(), pwiz::proteome::Peptide::sequence(), pwiz::proteome::Fragmentation::x(), pwiz::proteome::Fragmentation::y(), and pwiz::proteome::Fragmentation::z().

Referenced by fragmentTest().

{
size_t length = p.sequence().length();
os << "a:";
for (size_t i=1; i <= length; ++i)
os << " " << f.a(i);
os << endl;
os << "b:";
for (size_t i=1; i <= length; ++i)
os << " " << f.b(i);
os << endl;
os << "c:";
for (size_t i=1; i < length; ++i)
os << " " << f.c(i);
os << endl;
os << "x:";
for (size_t i=1; i < length; ++i)
os << " " << f.x(i);
os << endl;
os << "y:";
for (size_t i=1; i <= length; ++i)
os << " " << f.y(i);
os << endl;
os << "z:";
for (size_t i=1; i <= length; ++i)
os << " " << f.z(i);
os << endl;
}
void fragmentTest ( )

Definition at line 669 of file PeptideTest.cpp.

References pwiz::proteome::Fragmentation::a(), TestFragmentation::a1, TestFragmentation::a1Plus2, TestFragmentation::aN, TestFragmentation::aNPlus2, pwiz::proteome::Fragmentation::b(), TestFragmentation::b1, TestFragmentation::b1Plus2, TestFragmentation::bN, TestFragmentation::bNPlus2, pwiz::proteome::Fragmentation::c(), TestFragmentation::c1, TestFragmentation::c1Plus2, TestFragmentation::cN, TestFragmentation::cNPlus2, pwiz::proteome::Peptide::fragmentation(), pwiz::proteome::Peptide::modifications(), pwiz::proteome::Modification::monoisotopicDeltaMass(), pwiz::proteome::Peptide::monoisotopicMass(), os_, pwiz::identdata::peptide(), pwiz::chemistry::Proton, pwiz::proteome::Peptide::sequence(), TestFragmentation::sequence, testFragmentations, testFragmentationsSize, unit_assert_equal, writeFragmentation(), pwiz::proteome::Fragmentation::x(), TestFragmentation::x1, TestFragmentation::x1Plus2, TestFragmentation::xN, TestFragmentation::xNPlus2, pwiz::proteome::Fragmentation::y(), TestFragmentation::y1, TestFragmentation::y1Plus2, TestFragmentation::yN, TestFragmentation::yNPlus2, pwiz::proteome::Fragmentation::z(), TestFragmentation::z1, TestFragmentation::z1Plus2, TestFragmentation::zN, and TestFragmentation::zNPlus2.

Referenced by testThreadSafetyWorker().

{
const double EPSILON = 0.005;
for (size_t i=0; i < testFragmentationsSize; ++i)
{
size_t length = string(tf.sequence).length();
if (os_) *os_ << peptide.sequence() << ": " << peptide.monoisotopicMass() << endl;
unit_assert_equal(tf.a1 - Proton, f.a(1), EPSILON);
unit_assert_equal(tf.b1 - Proton, f.b(1), EPSILON);
unit_assert_equal(tf.c1 - Proton, f.c(1), EPSILON);
unit_assert_equal(tf.x1 - Proton, f.x(1), EPSILON);
unit_assert_equal(tf.y1 - Proton, f.y(1), EPSILON);
unit_assert_equal(tf.z1 - Proton, f.z(1), EPSILON);
unit_assert_equal(tf.aN - Proton, f.a(length), EPSILON);
unit_assert_equal(tf.bN - Proton, f.b(length), EPSILON);
unit_assert_equal(tf.cN - Proton, f.c(length-1), EPSILON);
unit_assert_equal(tf.xN - Proton, f.x(length-1), EPSILON);
unit_assert_equal(tf.yN - Proton, f.y(length), EPSILON);
unit_assert_equal(tf.zN - Proton, f.z(length), EPSILON);
unit_assert_equal(tf.a1, f.a(1, 1), EPSILON);
unit_assert_equal(tf.b1, f.b(1, 1), EPSILON);
unit_assert_equal(tf.c1, f.c(1, 1), EPSILON);
unit_assert_equal(tf.x1, f.x(1, 1), EPSILON);
unit_assert_equal(tf.y1, f.y(1, 1), EPSILON);
unit_assert_equal(tf.z1, f.z(1, 1), EPSILON);
unit_assert_equal(tf.aN, f.a(length, 1), EPSILON);
unit_assert_equal(tf.bN, f.b(length, 1), EPSILON);
unit_assert_equal(tf.cN, f.c(length-1, 1), EPSILON);
unit_assert_equal(tf.xN, f.x(length-1, 1), EPSILON);
unit_assert_equal(tf.yN, f.y(length, 1), EPSILON);
unit_assert_equal(tf.zN, f.z(length, 1), EPSILON);
unit_assert_equal(tf.a1Plus2, f.a(1, 2), EPSILON);
unit_assert_equal(tf.b1Plus2, f.b(1, 2), EPSILON);
unit_assert_equal(tf.c1Plus2, f.c(1, 2), EPSILON);
unit_assert_equal(tf.x1Plus2, f.x(1, 2), EPSILON);
unit_assert_equal(tf.y1Plus2, f.y(1, 2), EPSILON);
unit_assert_equal(tf.z1Plus2, f.z(1, 2), EPSILON);
unit_assert_equal(tf.aNPlus2, f.a(length, 2), EPSILON);
unit_assert_equal(tf.bNPlus2, f.b(length, 2), EPSILON);
unit_assert_equal(tf.cNPlus2, f.c(length-1, 2), EPSILON);
unit_assert_equal(tf.xNPlus2, f.x(length-1, 2), EPSILON);
unit_assert_equal(tf.yNPlus2, f.y(length, 2), EPSILON);
unit_assert_equal(tf.zNPlus2, f.z(length, 2), EPSILON);
}
// test fragmentation with mods
{
Peptide p("THEQICKRWNFMPSVERTHELAYDG");
Modification C57("C2H3N1O1"), M16("O1");
(p.modifications())[5].push_back(C57);
(p.modifications())[11].push_back(M16);
Fragmentation f = p.fragmentation(true, false);
Fragmentation fWithMods = p.fragmentation(true, true);
if (os_) writeFragmentation(p, f, *os_);
if (os_) writeFragmentation(p, fWithMods, *os_);
double EPSILON = 0.00000001;
for (size_t i=1; i <= 5; ++i)
{
unit_assert_equal(f.a(i), fWithMods.a(i), EPSILON);
unit_assert_equal(f.b(i), fWithMods.b(i), EPSILON);
unit_assert_equal(f.c(i), fWithMods.c(i), EPSILON);
}
for (size_t i=6; i <= 11; ++i)
{
double deltaMass = C57.monoisotopicDeltaMass();
unit_assert_equal(f.a(i)+deltaMass, fWithMods.a(i), EPSILON);
unit_assert_equal(f.b(i)+deltaMass, fWithMods.b(i), EPSILON);
unit_assert_equal(f.c(i)+deltaMass, fWithMods.c(i), EPSILON);
}
for (size_t i=12; i <= p.sequence().length(); ++i)
{
double deltaMass = C57.monoisotopicDeltaMass() + M16.monoisotopicDeltaMass();
unit_assert_equal(f.a(i)+deltaMass, fWithMods.a(i), EPSILON);
unit_assert_equal(f.b(i)+deltaMass, fWithMods.b(i), EPSILON);
if (i < p.sequence().length())
unit_assert_equal(f.c(i)+deltaMass, fWithMods.c(i), EPSILON);
}
for (size_t i=1; i <= 13; ++i)
{
unit_assert_equal(f.x(i), fWithMods.x(i), EPSILON);
unit_assert_equal(f.y(i), fWithMods.y(i), EPSILON);
unit_assert_equal(f.z(i), fWithMods.z(i), EPSILON);
}
for (size_t i=14; i <= 19; ++i)
{
double deltaMass = M16.monoisotopicDeltaMass();
unit_assert_equal(f.x(i)+deltaMass, fWithMods.x(i), EPSILON);
unit_assert_equal(f.y(i)+deltaMass, fWithMods.y(i), EPSILON);
unit_assert_equal(f.z(i)+deltaMass, fWithMods.z(i), EPSILON);
}
for (size_t i=20; i <= p.sequence().length(); ++i)
{
double deltaMass = C57.monoisotopicDeltaMass() + M16.monoisotopicDeltaMass();
if (i < p.sequence().length())
unit_assert_equal(f.x(i)+deltaMass, fWithMods.x(i), EPSILON);
unit_assert_equal(f.y(i)+deltaMass, fWithMods.y(i), EPSILON);
unit_assert_equal(f.z(i)+deltaMass, fWithMods.z(i), EPSILON);
}
}
{
Peptide p("QICKRWNFMPSVERTHELAYDG");
Modification Q17("N-1H-3"), S80("H1P1O3");
(p.modifications())[ModificationMap::NTerminus()].push_back(Q17); // close enough
(p.modifications())[10].push_back(S80);
Fragmentation f = p.fragmentation(true, false);
Fragmentation fWithMods = p.fragmentation(true, true);
if (os_) writeFragmentation(p, f, *os_);
if (os_) writeFragmentation(p, fWithMods, *os_);
double EPSILON = 0.00000001;
for (size_t i=0; i <= 10; ++i)
{
double deltaMass = Q17.monoisotopicDeltaMass();
unit_assert_equal(f.a(i)+deltaMass, fWithMods.a(i), EPSILON);
unit_assert_equal(f.b(i)+deltaMass, fWithMods.b(i), EPSILON);
unit_assert_equal(f.c(i)+deltaMass, fWithMods.c(i), EPSILON);
}
for (size_t i=11; i <= p.sequence().length(); ++i)
{
double deltaMass = Q17.monoisotopicDeltaMass() + S80.monoisotopicDeltaMass();
unit_assert_equal(f.a(i)+deltaMass, fWithMods.a(i), EPSILON);
unit_assert_equal(f.b(i)+deltaMass, fWithMods.b(i), EPSILON);
if (i < p.sequence().length())
unit_assert_equal(f.c(i)+deltaMass, fWithMods.c(i), EPSILON);
}
for (size_t i=1; i <= 11; ++i)
{
unit_assert_equal(f.x(i), fWithMods.x(i), EPSILON);
unit_assert_equal(f.y(i), fWithMods.y(i), EPSILON);
unit_assert_equal(f.z(i), fWithMods.z(i), EPSILON);
}
for (size_t i=12; i <= p.sequence().length(); ++i)
{
double deltaMass = S80.monoisotopicDeltaMass();
if (i < p.sequence().length())
unit_assert_equal(f.x(i)+deltaMass, fWithMods.x(i), EPSILON);
unit_assert_equal(f.y(i)+deltaMass, fWithMods.y(i), EPSILON);
unit_assert_equal(f.z(i)+deltaMass, fWithMods.z(i), EPSILON);
}
}
}
void testThreadSafetyWorker ( boost::barrier *  testBarrier)

Definition at line 833 of file PeptideTest.cpp.

References e(), fragmentTest(), modificationTest(), operatorTest(), and peptideTest().

{
testBarrier->wait(); // wait until all threads have started
try
{
}
catch (exception& e)
{
cerr << "Exception in worker thread: " << e.what() << endl;
}
catch (...)
{
cerr << "Unhandled exception in worker thread." << endl;
}
}
void testThreadSafety ( const int &  testThreadCount)

Definition at line 854 of file PeptideTest.cpp.

References testThreadSafetyWorker().

{
boost::barrier testBarrier(testThreadCount);
boost::thread_group testThreadGroup;
for (int i=0; i < testThreadCount; ++i)
testThreadGroup.add_thread(new boost::thread(&testThreadSafetyWorker, &testBarrier));
testThreadGroup.join_all();
}
int main ( int  argc,
char *  argv[] 
)

Definition at line 864 of file PeptideTest.cpp.

References e(), os_, TEST_EPILOG, TEST_FAILED, TEST_PROLOG, and testThreadSafety().

{
TEST_PROLOG(argc, argv)
try
{
if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
if (os_) *os_ << "PeptideTest\n";
//test();
//isotopeTest();
//testThreadSafety(1); // does not test thread-safety of singleton initialization
}
catch (exception& e)
{
TEST_FAILED(e.what())
}
catch (...)
{
TEST_FAILED("Caught unknown exception.")
}
}

Variable Documentation

ostream* os_ = 0

Definition at line 36 of file PeptideTest.cpp.

const char* sequences[]
Initial value:
{
"CLPMILDNK",
"AVSNPFQQR",
"CELLFFFK",
"AGASIVGVNCR",
"QPTPPFFGR",
"AVFHMQSVK",
"TRUCKER"
}

Definition at line 49 of file PeptideTest.cpp.

TestPeptide testPeptides[]
Initial value:
{
{ "ELK", 388.2322, 389.24005, 195.12396, 388.45918, 389.4665, 195.2369 },
{ "DEERLICKER", 1289.6398, 1290.6477, 645.8278, 1290.44644, 1291.4537, 646.2305 },
{ "ELVISLIVES", 1100.6329, 1101.6408, 551.3243, 1101.29052, 1102.2978, 551.6525 },
{ "THEQUICKRWNFUMPSVERTHELAYDG", 3348.3249, 3349.3328, 1675.17035, 3348.44626, 3349.45416, 1675.23103 },
{ "No?PepTidE...", 0, 0, 0, 0, 0, 0 }
}

Definition at line 68 of file PeptideTest.cpp.

Referenced by peptideTest().

const size_t testPeptidesSize = sizeof(testPeptides)/sizeof(TestPeptide)

Definition at line 77 of file PeptideTest.cpp.

Referenced by peptideTest().

TestModification testModifications[]
Initial value:
{
{ "M", "O1", 15.9949, 15.9994, true },
{ "C", "C2H3N1O1", 57.02146, 57.052, false },
{ "(Q", "N-1H-3", -17.02655, -17.0306, false },
{ "(E", "N-1H-3", -17.02655, -17.0306, true },
{ "N!G", "N-1H-3", -17.02655, -17.0306, true },
{ "[STY]!{STY}", "H1P1O3", 79.96633, 79.9799, true },
{ "(", "C2H2O1", 42.010565, 42.0367, true },
{ "[ED)]", "C2H5N1", 43.042199, 43.0678, true },
}

Definition at line 120 of file PeptideTest.cpp.

Referenced by modificationTest().

TestModifiedPeptide testModifiedPeptides[]

Definition at line 145 of file PeptideTest.cpp.

Referenced by modificationTest().

const size_t testModificationsSize = sizeof(testModifications)/sizeof(TestModification)

Definition at line 408 of file PeptideTest.cpp.

const size_t testModifiedPeptidesSize = sizeof(testModifiedPeptides)/sizeof(TestModifiedPeptide)

Definition at line 409 of file PeptideTest.cpp.

Referenced by modificationTest().

const TestOperator testOperators[]
Initial value:
{
{"PEPTIDE", "PEPTIDE", 0},
{"PEPTIDE", "PEPTIDEK", -1},
{"PEPTIDEK", "PEPTIDE", 1},
{"(42)PEPTIDE", "(42)PEPTIDE", 0},
{"PEP(42)TIDE", "PEP(42)TIDE", 0},
{"PEPTIDE(42)", "PEPTIDE(42)", 0},
{"PEPTIDE", "(42)PEPTIDE", -1},
{"(42)PEPTIDE", "PEPTIDE", 1},
{"PEPTIDE(41)", "PEPTIDE(42)", -1},
{"PEPTIDE(42)", "PEPTIDE(41)", 1},
{"(42)PEPTIDE(42)", "(42)PEPTIDE(42)", 0},
{"(42)PEPTIDE(41)", "(42)PEPTIDE(42)", -1},
{"(42)PEPTIDE(42)", "(42)PEPTIDE(41)", 1},
{"(42)PEPTIDE", "(42)PEPTIDE(42)", -1},
{"(42)PEPTIDE(42)", "PEPTIDE(42)", 1},
{"P(42)EPTIDE(42)", "PEPTIDE(42)", 1},
{"(42)PEPTIDE", "P(42)EPTIDE", -1},
{"P(42)EPTIDE", "(42)PEPTIDE", 1},
}

Definition at line 525 of file PeptideTest.cpp.

Referenced by operatorTest().

const size_t testOperatorsSize = sizeof(testOperators)/sizeof(TestOperator)

Definition at line 548 of file PeptideTest.cpp.

Referenced by operatorTest().

const TestFragmentation testFragmentations[]
Initial value:
{
{ "MEERKAT",
104.05344, 818.41949, 52.53066, 409.71368,
132.04836, 846.41441, 66.52811, 423.71114,
149.07490, 762.39328, 75.04139, 381.70057,
146.04538, 759.36375, 73.52662, 380.18581,
120.06611, 864.42497, 60.53699, 432.71642,
103.03956, 847.39842, 52.02372, 424.20315
},
{ "THEQICKRWNFMPSVERTHELAYDG",
74.06063, 3001.42018, 37.53425, 1501.21402,
102.05555, 3029.41509, 51.53171, 1515.21148,
119.08210, 2989.42018, 60.04498, 1495.21402,
102.01916, 2972.35724, 51.51352, 1486.68256,
76.03990, 3047.42566, 38.52388, 1524.21676,
59.01335, 3030.39911, 30.01061, 1515.70349
},
}

Definition at line 611 of file PeptideTest.cpp.

Referenced by fragmentTest().

const size_t testFragmentationsSize = sizeof(testFragmentations)/sizeof(TestFragmentation)

Definition at line 632 of file PeptideTest.cpp.

Referenced by fragmentTest().