ProteoWizard
SpectrumIteratorTest.cpp
Go to the documentation of this file.
1 //
2 // $Id: SpectrumIteratorTest.cpp 4129 2012-11-20 00:05:37Z chambm $
3 //
4 //
5 // Original author: Darren Kessner <darren@proteowizard.org>
6 //
7 // Copyright 2007 Spielberg Family Center for Applied Proteomics
8 // Cedars-Sinai Medical Center, Los Angeles, California 90048
9 //
10 // Licensed under the Apache License, Version 2.0 (the "License");
11 // you may not use this file except in compliance with the License.
12 // You may obtain a copy of the License at
13 //
14 // http://www.apache.org/licenses/LICENSE-2.0
15 //
16 // Unless required by applicable law or agreed to in writing, software
17 // distributed under the License is distributed on an "AS IS" BASIS,
18 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 // See the License for the specific language governing permissions and
20 // limitations under the License.
21 //
22 
23 
24 #include "SpectrumIterator.hpp"
25 #include "MSData.hpp"
29 #include <cstring>
30 
31 
32 using namespace pwiz::cv;
33 using namespace pwiz::msdata;
34 using namespace pwiz::util;
35 
36 
37 ostream* os_ = 0;
38 
39 
41 {
42  // initialize with scans:
43  // scan 0: IT
44  // scan 5: FT (1,100)
45  // scan 10: IT (1,100), (2,200)
46  // scan 15: FT (1,100), (2,200), (3,300)
47  // scan 20: IT (1,100), (2,200), (3,300), (4,400)
48  // ...
49 
50  for (int i=0; i<=10; i++)
51  {
52  SpectrumPtr spectrum(new Spectrum);
53  spectrum->id = lexical_cast<string>(i*5);
54 
55  spectrum->cvParams.push_back(i%2 ?
56  MS_FT_ICR :
57  MS_ion_trap);
58 
60  bdMZ->cvParams.push_back(MS_m_z_array);
61  spectrum->binaryDataArrayPtrs.push_back(bdMZ);
62 
63  BinaryDataArrayPtr bdIntensity(new BinaryDataArray);
64  bdIntensity->cvParams.push_back(MS_intensity_array);
65  spectrum->binaryDataArrayPtrs.push_back(bdIntensity);
66 
67  for (int j=1; j<=i; j++)
68  {
69  bdMZ->data.push_back(j);
70  bdIntensity->data.push_back(100*j);
71  }
72 
73  spectrum->defaultArrayLength = i;
74  spectrumList.spectra.push_back(spectrum);
75  }
76 }
77 
78 
79 const char* anal(const CVParam& cvParam)
80 {
81  if (cvParam == MS_FT_ICR)
82  return "FT";
83  else if (cvParam == MS_ion_trap)
84  return "IT";
85  else
86  return "Unknown";
87 }
88 
89 
90 void printSpectrumList(ostream& os, const SpectrumList& sl)
91 {
92  if (os_) *os_ << "printSpectrumList()\n";
93 
94  for (unsigned int i=0; i<sl.size(); i++)
95  {
96  SpectrumPtr spectrum = sl.spectrum(i);
97  os << spectrum->id << " "
98  << anal(spectrum->cvParamChild(MS_mass_analyzer)) << endl;
99 
100  vector<MZIntensityPair> mziPairs;
101  spectrum->getMZIntensityPairs(mziPairs);
102  copy(mziPairs.begin(), mziPairs.end(), ostream_iterator<MZIntensityPair>(os,""));
103  os << endl;
104  }
105 }
106 
107 
108 void testBasic(const SpectrumList& sl)
109 {
110  if (os_) *os_ << "testBasic()\n";
111 
112  SpectrumIterator it(sl);
113 
114  unit_assert(it->id == "0");
115  unit_assert((*it).cvParamChild(MS_mass_analyzer_type) == MS_ion_trap);
116  unit_assert(it->binaryDataArrayPtrs.size() == 2);
117 
118  ++it; ++it; ++it; ++it; ++it; // advance to scan 5
119 
120  unit_assert(it->id == "25");
121  unit_assert(it->cvParamChild(MS_mass_analyzer_type) == MS_FT_ICR);
122  unit_assert(it->binaryDataArrayPtrs.size() == 2 &&
123  it->binaryDataArrayPtrs[0]->data.size() == 5);
124 }
125 
126 
127 void doSomething(const Spectrum& spectrum)
128 {
129  if (os_) *os_ << "spectrum: " << spectrum.id << " "
130  << anal(spectrum.cvParamChild(MS_mass_analyzer)) << endl;
131 
132  vector<MZIntensityPair> pairs;
133  spectrum.getMZIntensityPairs(pairs);
134 
135  if (os_)
136  {
137  copy(pairs.begin(), pairs.end(), ostream_iterator<MZIntensityPair>(*os_,""));
138  *os_ << endl;
139  }
140 
141  unit_assert((int)pairs.size()*5 == lexical_cast<int>(spectrum.id));
142 }
143 
144 
145 void testForEach(const SpectrumList& spectrumList)
146 {
147  if (os_) *os_ << "testForEach(): \n";
148  for_each(SpectrumIterator(spectrumList), SpectrumIterator(), doSomething);
149 }
150 
151 
152 void testIntegerSet(const SpectrumList& spectrumList)
153 {
154  // iterate through even scan numbers
155 
156  if (os_) *os_ << "testIntegerSet():\n";
157 
158  IntegerSet scanNumbers;
159  for (int i=2; i<=50; i+=2) // note that some scan numbers don't exist in spectrumList
160  scanNumbers.insert(i);
161 
162  // loop written for illustration
163  // note automatic conversion from IntegerSet to SpectrumIterator::Config
164  for (SpectrumIterator it(spectrumList, scanNumbers); it!=SpectrumIterator(); ++it)
165  doSomething(*it);
166 
167  // using for_each:
168  for_each(SpectrumIterator(spectrumList, scanNumbers), SpectrumIterator(), doSomething);
169 }
170 
171 
172 inline int getScanNumber(const Spectrum& spectrum)
173 {
174  return lexical_cast<int>(spectrum.id);
175 }
176 
177 
179 {
180  public:
181  virtual bool accept(const Spectrum& spectrum) const
182  {
183  return (spectrum.cvParamChild(MS_mass_analyzer_type) == MS_FT_ICR);
184  }
185 };
186 
187 
188 void testSieve(const SpectrumList& spectrumList)
189 {
190  vector<int> ftScanNumbers;
191 
192  FTSieve sieve;
193  SpectrumIterator::Config config(sieve, false);
194 
195  transform(SpectrumIterator(spectrumList, config),
196  SpectrumIterator(),
197  back_inserter(ftScanNumbers),
198  getScanNumber);
199 
200  if (os_)
201  {
202  *os_ << "testSieve():\n";
203  copy(ftScanNumbers.begin(), ftScanNumbers.end(), ostream_iterator<int>(*os_, " "));
204  *os_ << endl;
205  }
206 
207  unit_assert(ftScanNumbers.size() == 5);
208  unit_assert(ftScanNumbers[0] == 5);
209  unit_assert(ftScanNumbers[1] == 15);
210  unit_assert(ftScanNumbers[2] == 25);
211  unit_assert(ftScanNumbers[3] == 35);
212  unit_assert(ftScanNumbers[4] == 45);
213 }
214 
215 
216 void testIteratorEquality(const SpectrumList& spectrumList)
217 {
218  if (os_) *os_ << "testIteratorEquality()\n";
219 
220  SpectrumIterator it(spectrumList);
221  ++it; ++it; ++it;
222 
223  SpectrumIterator jt(spectrumList);
224  unit_assert(it!=jt);
225  ++jt;
226  unit_assert(it!=jt);
227  ++jt;
228  unit_assert(it!=jt);
229  ++jt;
230  unit_assert(it==jt);
231 }
232 
233 
235 {
236  if (os_) *os_ << "testMSDataConstruction()\n";
237 
240 
241  MSData msd;
242  msd.run.spectrumListPtr = sl;
243 
244  int i = 0;
245  FTSieve sieve;
246  for (SpectrumIterator it(msd, sieve); it!=SpectrumIterator(); ++it, ++i)
247  {
248  if (os_) *os_ << it->id << " "
249  << anal(it->cvParamChild(MS_mass_analyzer)) << endl;
250 
251  unit_assert(it->id == lexical_cast<string>(5+i*10));
252  }
253 }
254 
255 
256 int main(int argc, char* argv[])
257 {
258  TEST_PROLOG(argc, argv)
259 
260  try
261  {
262  if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
263 
264  SpectrumListSimple spectrumList;
265  initializeSpectrumList(spectrumList);
266  if (os_) printSpectrumList(*os_, spectrumList);
267 
268  testBasic(spectrumList);
269  testForEach(spectrumList);
270  testIntegerSet(spectrumList);
271  testSieve(spectrumList);
272  testIteratorEquality(spectrumList);
274 
275  }
276  catch (exception& e)
277  {
278  TEST_FAILED(e.what())
279  }
280  catch (...)
281  {
282  TEST_FAILED("Caught unknown exception.")
283  }
284 
286 }
287 
288