ProteoWizard
AMTDatabaseTest.cpp
Go to the documentation of this file.
1 //
2 // $Id: AMTDatabaseTest.cpp 1539 2009-11-19 20:12:28Z khoff $
3 //
4 //
5 // Original author: Kate Hoff <katherine.hoff@proteowizard.org>
6 //
7 // Copyright 2009 Center for Applied Molecular Medicine
8 // University of Southern California, Los Angeles, CA
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 /// AMTDatabaseTest.cpp
25 ///
26 #include "AMTDatabase.hpp"
27 #include "AMTContainer.hpp"
28 #include "pwiz/utility/proteome/Ion.hpp"
30 
31 using namespace pwiz;
32 using namespace eharmony;
33 using namespace pwiz::utility;
34 using namespace pwiz::proteome;
35 using namespace pwiz::util;
36 
38 
39 boost::shared_ptr<SpectrumQuery> makeSpectrumQuery(const double& mass, const int& charge, const double& rt, const string& sequence, const double& score = 0.95)
40 {
41  boost::shared_ptr<SpectrumQuery> result(new SpectrumQuery());
42  result->precursorNeutralMass = mass;
43  result->assumedCharge = charge;
44  result->retentionTimeSec = rt;
45  result->searchResult.searchHit.peptide = sequence;
46  result->searchResult.searchHit.analysisResult.peptideProphetResult.probability = score;
47 
48  return result;
49 
50 }
51 
52 boost::shared_ptr<AMTContainer> makeAMTContainer()
53 {
54  boost::shared_ptr<AMTContainer> result(new AMTContainer());
55 
56  boost::shared_ptr<SpectrumQuery> rag_a = makeSpectrumQuery(3,3,3,"rag");
57  boost::shared_ptr<SpectrumQuery> rag_c = makeSpectrumQuery(3,3,3,"rag");
58  boost::shared_ptr<SpectrumQuery> rag_b = makeSpectrumQuery(2,4,0.5,"rag");
59  boost::shared_ptr<SpectrumQuery> mallick_a = makeSpectrumQuery(5,1,7,"mallick");
60  boost::shared_ptr<SpectrumQuery> mallick_b = makeSpectrumQuery(15,3,7,"mallick");
61 
62  vector<boost::shared_ptr<SpectrumQuery> > sqs;
63  sqs.clear();
64  sqs.push_back(rag_a);
65  sqs.push_back(rag_c);
66  sqs.push_back(rag_b);
67  sqs.push_back(mallick_a);
68  sqs.push_back(mallick_b);
69 
70  PidfPtr pidf(new PeptideID_dataFetcher(sqs));
71  result->_pidf = pidf;
72  result->rtAdjusted = true; // don't worry about adjusting RT here
73  result->_sqs = sqs;
74 
75  return result;
76 
77 }
78 
79 void write(const Gaussian& gaussian)
80 {
81  cout << gaussian.mu.first << endl;
82  cout << gaussian.mu.second << endl;
83  cout << gaussian.sigma.first << endl;
84  cout << gaussian.sigma.second << endl;
85 
86  return;
87 }
88 
89 void test()
90 {
91  boost::shared_ptr<AMTContainer> amtc = makeAMTContainer();
92  IslandizedDatabase id(amtc);
93 
94  // make the Island that we expect to find
96  island.id = "rag";
97 
98  IslandizedDatabase::Gaussian gaussian(make_pair(make_pair(1.00727, 3), make_pair(.0009, 90)));
99  IslandizedDatabase::Gaussian gaussian_2(make_pair(make_pair(2.00727, 3), make_pair(.0009, 90)));
100  island.gaussians.push_back(gaussian);
101  island.gaussians.push_back(gaussian_2);
102 
103  // write(gaussian);
104  // write(gaussian_2);
105  // write(*(id.islands.begin())->gaussians.begin());
106 
107  // create IslandizedDatabase
108  // test existence of the islands and correctness of their mu and sigmas
109 
110 }
111 
112 int main()
113 {
114  test();
115  return 0;
116 }