ProteoWizard
Feature2PeptideMatcherTest.cpp
Go to the documentation of this file.
1 //
2 // $Id: Feature2PeptideMatcherTest.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 
27 
28 using namespace pwiz::cv;
29 using namespace pwiz::eharmony;
30 using namespace pwiz::data::pepxml;
31 using namespace pwiz::util;
32 
33 ostream* os_ = 0;
34 
36 {
37  PointsToSame(MatchPtr& mp) : _mp(mp){}
38  bool operator()(const MatchPtr& pm){return (*_mp) == (*pm);}
39 
41 
42 };
43 
44 SpectrumQuery makeSpectrumQuery(double precursorNeutralMass, double rt, int charge, string sequence, double score, int startScan, int endScan)
45 {
46  SpectrumQuery spectrumQuery;
47  spectrumQuery.startScan = startScan;
48  spectrumQuery.endScan = endScan;
49  spectrumQuery.precursorNeutralMass = precursorNeutralMass;
50  spectrumQuery.assumedCharge = charge;
51  spectrumQuery.retentionTimeSec = rt;
52 
53  SearchResult searchResult;
54 
55  SearchHit searchHit;
56  searchHit.peptide = sequence;
57 
58 
59  AnalysisResult analysisResult;
60  analysisResult.analysis = "peptideprophet";
61 
62  PeptideProphetResult ppresult;
63  ppresult.probability = score;
64  ppresult.allNttProb.push_back(0);
65  ppresult.allNttProb.push_back(0);
66  ppresult.allNttProb.push_back(score);
67 
68  analysisResult.peptideProphetResult = ppresult;
69 
70  searchHit.analysisResult = analysisResult;
71  searchResult.searchHit = searchHit;
72 
73  spectrumQuery.searchResult = searchResult;
74 
75  return spectrumQuery;
76 
77 }
78 
79 
80 FeaturePtr makeFeature(double mz, double retentionTime, string ms1_5, int charge = 0)
81 {
82  FeaturePtr feature(new Feature());
83  feature->mz = mz;
84  feature->retentionTime = retentionTime;
85  feature->charge = charge;
86 
87  return feature;
88 
89 }
90 
91 void test()
92 {
93 
94 // TODO
95 // Goal is to test that we can catch all of the six ways in which we can be wrong or right in identifying a match:
96 
97 // Ways to be right:
98 // A) Only one peptide within search radius of feature; peptide is correct and we call it correct; TP
99 // B) No peptides within search radius of feature; next nearest peptide is incorrect and we call it incorrect; TN
100 // C) More than one peptide within search radius of feature; one peptide is correct and we call it correct; TP; the rest are incorrect and we've called them incorrect; TN
101 
102 // Ways to be wrong:
103 // D) Only one peptide within search radius of feature; peptide is incorrect and we call it correct; FP
104 // E) No peptides within search radius of feature; next nearest peptide is correct and we call it incorrect; FN;
105 // F) More than one peptide within search radius of feature; one peptide is correct and we call it incorrect; FN; the rest are incorrect and we've called one of them correct; FP
106 
107 }
108 
109 int main(int argc, char* argv[])
110 {
111  try
112  {
113  if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
114  if (os_) *os_ << "\nFeature2PeptideMatcherTest ... \n";
115  test();
116 
117  }
118 
119  catch (std::exception& e)
120  {
121  cerr << e.what() << endl;
122  return 1;
123 
124  }
125 
126  catch (...)
127  {
128  cerr << "Caught unknown exception.\n";
129  return 1;
130 
131  }
132 }