ProteoWizard
Feature2PeptideMatcher.hpp
Go to the documentation of this file.
1 //
2 // $Id: Feature2PeptideMatcher.hpp 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 /// Feature2PeptideMatcher.hpp
25 ///
26 
27 #ifndef _FEATURE2PEPTIDEMATCHER_HPP_
28 #define _FEATURE2PEPTIDEMATCHER_HPP_
29 
30 #include "DataFetcherContainer.hpp"
32 #include "PeptideMatcher.hpp"
35 
36 namespace pwiz{
37 namespace eharmony{
38 
40 {
41 
42 public:
43 
45  Feature2PeptideMatcher(FdfPtr a, PidfPtr b, const NormalDistributionSearch& nds, const int& rocStats=0, const double& threshold=0.75);
46 
47  // accessors
48  std::vector<MatchPtr> getMatches() const { return _matches;}
49  std::vector<MatchPtr> getMismatches() const { return _mismatches;}
50  std::vector<MatchPtr> getTruePositives() const { return _truePositives;}
51  std::vector<MatchPtr> getFalsePositives() const { return _falsePositives;}
52  std::vector<MatchPtr> getTrueNegatives() const { return _trueNegatives;}
53  std::vector<MatchPtr> getFalseNegatives() const { return _falseNegatives;}
54  std::vector<MatchPtr> getUnknownPositives() const { return _unknownPositives;}
55  std::vector<MatchPtr> getUnknownNegatives() const { return _unknownNegatives;}
56 
57  bool operator==(const Feature2PeptideMatcher& that);
58  bool operator!=(const Feature2PeptideMatcher& that);
59 
60 
61  std::vector<MatchPtr> _matches;
62  std::vector<MatchPtr> _mismatches; // un-apt type name Match, but want to store all the info in the Match struct so we can look at why there was a missed match
63 
64  // ROC info
65  std::vector<MatchPtr> _truePositives;
66  std::vector<MatchPtr> _falsePositives;
67  std::vector<MatchPtr> _trueNegatives;
68  std::vector<MatchPtr> _falseNegatives;
69  std::vector<MatchPtr> _unknownPositives; // featureSequenced.ms2.size() == 0 && featureSequenced.ms1_5.size() > 0
70  std::vector<MatchPtr> _unknownNegatives; // featureSequenced.ms2.size() == 0 && featureSequenced.ms1_5.size() == 0
71 
72 };
73 
74 } // namespace eharmony
75 } // namespace pwiz
76 
77 #endif // _FEATURE2PEPTIDEMATCHER_HPP_