ProteoWizard
ReferenceRead_mz5.hpp
Go to the documentation of this file.
1 //
2 // $Id: ReferenceRead_mz5.hpp 2811 2011-06-23 20:44:29Z chambm $
3 //
4 //
5 // Original authors: Mathias Wilhelm <mw@wilhelmonline.com>
6 // Marc Kirchner <mail@marc-kirchner.de>
7 //
8 // Copyright 2011 Proteomics Center
9 // Children's Hospital Boston, Boston, MA 02135
10 //
11 // Licensed under the Apache License, Version 2.0 (the "License");
12 // you may not use this file except in compliance with the License.
13 // You may obtain a copy of the License at
14 //
15 // http://www.apache.org/licenses/LICENSE-2.0
16 //
17 // Unless required by applicable law or agreed to in writing, software
18 // distributed under the License is distributed on an "AS IS" BASIS,
19 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 // See the License for the specific language governing permissions and
21 // limitations under the License.
22 //
23 
24 #ifndef REFERENCEREAD_MZ5_HPP_
25 #define REFERENCEREAD_MZ5_HPP_
26 
27 #include "../../common/cv.hpp"
28 #include "../../common/ParamTypes.hpp"
29 #include "../MSData.hpp"
30 #include "Datastructures_mz5.hpp"
31 #include "Connection_mz5.hpp"
32 #include <boost/smart_ptr.hpp>
33 #include <string>
34 #include <vector>
35 #include <map>
36 
37 namespace pwiz {
38 namespace msdata {
39 namespace mz5 {
40 
41 /**
42  * This class is a helper class to read and convert a mz5 file to a MSData object.
43  */
45 {
46 public:
47  /**
48  * Default constructor.
49  * @param msd this MSData object will be filled
50  */
52 
53  /**
54  * Getter.
55  * @param index
56  * @return object with this index. Can throw out_of_range.
57  */
58  pwiz::cv::CVID getCVID(const unsigned long) const;
59 
60  /**
61  * Getter
62  * @param index
63  * @return object with this index. Can throw out_of_range.
64  */
65  pwiz::data::ParamGroupPtr getParamGroupPtr(const unsigned long) const;
66 
67  void fill(std::vector<pwiz::msdata::CVParam>& cv, std::vector<
68  pwiz::msdata::UserParam>& user, std::vector<
69  pwiz::msdata::ParamGroupPtr>& param, const unsigned long& cvstart,
70  const unsigned long& cvend, const unsigned long& usrstart,
71  const unsigned long& usrend, const unsigned long& refstart,
72  const unsigned long& refend) const;
73 
74  /**
75  * Getter
76  * @param index
77  * @return object with this index. Can throw out_of_range.
78  */
79  pwiz::msdata::SourceFilePtr getSourcefilePtr(const unsigned long) const;
80 
81  /**
82  * Getter
83  * @param index
84  * @return object with this index. Can throw out_of_range.
85  */
86  pwiz::msdata::SamplePtr getSamplePtr(const unsigned long) const;
87 
88  /**
89  * Getter
90  * @param index
91  * @return object with this index. Can throw out_of_range.
92  */
93  pwiz::msdata::SoftwarePtr getSoftwarePtr(const unsigned long) const;
94 
95  /**
96  * Getter
97  * @param index
98  * @return object with this index. Can throw out_of_range.
99  */
100  pwiz::msdata::ScanSettingsPtr getScanSettingPtr(const unsigned long) const;
101 
102  /**
103  * Getter
104  * @param index
105  * @return object with this index. Can throw out_of_range.
106  */
108  const unsigned long) const;
109 
110  /**
111  * Getter
112  * @param index
113  * @return object with this index. Can throw out_of_range.
114  */
116  getDataProcessingPtr(const unsigned long) const;
117 
118  /**
119  * Getter
120  * @param index
121  * @return object with this index. Can throw out_of_range.
122  */
123  std::string getSpectrumId(const unsigned long) const;
124 
125  /**
126  * Adds a spectrum index pair to an internal map.
127  * @param name
128  * @param index
129  */
130  void addSpectrumIndexPair(const std::string& name,
131  const unsigned long index) const;
132 
133  /**
134  * Sets internal controlled vocabulary map.
135  */
136  void setCVRefMZ5(CVRefMZ5*, size_t);
137 
138  /**
139  * Fills the internal MSData reference with the data from an mz5 file.
140  * @param connection open mz5 connection to a mz5 file
141  */
142  void fill(boost::shared_ptr<Connection_mz5>& connection);
143 
145  getDefaultChromatogramDP(const size_t index);
146 
148 
149 private:
150  /**
151  * Reference to MSData object.
152  */
154 
155  /**
156  * Following are helper maps and lists for reading.
157  */
158  mutable std::vector<CVRefMZ5> cvrefs_;
159  mutable std::map<unsigned long, pwiz::cv::CVID> bbmapping_;
160  mutable std::vector<CVParamMZ5> cvParams_;
161  mutable std::vector<UserParamMZ5> usrParams_;
162  mutable std::vector<RefMZ5> refParms_;
163  mutable std::map<unsigned long, std::string> spectrumIndex_;
164 
167 };
168 
169 }
170 }
171 }
172 
173 #endif /* REFERENCEREAD_MZ5_HPP_ */