ProteoWizard
Functions | Variables
IsotopeTableTest.cpp File Reference
#include "IsotopeTable.hpp"
#include "pwiz/utility/misc/unit.hpp"
#include "pwiz/utility/misc/Std.hpp"
#include <cstring>

Go to the source code of this file.

Functions

bool hasGreaterAbundance (const MassAbundance &a, const MassAbundance &b)
bool hasLessMass (const MassAbundance &a, const MassAbundance &b)
void test1 ()
void test2 ()
void compare (const MassDistribution &test, const MassDistribution &good)
void test3 ()
void test4 ()
void testSulfur ()
int main (int argc, char *argv[])

Variables

ostream * os_ = 0

Function Documentation

bool hasGreaterAbundance ( const MassAbundance a,
const MassAbundance b 
)

Definition at line 37 of file IsotopeTableTest.cpp.

References pwiz::chemistry::MassAbundance::abundance.

Referenced by test2(), and test3().

{
return a.abundance > b.abundance;
}
bool hasLessMass ( const MassAbundance a,
const MassAbundance b 
)

Definition at line 43 of file IsotopeTableTest.cpp.

References pwiz::chemistry::MassAbundance::mass.

{
return a.mass < b.mass;
}
void test1 ( )

Definition at line 49 of file IsotopeTableTest.cpp.

References pwiz::chemistry::IsotopeTable::distribution(), and unit_assert.

Referenced by main(), and test2().

{
md.push_back(MassAbundance(10, 1));
IsotopeTable table(md, 10, 0);
for (int i=1; i<=10; i++)
{
MassDistribution temp = table.distribution(i);
unit_assert(temp.size() == 1);
unit_assert(temp[0] == MassAbundance(i*10, 1));
//cout << i << " atoms:\n" << temp << endl;
}
}
void test2 ( )

Definition at line 66 of file IsotopeTableTest.cpp.

References pwiz::chemistry::IsotopeTable::distribution(), e(), hasGreaterAbundance(), k, sort(), test1(), unit_assert, and unit_assert_equal.

{
const double p0 = .9;
const double p1 = 1 - p0;
md.push_back(MassAbundance(10, p0));
md.push_back(MassAbundance(11, p1));
IsotopeTable table(md, 10, 0);
/*
for (int i=0; i<=10; i++)
cout << i << " atoms:\n" << table.distribution(i) << endl;
*/
// test manually for 1 atom
MassDistribution test1 = table.distribution(1);
unit_assert(test1.size() == 2);
unit_assert(test1[0] == md[0]);
unit_assert(test1[1] == md[1]);
// test manually for 10 atoms
const int n = 10;
double abundance = pow(p0, n);
double mass = 100;
for (int k=0; k<=n; k++)
{
good10.push_back(MassAbundance(mass, abundance));
abundance *= p1/p0*(n-k)/(k+1);
mass += 1;
}
sort(good10.begin(), good10.end(), hasGreaterAbundance);
MassDistribution test10 = table.distribution(10);
sort(test10.begin(), test10.end(), hasGreaterAbundance);
unit_assert((int)test10.size() == n+1);
for (int k=0; k<=n; k++)
unit_assert_equal(test10[k].abundance, good10[k].abundance, 1e-15);
// test cutoff
IsotopeTable table_cutoff(md, 10, 1e-8);
unit_assert(table_cutoff.distribution(10).size() == 9);
}
void compare ( const MassDistribution test,
const MassDistribution good 
)

Definition at line 120 of file IsotopeTableTest.cpp.

References e(), unit_assert, and unit_assert_equal.

Referenced by test3(), and test4().

{
unit_assert(test.size() == good.size());
for (unsigned int i=0; i<test.size(); i++)
{
unit_assert_equal(test[i].mass, good[i].mass, 1e-12);
unit_assert_equal(test[i].abundance, good[i].abundance, 1e-12);
}
}
void test3 ( )

Definition at line 131 of file IsotopeTableTest.cpp.

References compare(), pwiz::chemistry::IsotopeTable::distribution(), e(), hasGreaterAbundance(), and sort().

Referenced by main(), test(), testCancel(), and testRemove().

{
const double p0 = .9;
const double p1 = .09;
const double p2 = 1 - (p0 + p1);
const double m0 = 10;
const double m1 = 11;
const double m2 = 12.33;
md.push_back(MassAbundance(m0, p0));
md.push_back(MassAbundance(m1, p1));
md.push_back(MassAbundance(m2, p2));
// cout << "test3 distribution:\n" << md << endl;
IsotopeTable table(md, 10, 1e-5);
// compare distribution for 1 atom
compare(table.distribution(1), md);
// compare distribution for 2 atoms
good3_2.push_back(MassAbundance(m0*2, p0*p0));
good3_2.push_back(MassAbundance(m0+m1, p0*p1*2));
good3_2.push_back(MassAbundance(m0+m2, p0*p2*2));
good3_2.push_back(MassAbundance(m1+m2, p1*p2*2));
good3_2.push_back(MassAbundance(m1+m1, p1*p1));
good3_2.push_back(MassAbundance(m2+m2, p2*p2));
sort(good3_2.begin(), good3_2.end(), hasGreaterAbundance);
MassDistribution test3_2 = table.distribution(2);
sort(test3_2.begin(), test3_2.end(), hasGreaterAbundance);
// cout << "good:\n" << good3_2 << endl;
// cout << "test:\n" << test3_2 << endl;
compare(test3_2, good3_2);
}
void test4 ( )

Definition at line 173 of file IsotopeTableTest.cpp.

References compare(), pwiz::chemistry::IsotopeTable::distribution(), and e().

Referenced by test(), testCancel(), and testRemove().

{
const double p0 = .9;
const double p1 = .09;
const double p2 = .009;
const double p3 = 1 - (p0 + p1 + p2);
const double m0 = 10;
const double m1 = 11;
const double m2 = 12.33;
const double m3 = 13.13;
md.push_back(MassAbundance(m0, p0));
md.push_back(MassAbundance(m1, p1));
md.push_back(MassAbundance(m2, p2));
md.push_back(MassAbundance(m3, p3));
cout << "test4 distribution:\n" << md << endl;
IsotopeTable table(md, 10, 1e-5);
compare(md, table.distribution(1));
MassDistribution test4_2 = table.distribution(2);
cout << "2 atoms:\n" << test4_2 << endl;
}
void testSulfur ( )

Definition at line 203 of file IsotopeTableTest.cpp.

References pwiz::chemistry::IsotopeTable::distribution(), e(), pwiz::proteome::AminoAcid::Info::record(), and Se.

{
IsotopeTable table(Element::Info::record(Element::Se).isotopes, 10, 1e-10);
cout << table << endl;
MassDistribution dist10 = table.distribution(10);
cout << "distribution: " << dist10 << endl;
}
int main ( int  argc,
char *  argv[] 
)

Definition at line 214 of file IsotopeTableTest.cpp.

References e(), os_, test1(), test2(), test3(), TEST_EPILOG, TEST_FAILED, and TEST_PROLOG.

{
TEST_PROLOG(argc, argv)
try
{
if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
if (os_) *os_ << "IsotopeTableTest\n" << setprecision(12);
test1();
test2();
test3();
//test4();
//testSulfur();
}
catch (exception& e)
{
TEST_FAILED(e.what())
}
catch (...)
{
TEST_FAILED("Caught unknown exception.")
}
}

Variable Documentation

ostream* os_ = 0

Definition at line 34 of file IsotopeTableTest.cpp.