ProteoWizard
ReferenceWrite_mz5.hpp
Go to the documentation of this file.
1 //
2 // $Id: ReferenceWrite_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 REFERENCEWRITE_MZ5_HPP_
25 #define REFERENCEWRITE_MZ5_HPP_
26 
27 #include "../../common/cv.hpp"
28 #include "../../common/ParamTypes.hpp"
29 #include "../MSData.hpp"
31 #include "Datastructures_mz5.hpp"
32 #include "Connection_mz5.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 for converting and writing mz5 files in mz5 format.
43  */
45 {
46 public:
47  /**
48  * Default constructor.
49  * @param msd MSData input object
50  */
52 
53  /**
54  * Stores a CVID into internal maps and returns the corresponding index.
55  * @param cvid CVID input
56  * @return index in list
57  */
58  unsigned long getCVRefId(const pwiz::cv::CVID cvid) const;
59 
60  /**
61  * Stores a parameter group into internal maps and returns the corresponding index.
62  * @return index in list
63  */
64  unsigned long getParamGroupId(const pwiz::data::ParamGroup&,
65  const ParamGroupMZ5* pg5 = 0) const;
66 
67  /**
68  * Stores a parameter container into internal maps and returns the corresponding index.
69  * @return index in list
70  */
71  void
72  getIndizes(unsigned long& cvstart, unsigned long& cvend,
73  unsigned long& usrstart, unsigned long& usrend,
74  unsigned long& refstart, unsigned long& refend, const std::vector<
75  pwiz::msdata::CVParam>& cvs, const std::vector<
76  pwiz::msdata::UserParam>& usrs, const std::vector<
77  pwiz::msdata::ParamGroupPtr>& groups) const;
78 
79  /**
80  * Stores a source file into internal maps and returns the corresponding index.
81  * @return index in list
82  */
83  unsigned long getSourceFileId(const pwiz::msdata::SourceFile&,
84  const SourceFileMZ5* sf5 = 0) const;
85 
86  /**
87  * Stores a sample into internal maps and returns the corresponding index.
88  * @return index in list
89  */
90  unsigned long getSampleId(const pwiz::msdata::Sample&, const SampleMZ5* s5 =
91  0) const;
92 
93  /**
94  * Stores a software into internal maps and returns the corresponding index.
95  * @return index in list
96  */
97  unsigned long
99  0) const;
100 
101  /**
102  * Stores a scan setting element into internal maps and returns the corresponding index.
103  * @return index in list
104  */
105  unsigned long getScanSettingId(const pwiz::msdata::ScanSettings&,
106  const ScanSettingMZ5* ss5 = 0) const;
107 
108  /**
109  * Stores a instrument configuration into internal maps and returns the corresponding index.
110  * @return index in list
111  */
113  const InstrumentConfigurationMZ5* ic5 = 0) const;
114 
115  /**
116  * Stores a data processing element into internal maps and returns the corresponding index.
117  * @return index in list
118  */
120  const DataProcessingMZ5* dp5 = 0) const;
121 
122  /**
123  * Stores a spectrum into internal maps and returns the corresponding index.
124  * @return index in list
125  */
126  void addSpectrumIndexPair(const std::string&, const unsigned long) const;
127 
128  /**
129  * Resolves a spectrum name and returns the corresponding index.
130  * @return index in list
131  */
132  unsigned long getSpectrumIndex(const std::string&) const;
133 
134  /**
135  *
136  */
137  void
138  writeTo(
139  Connection_mz5& connection,
140  const pwiz::util::IterationListenerRegistry* iterationListenerRegistry);
141 
142 private:
143  /**
144  * Reads and writes all raw spectra using an existing mz5 connection.
145  * @param connection mz5 connection object
146  * @param bdl binary data list of a MSData object
147  * @param spl spetrum data list of a MSData object
148  */
151  Connection_mz5& connection,
152  std::vector<BinaryDataMZ5>& bdl,
153  std::vector<SpectrumMZ5>& spl,
154  const pwiz::util::IterationListenerRegistry* iterationListenerRegistry);
155 
156  /**
157  * Reads and writes all chromtograms using an existing mz5 connection.
158  * @param connection mz5 connection object
159  * @param bdl binary data list of a MSData object
160  * @param cpl chromatogram list of a MSData object
161  */
164  Connection_mz5& connection,
165  std::vector<BinaryDataMZ5>& bdl,
166  std::vector<ChromatogramMZ5>& cpl,
167  const pwiz::util::IterationListenerRegistry* iterationListenerRegistry);
168 
169  /**
170  * Internal reference to the MSData object.
171  */
173 
174  /**
175  * Following lists are used as internal storage container.
176  */
177  // TODO mutable?
178  mutable std::vector<CVRefMZ5> cvrefs_;
179  mutable std::map<pwiz::cv::CVID, unsigned long> cvToIndexMapping_;
180  mutable std::map<unsigned long, pwiz::cv::CVID> cvFromIndexMapping_;
181 
182  //TODO can we get rid of all vectors?
183  mutable std::vector<ParamGroupMZ5> paramGroupList_;
184  mutable std::map<std::string, unsigned long> paramGroupMapping_;
185 
186  mutable std::vector<CVParamMZ5> cvParams_;
187  mutable std::vector<UserParamMZ5> usrParams_;
188  mutable std::vector<RefMZ5> refParms_;
189 
190  mutable std::vector<SourceFileMZ5> sourceFileList_;
191  mutable std::map<std::string, unsigned long> sourceFileMapping_;
192 
193  mutable std::vector<SampleMZ5> sampleList_;
194  mutable std::map<std::string, unsigned long> sampleMapping_;
195 
196  mutable std::vector<SoftwareMZ5> softwareList_;
197  mutable std::map<std::string, unsigned long> softwareMapping_;
198 
199  mutable std::vector<ScanSettingMZ5> scanSettingList_;
200  mutable std::map<std::string, unsigned long> scanSettingMapping_;
201 
202  mutable std::vector<InstrumentConfigurationMZ5> instrumentList_;
203  mutable std::map<std::string, unsigned long> instrumentMapping_;
204 
205  mutable std::vector<DataProcessingMZ5> dataProcessingList_;
206  mutable std::map<std::string, unsigned long> dataProcessingMapping_;
207 
208  mutable std::map<std::string, unsigned long> spectrumMapping_;
209 
210  mutable std::vector<ContVocabMZ5> contvacb_;
211  mutable std::vector<ParamListMZ5> fileContent_;
212  mutable std::vector<ParamListMZ5> contacts_;
213 
214  mutable std::vector<RunMZ5> rl_;
215 };
216 
217 }
218 }
219 }
220 
221 #endif /* REFERENCEWRITE_MZ5_HPP_ */