ProteoWizard
DistanceAttributesTest.cpp
Go to the documentation of this file.
1 //
2 // $Id: DistanceAttributesTest.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 /// DistanceAttributesTest.cpp
25 ///
26 
27 #include "DistanceAttributes.hpp"
28 #include "NeighborJoiner.hpp"
30 
31 using namespace pwiz;
32 using namespace eharmony;
33 using namespace pwiz::util;
34 
35 boost::shared_ptr<SpectrumQuery> generateSpectrumQuery(const string& sequence, const double& mass, const int& charge, const double& rt)
36 {
37  boost::shared_ptr<SpectrumQuery> result(new SpectrumQuery());
38  result->precursorNeutralMass = mass;
39  result->assumedCharge = charge;
40  result->retentionTimeSec = rt;
41  result->searchResult.searchHit.peptide = sequence;
42  result->searchResult.searchHit.analysisResult.peptideProphetResult.probability = 1.0;
43 
44  return result;
45 }
46 
47 vector<boost::shared_ptr<AMTContainer> > generateAMTContainers()
48 {
49  // Only deals with peptides right now as that is the only variable to existing distance attrs
50  // If distance attrs need actual feature data, that will need to be initialized as well
51 
52  boost::shared_ptr<SpectrumQuery> a = generateSpectrumQuery("ROBERTBURKE",354,5,415);
53  boost::shared_ptr<SpectrumQuery> b = generateSpectrumQuery("DARRENKESSNER", 170, 4, 420);
54  boost::shared_ptr<SpectrumQuery> c = generateSpectrumQuery("ROBERTRICE", 165, 3, 1200);
55  boost::shared_ptr<SpectrumQuery> d = generateSpectrumQuery("KATHERINEHOFF", 130, 2, 515);
56  boost::shared_ptr<SpectrumQuery> e = generateSpectrumQuery("PARAGMALLICK", 165, 3, 345);
57 
58  vector<boost::shared_ptr<SpectrumQuery> > first;
59  first.push_back(a);
60  first.push_back(b);
61  first.push_back(c);
62  first.push_back(d);
63  first.push_back(e);
64 
65  boost::shared_ptr<SpectrumQuery> a2 = generateSpectrumQuery("ROBERTBURKE", 355,5,416);
66  boost::shared_ptr<SpectrumQuery> b2 = generateSpectrumQuery("DARRENKESSNER", 175, 4, 666);
67  boost::shared_ptr<SpectrumQuery> c2 = generateSpectrumQuery("DAMIENWOOD", 200, 3, 815);
68 
69  vector<boost::shared_ptr<SpectrumQuery> > second;
70  second.push_back(a2);
71  second.push_back(b2);
72  second.push_back(c2);
73 
74  boost::shared_ptr<SpectrumQuery> a3 = generateSpectrumQuery("ROBERTBURKE", 356,5,417);
75 
76  vector<boost::shared_ptr<SpectrumQuery> > third;
77  third.push_back(a3);
78 
79  boost::shared_ptr<SpectrumQuery> a4 = generateSpectrumQuery("ROBERTBURKE", 357, 5, 418);
80 
81  vector<boost::shared_ptr<SpectrumQuery> > fourth;
82  fourth.push_back(a4);
83 
84  PidfPtr pidf1(new PeptideID_dataFetcher(first));
85  PidfPtr pidf2(new PeptideID_dataFetcher(second));
86  PidfPtr pidf3(new PeptideID_dataFetcher(third));
87  PidfPtr pidf4(new PeptideID_dataFetcher(fourth));
88 
89  boost::shared_ptr<AMTContainer> amt1(new AMTContainer());
90  amt1->_pidf = pidf1;
91 
92  boost::shared_ptr<AMTContainer> amt2(new AMTContainer());
93  amt2->_pidf = pidf2;
94 
95  boost::shared_ptr<AMTContainer> amt3(new AMTContainer());
96  amt3->_pidf = pidf3;
97 
98  boost::shared_ptr<AMTContainer> amt4(new AMTContainer());
99  amt4->_pidf = pidf4;
100 
101  vector<boost::shared_ptr<AMTContainer> > result;
102  result.push_back(amt1);
103  result.push_back(amt2);
104  result.push_back(amt3);
105  result.push_back(amt4);
106 
107  return result;
108 
109 }
110 
111 void test()
112 {
113 
114  vector<boost::shared_ptr<AMTContainer> > entries = generateAMTContainers();
115 
116  // test RTDiffDistribution - just a get of params from PM
117 
118  // test WeightedHammingDistance
119  // NeighborJoiner
120 
121  boost::shared_ptr<WeightedHammingDistance> whd(new WeightedHammingDistance(entries));
122  NeighborJoiner nj(entries);
123  nj._attributes.push_back(whd);
124  nj.calculateDistanceMatrix();
125 
126  // unit_assert on rows and columns
127  const double epsilon = 2*numeric_limits<double>::epsilon();
128  unit_assert_equal(nj._rows.at(1).at(0), 1.0666666666666666, epsilon);
129  unit_assert_equal(nj._rows.at(2).at(0), 0.80, epsilon);
130  unit_assert_equal(nj._rows.at(3).at(0), 0.80, epsilon);
131  unit_assert_equal(nj._rows.at(2).at(1), 0.2666666666666666, epsilon);
132  unit_assert_equal(nj._rows.at(3).at(1), 0.2666666666666666, epsilon);
133  unit_assert_equal(nj._rows.at(3).at(2), 0, epsilon);
134 
135 }
136 
137 int main(int argc, char* argv[])
138 {
139  test();
140  return 0;
141 }