ProteoWizard
NeighborJoinerTest.cpp
Go to the documentation of this file.
1 //
2 // $Id: NeighborJoinerTest.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 /// NeighborJoinerTest.cpp
25 ///
26 
27 #include "NeighborJoiner.hpp"
29 
30 using namespace pwiz;
31 using namespace eharmony;
32 using namespace pwiz::util;
33 
34 boost::shared_ptr<SpectrumQuery> makeSpectrumQuery(double precursorNeutralMass, double rt, int charge, string sequence, double score, int startScan, int endScan)
35 {
36  boost::shared_ptr<SpectrumQuery> spectrumQuery(new SpectrumQuery());
37  spectrumQuery->startScan = startScan;
38  spectrumQuery->endScan = endScan;
39  spectrumQuery->precursorNeutralMass = precursorNeutralMass;
40  spectrumQuery->assumedCharge = charge;
41  spectrumQuery->retentionTimeSec = rt;
42 
43  SearchResult searchResult;
44 
45  SearchHit searchHit;
46  searchHit.peptide = sequence;
47 
48  AnalysisResult analysisResult;
49  analysisResult.analysis = "peptideprophet";
50 
51  PeptideProphetResult ppresult;
52  ppresult.probability = score;
53  ppresult.allNttProb.push_back(0);
54  ppresult.allNttProb.push_back(0);
55  ppresult.allNttProb.push_back(score);
56 
57  analysisResult.peptideProphetResult = ppresult;
58 
59  searchHit.analysisResult = analysisResult;
60  searchResult.searchHit = searchHit;
61 
62  spectrumQuery->searchResult = searchResult;
63 
64  return spectrumQuery;
65 
66 }
67 
68 void test()
69 {
70  vector<boost::shared_ptr<SpectrumQuery> > testSpectrumQueries;
71  testSpectrumQueries.push_back(makeSpectrumQuery(550.82, 83.46, 3, "MAHTOMEDI", .95, 612, 651));
72  testSpectrumQueries.push_back(makeSpectrumQuery(02.139, 02.142, 3, "CAMBRIDGE", .95, 617, 857));
73  testSpectrumQueries.push_back(makeSpectrumQuery(904.04, 913.60, 3, "MAHTOMEDI", .95, 310, 805));
74  testSpectrumQueries.push_back(makeSpectrumQuery(537.17, 53.703, 3, "MAHTOMEDI", .96, 608, 715));
75 
76  PidfPtr four(new PeptideID_dataFetcher(testSpectrumQueries));
77  testSpectrumQueries.erase(testSpectrumQueries.begin());
78  testSpectrumQueries.erase(testSpectrumQueries.begin());
79  PidfPtr two(new PeptideID_dataFetcher(testSpectrumQueries));
80  testSpectrumQueries.erase(testSpectrumQueries.begin());
81  PidfPtr one(new PeptideID_dataFetcher(testSpectrumQueries));
82 
83  boost::shared_ptr<Feature_dataFetcher> dummy_fdf(new Feature_dataFetcher());
84 
85  boost::shared_ptr<AMTContainer> cuatro(new AMTContainer());
86  cuatro->_pidf = four;
87  cuatro->_fdf = dummy_fdf;
88  boost::shared_ptr<AMTContainer> dos(new AMTContainer());
89  dos->_pidf = two;
90  dos->_fdf = dummy_fdf;
91  boost::shared_ptr<AMTContainer> uno(new AMTContainer());
92  uno->_pidf = one;
93  uno->_fdf = dummy_fdf;
94 
95  vector<boost::shared_ptr<AMTContainer> > testEntries;
96  testEntries.push_back(cuatro);
97  testEntries.push_back(dos);
98  testEntries.push_back(uno);
99 
100  NeighborJoiner neighborJoiner(testEntries);
101  boost::shared_ptr<NumberOfMS2IDs> numpep(new NumberOfMS2IDs());
102 
103  neighborJoiner.addDistanceAttribute(numpep);
104  neighborJoiner.calculateDistanceMatrix();
105  neighborJoiner.joinNearest();
106 
107  // make the merger that we are looking for
108  dos->merge(*uno);
109 
110  unit_assert(neighborJoiner._rowEntries.back() == *dos);
111  unit_assert(neighborJoiner._columnEntries.back() == *dos);
112 
113  neighborJoiner.calculateDistanceMatrix(); //recalculate given the recent merger
114  neighborJoiner.joinNearest();
115 
116  // make the merger that we are looking for
117  cuatro->merge(*dos);
118 
119  unit_assert(neighborJoiner._rowEntries.back() == *cuatro);
120  unit_assert(neighborJoiner._columnEntries.back() == *cuatro);
121 
122 }
123 
124 int main()
125 {
126  test();
127  return 0;
128 
129 }
130 
131 
132 
133 
134 
135 
136 
137 
138 
139 
140