ProteoWizard
PeptideID_dataFetcher.hpp
Go to the documentation of this file.
1 //
2 // $Id: PeptideID_dataFetcher.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 /// PeptideID_dataFetcher.hpp
25 ///
26 
27 #ifndef _PEPTIDEID_DATAFETCHER_HPP_
28 #define _PEPTIDEID_DATAFETCHER_HPP_
29 
30 #include "Feature_dataFetcher.hpp"
32 #include "boost/shared_ptr.hpp"
33 
34 #include <iostream>
35 #include <fstream>
36 
37 
38 using namespace pwiz;
39 using namespace pwiz::data::pepxml;
40 
41 namespace pwiz{
42 namespace eharmony{
43 
45 {
46 
47 public:
48 
49 
50  PeptideID_dataFetcher() : _rtAdjusted(false) {}
51  PeptideID_dataFetcher(std::istream& is, const double& threshold = .9);
52  PeptideID_dataFetcher(const std::vector<boost::shared_ptr<SpectrumQuery> >& sqs);
54 
55  void update(const SpectrumQuery& sq);
56  void erase(const SpectrumQuery& sq);
57  void merge(const PeptideID_dataFetcher& that);
58  size_t size(){ return this->getAllContents().size();}
59 
60  // accessors
61  std::vector<boost::shared_ptr<SpectrumQuery> > getAllContents() const;
62  std::vector<boost::shared_ptr<SpectrumQuery> > getSpectrumQueries(double mz, double rt) ;
63  Bin<SpectrumQuery> getBin() const { return _bin;}
64  void setRtAdjustedFlag(const bool& flag) { _rtAdjusted = flag; }
65  const bool& getRtAdjustedFlag() const { return _rtAdjusted; }
66 
67  bool operator==(const PeptideID_dataFetcher& that);
68  bool operator!=(const PeptideID_dataFetcher& that);
69 
70  std::string id;
71 
72 private:
73 
76 
77  // no copying
80 
81 };
82 
83 } // namespace eharmony
84 } // namespace pwiz
85 
86 #endif //_PEPTIDEID_DATAFETCHER_HPP_