28 #include "boost/thread/thread.hpp"
29 #include "boost/thread/barrier.hpp"
32 using namespace pwiz::util;
33 using namespace pwiz::proteome;
34 using namespace pwiz::chemistry;
35 using namespace pwiz::chemistry::Element;
36 using namespace pwiz::proteome::AminoAcid;
52 *os << record.
symbol <<
": "
53 << setw(14) << record.
name <<
" "
54 << setw(11) << record.
formula <<
" "
57 << fixed << setprecision(6)
75 { 71.0371140, 71.07790,
'A' },
76 { 156.101111, 156.1857,
'R' },
77 { 114.042927, 114.1026,
'N' },
78 { 115.026943, 115.0874,
'D' },
79 { 103.009185, 103.1429,
'C' },
80 { 129.042593, 129.1140,
'E' },
81 { 128.058578, 128.1292,
'Q' },
82 { 57.0214640, 57.05130,
'G' },
83 { 137.058912, 137.1393,
'H' },
84 { 113.084064, 113.1576,
'I' },
85 { 113.084064, 113.1576,
'L' },
86 { 128.094963, 128.1723,
'K' },
87 { 131.040485, 131.1961,
'M' },
88 { 147.068414, 147.1739,
'F' },
89 { 97.0527640, 97.11520,
'P' },
90 { 87.0320280, 87.07730,
'S' },
91 { 150.953636, 150.0379,
'U' },
92 { 101.047679, 101.1039,
'T' },
93 { 186.079313, 186.2099,
'W' },
94 { 163.063329, 163.1733,
'Y' },
95 { 99.0684140, 99.13110,
'V' },
96 { 114.042927, 114.1026,
'B' },
97 { 128.058578, 128.1292,
'Z' },
98 { 114.091900, 114.1674,
'X' }
106 vector<AminoAcid::Info::Record> records;
108 for (
char symbol=
'A'; symbol<=
'Z'; symbol++)
113 records.push_back(record);
119 for (vector<AminoAcid::Info::Record>::iterator it=records.begin(); it!=records.end(); ++it)
137 for (
int i=0; i < 22; ++i)
152 double averageMonoisotopicMass = 0;
159 for (vector<AminoAcid::Info::Record>::iterator it=records.begin(); it!=records.end(); ++it)
165 averageC += residueFormula[
C] * record.
abundance;
166 averageH += residueFormula[
H] * record.
abundance;
167 averageN += residueFormula[
N] * record.
abundance;
168 averageO += residueFormula[
O] * record.
abundance;
169 averageS += residueFormula[
S] * record.
abundance;
172 if (
os_) *
os_ << setprecision(8) << endl;
173 if (
os_) *
os_ <<
"average residue C: " << averageC << endl;
174 if (
os_) *
os_ <<
"average residue H: " << averageH << endl;
175 if (
os_) *
os_ <<
"average residue N: " << averageN << endl;
176 if (
os_) *
os_ <<
"average residue O: " << averageO << endl;
177 if (
os_) *
os_ <<
"average residue S: " << averageS << endl;
180 if (
os_) *
os_ <<
"average monoisotopic mass: " << averageMonoisotopicMass << endl;
181 double averageResidueMass = averageMonoisotopicMass;
182 if (
os_) *
os_ <<
"average residue mass: " << averageResidueMass << endl << endl;
186 for (vector<AminoAcid::Info::Record>::iterator it=records.begin(); it!=records.end(); ++it)
201 cerr <<
"Exception in worker thread: " << e.what() << endl;
205 cerr <<
"Unhandled exception in worker thread." << endl;
211 boost::barrier testBarrier(testThreadCount);
212 boost::thread_group testThreadGroup;
213 for (
int i=0; i < testThreadCount; ++i)
215 testThreadGroup.join_all();
219 int main(
int argc,
char* argv[])
223 if (argc>1 && !strcmp(argv[1],
"-v"))
os_ = &cout;
224 if (
os_) *
os_ <<
"AminoAcidTest\n";