ProteoWizard
WarpFunctionTest.cpp
Go to the documentation of this file.
1 //
2 // $Id: WarpFunctionTest.cpp 2051 2010-06-15 18:39:13Z chambm $
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 /// WarpFunctionTest.cpp
25 ///
26 
27 #include "WarpFunction.hpp"
30 #include <cstring>
31 
32 using namespace pwiz::cv;
33 using namespace pwiz::eharmony;
34 using namespace pwiz::util;
35 
36 ostream* os_ = 0;
38 
39 vector<pair<double,double> > initializeColinearAnchors()
40 {
41  pair<double,double> a(0,0);
42  pair<double,double> b(1,1);
43  pair<double,double> c(2,2);
44 
45  vector<pair<double,double> > anchors;
46  anchors.push_back(a);
47  anchors.push_back(b);
48  anchors.push_back(c);
49 
50  return anchors;
51 
52 }
53 
54 vector<pair<double,double> > initializeNonColinearAnchors()
55 {
56  pair<double,double> a(0,0);
57  pair<double,double> b(1,1);
58  pair<double,double> c(2,4);
59 
60  vector<pair<double,double> > anchors;
61  anchors.push_back(a);
62  anchors.push_back(b);
63  anchors.push_back(c);
64 
65  return anchors;
66 
67 }
68 
69 vector<double> initializeRtVals()
70 {
71  vector<double> rtVals;
72  rtVals.push_back(-1);
73  rtVals.push_back(3);
74  rtVals.push_back(1.5);
75  rtVals.push_back(0.5);
76  rtVals.push_back(7);
77 
78  return rtVals;
79 
80 }
81 
82 vector<pair<double,double> > initializeSplineAnchors()
83 {
84  vector<pair<double,double> > splineAnchors;
85  splineAnchors.push_back(make_pair(0,0));
86  splineAnchors.push_back(make_pair(1,1));
87  splineAnchors.push_back(make_pair(2,1.5));
88  splineAnchors.push_back(make_pair(3,4));
89 
90  return splineAnchors;
91 
92 }
93 
95 {
96  if (os_) *os_ << "testColinearLinearWarp() ... \n\n";
97 
98  // test LinearWarp for preserving colinear points
99 
100  vector<pair<double,double> > anchors = initializeColinearAnchors();
101  vector<double> rtVals = initializeRtVals();
102 
103  LinearWarpFunction linearWarp(anchors);
104  vector<double> warpedRtVals;
105  linearWarp(rtVals, warpedRtVals);
106 
107  unit_assert_equal(warpedRtVals.at(0), -1, epsilon);
108  unit_assert_equal(warpedRtVals.at(1), 3, epsilon);
109  unit_assert_equal(warpedRtVals.at(2), 1.5, epsilon);
110  unit_assert_equal(warpedRtVals.at(3), 0.5, epsilon);
111 
112 
113  if (os_)
114  {
115  *os_ << "testing LinearWarpFunction on colinear points... \n";
116  *os_ << "(original value , warped value)\n";
117  vector<double>::iterator rt_it = rtVals.begin();
118  vector<double>::iterator warped_it = warpedRtVals.begin();
119  for(; rt_it != rtVals.end(); ++rt_it, ++warped_it)
120  {
121  *os_<< ("(" + boost::lexical_cast<string>(*rt_it) + ", " + boost::lexical_cast<string>(*warped_it) + ")" ).c_str() << endl;
122 
123  }
124 
125  *os_ << "\n";
126 
127  }
128 }
129 
131 {
132  if (os_) *os_ << "testNonColinearLinearWarp() ... \n\n";
133 
134  // test LinearWarp for non-colinear points
135 
136  vector<pair<double, double> > anchors = initializeNonColinearAnchors();
137  vector<double> rtVals = initializeRtVals();
138  rtVals.pop_back(); // don't need last elt - is for piecewise linear
139 
140  LinearWarpFunction ncLinearWarp(anchors);
141  vector<double> warpedRtVals;
142  ncLinearWarp(rtVals,warpedRtVals);
143 
144 
145  unit_assert_equal(warpedRtVals.at(0), -7.0/3.0, epsilon);
146  unit_assert_equal(warpedRtVals.at(1), 17.0/3.0, epsilon);
147  unit_assert_equal(warpedRtVals.at(2), 8.0/3.0, epsilon);
148 
149 
150  if (os_)
151  {
152  *os_ << "testing LinearWarpFunction on non-colinear points... \n";
153  *os_ << "(original value , warped value)\n";
154  vector<double>::iterator rt_it = rtVals.begin();
155  vector<double>::iterator warped_it = warpedRtVals.begin();
156  for(; rt_it != rtVals.end(); ++rt_it, ++warped_it)
157  {
158  *os_<< ("(" + boost::lexical_cast<string>(*rt_it) + ", " + boost::lexical_cast<string>(*warped_it) + ")" ).c_str() << endl;
159 
160  }
161  *os_ << "\n";
162 
163  }
164 
165 }
166 
168 {
169  if (os_) *os_ << "testPiecewiseLinearWarp() ... \n\n";
170 
171  vector<pair<double, double> > anchors = initializeNonColinearAnchors();
172  vector<double> rtVals = initializeRtVals();
173 
174  PiecewiseLinearWarpFunction piecewiseLinearWarp(anchors);
175  vector<double> warpedRtVals;
176  piecewiseLinearWarp(rtVals, warpedRtVals);
177 
178  unit_assert_equal(warpedRtVals.at(0), 0, epsilon);
179  unit_assert_equal(warpedRtVals.at(1), 7, epsilon);
180  unit_assert_equal(warpedRtVals.at(2), 2.5, epsilon);
181  unit_assert_equal(warpedRtVals.at(3), 0.5, epsilon);
182 
183  if (os_)
184  {
185  *os_ << "testing PiecewiseLinearWarpFunction ... \n";
186  *os_ << "(original value , warped value)\n";
187  vector<double>::iterator rt_it = rtVals.begin();
188  vector<double>::iterator warped_it = warpedRtVals.begin();
189  for(; rt_it != rtVals.end(); ++rt_it, ++warped_it)
190  {
191  *os_<< ("(" + boost::lexical_cast<string>(*rt_it) + ", " + boost::lexical_cast<string>(*warped_it) + ")" ).c_str() << endl;
192 
193  }
194 
195  *os_ << "\n";
196 
197  }
198 
199 }
200 
202 {
203  vector<pair<double,double> > anchors = initializeSplineAnchors();
204  SplineWarpFunction swf(anchors);
205 
206  vector<double> rtVals = initializeRtVals();
207  vector<double> warpedRtVals;
208  swf(rtVals, warpedRtVals);
209 
210  // coefficients:
211  // 0, 0,3,-2;
212  // 1,.125,2.1875,-1.3125;
213  // 2,.5625,1.875,-1.4375;
214 
215  const double error = .001;
216 
217  unit_assert_equal(warpedRtVals.at(0), 0, error);
218  unit_assert_equal(warpedRtVals.at(1), 4, error);
219  unit_assert_equal(warpedRtVals.at(2), 1.2191162109375, error);
220  unit_assert_equal(warpedRtVals.at(3), 1, error);
221  unit_assert_equal(warpedRtVals.at(4),-395.25, error); // hey, i didn't say it was good.
222 
223 }
224 
225 int main(int argc, char* argv[])
226 {
227  try
228  {
229  if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
230  if (os_) *os_ << "WarpFunctionTest:\n\n";
234  // testSplineWarp();
235 
236  }
237 
238  catch (exception& e)
239  {
240  cerr << e.what();
241  return 1;
242 
243  }
244 
245  return 0;
246 
247 }