ProteoWizard
PeptideDatabaseTest.cpp
Go to the documentation of this file.
1 //
2 // $Id: PeptideDatabaseTest.cpp 1191 2009-08-14 19:33:05Z chambm $
3 //
4 //
5 // Original author: Darren Kessner <darren@proteowizard.org>
6 //
7 // Copyright 2006 Louis Warschaw Prostate Cancer Center
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 "PeptideDatabase.hpp"
26 #include <boost/filesystem/operations.hpp>
27 #include <iostream>
28 
29 
30 using namespace std;
31 using namespace pwiz::util;
32 using namespace pwiz::proteome;
33 
34 
35 ostream* os_ = 0;
36 
37 
38 void compareRecords(const PeptideDatabase* pdb1, const PeptideDatabaseRecord* record1,
39  const PeptideDatabase* pdb2, const PeptideDatabaseRecord* record2)
40 {
41  unit_assert(record1->id_ipi == record2->id_ipi);
42  unit_assert(record1->abundance == record2->abundance);
43  unit_assert(record1->mass == record2->mass);
44  unit_assert(record1->formula == record2->formula);
45  unit_assert(pdb1->sequence(*record1) == pdb2->sequence(*record2));
46 }
47 
48 
49 void test_basic()
50 {
51  auto_ptr<PeptideDatabase> pdb = PeptideDatabase::create();
52 
54 
55  record.abundance = 10;
56  record.mass = 27;
57  record.formula = PeptideDatabaseFormula(1, 2, 3, 4, 5);
58  pdb->append(record, "darren");
59 
60  record.abundance = 20;
61  record.mass = 666;
62  record.formula = PeptideDatabaseFormula(6, 7, 8, 9, 10);
63  pdb->append(record, "goo");
64 
65  unit_assert(pdb->size()==2);
66 
67  const PeptideDatabaseRecord* p = pdb->records();
68  unit_assert(p->abundance == 10);
69  unit_assert(p->mass == 27);
70  unit_assert(p->formula.C == 1);
71  unit_assert(pdb->sequence(*p) == "darren");
72 
73  p++;
74  unit_assert(p->abundance == 20);
75  unit_assert(p->mass == 666);
76  unit_assert(p->formula.C == 6);
77  unit_assert(p->formula.S == 10);
78  unit_assert(pdb->sequence(*p) == "goo");
79 
80  // iterator interface
81  if (os_)
82  for (PeptideDatabase::iterator it=pdb->begin(); it!=pdb->end(); ++it)
83  *os_ << *it << " " << pdb->sequence(*it) << endl;
84 
85  // test i/o
86  string filename = "PeptideDatabaseTest.output.pdb";
87  {
88  pdb->write(filename);
89  auto_ptr<const PeptideDatabase> pdb2 = PeptideDatabase::create(filename);
90  unit_assert(pdb2->size() == pdb->size());
91 
92  for (int i=0; i<pdb->size(); ++i)
93  {
94  const PeptideDatabaseRecord* record1 = pdb->records()+i;
95  const PeptideDatabaseRecord* record2 = pdb2->records()+i;
96  compareRecords(pdb.get(), record1, pdb2.get(), record2);
97  }
98  }
99 
100  boost::filesystem::remove(filename);
101 }
102 
103 
105 {
106  auto_ptr<PeptideDatabase> pdb = PeptideDatabase::create();
107 
108  for (int i=0; i<10; i++)
109  {
111  record.mass = i;
112  pdb->append(record);
113  }
114 
115  PeptideDatabase::iterator begin = pdb->begin();
118  unit_assert(six == begin+6);
119  unit_assert(eight == begin+8);
120 }
121 
122 
123 int main(int argc, char* argv[])
124 {
125 
126  try
127  {
128  if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
129  if (os_) *os_ << "PeptideDatabaseTest\n";
130  test_basic();
131  test_range();
132  return 0;
133  }
134  catch (exception& e)
135  {
136  cerr << e.what() << endl;
137  return 1;
138  }
139 }
140 
141