ProteoWizard
MassDatabaseTest.cpp
Go to the documentation of this file.
1 //
2 // $Id: MassDatabaseTest.cpp 1191 2009-08-14 19:33:05Z chambm $
3 //
4 //
5 // Darren Kessner <darren@proteowizard.org>
6 //
7 // Copyright 2009 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 "MassDatabase.hpp"
25 #include "PeptideDatabase.hpp"
27 #include <iostream>
28 
29 
30 using namespace std;
31 using namespace pwiz::util;
32 using namespace pwiz::proteome;
33 using namespace pwiz::calibration;
34 
35 
37 {
38  auto_ptr<MassDatabase> mdb = MassDatabase::createIntegerTestDatabase();
39  vector<MassDatabase::Entry> entries = mdb->range(0, 3000);
40  unit_assert((int)entries.size() == mdb->size());
41  unit_assert(entries[0].mass == 100);
42  unit_assert(entries[entries.size()-1].mass == 2200);
43 }
44 
45 
46 void test_pdb()
47 {
48  const string& filename = "MassDatabaseTest.test_pdb.pdb";
49  auto_ptr<PeptideDatabase> pdb = PeptideDatabase::create();
50 
51  const int recordCount = 10;
52  for (int i=0; i<recordCount; i++)
53  {
55  record.abundance = i;
56  record.mass = i;
57  pdb->append(record);
58  }
59  pdb->write(filename);
60 
61  auto_ptr<MassDatabase> mdb = MassDatabase::createFromPeptideDatabase(filename);
62  unit_assert(mdb->size() == recordCount);
63 
64  for (int i=0; i<recordCount; i++)
65  {
66  MassDatabase::Entry entry = mdb->entry(i);
67  unit_assert(entry.mass == i);
68  unit_assert(entry.weight == i);
69  }
70 
71  vector<MassDatabase::Entry> range = mdb->range(2,6);
72  unit_assert(range.size() == 5);
73  for (unsigned int i=0; i<range.size(); i++)
74  unit_assert(range[i].mass == i+2);
75 
76  system(("rm " + filename).c_str());
77 }
78 
79 
80 namespace pwiz {
81 namespace calibration {
83 {
84  return (a.mass==b.mass && a.weight==b.weight);
85 }
86 }} // namespaces
87 
88 
90 {
91  auto_ptr<PeptideDatabase> pdb = PeptideDatabase::create();
92  for (int i=100; i<=2200; i++)
93  {
95  record.mass = i;
96  pdb->append(record);
97  }
98  const string& filename = "temp.pdb";
99  pdb->write(filename);
100 
101  auto_ptr<MassDatabase> mdb = MassDatabase::createFromPeptideDatabase(filename);
102  auto_ptr<MassDatabase> mdb2 = MassDatabase::createIntegerTestDatabase();
103  unit_assert(mdb->size() == mdb2->size());
104 
105  vector<MassDatabase::Entry> entries1 = mdb->range(150, 250);
106  vector<MassDatabase::Entry> entries2 = mdb2->range(150, 250);
107  unit_assert(entries1 == entries2);
108 
109  system(("rm " + filename).c_str());
110 }
111 
112 
113 int main()
114 {
115  try
116  {
117  test_integer();
118  test_pdb();
120  return 0;
121  }
122  catch (exception& e)
123  {
124  cerr << e.what() << endl;
125  return 1;
126  }
127 }
128