ProteoWizard
RegionSlice.hpp
Go to the documentation of this file.
1 //
2 // $Id: RegionSlice.hpp 4136 2012-11-21 21:17:24Z chambm $
3 //
4 //
5 // Original author: Darren Kessner <darren@proteowizard.org>
6 //
7 // Copyright 2008 Spielberg Family Center for Applied Proteomics
8 // Cedars-Sinai Medical Center, Los Angeles, California 90048
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 #ifndef _REGIONSLICE_HPP_
25 #define _REGIONSLICE_HPP_
26 
27 
29 #include "MSDataAnalyzer.hpp"
30 #include "MSDataCache.hpp"
31 #include "RegionAnalyzer.hpp"
32 
33 
34 namespace pwiz {
35 namespace analysis {
36 
37 
38 /// writes data samples from a single rectangular region
40 {
41  public:
42 
44  {
45  Config(const std::string& args);
46  };
47 
48  RegionSlice(const MSDataCache& cache, const Config& config);
49 
50  /// \name MSDataAnalyzer interface
51  //@{
52  virtual void open(const DataInfo& dataInfo);
53 
54  virtual UpdateRequest updateRequested(const DataInfo& dataInfo,
55  const SpectrumIdentity& spectrumIdentity) const;
56 
57  virtual void update(const DataInfo& dataInfo,
58  const Spectrum& spectrum);
59 
60  virtual void close(const DataInfo& dataInfo);
61  //@}
62 
63  private:
65  boost::shared_ptr<RegionAnalyzer> regionAnalyzer_;
66 };
67 
68 
69 template<>
71 {
72  static const char* id() {return "slice";}
73  static const char* description() {return "write data from a rectangular region";}
74  static const char* argsFormat() {return "["TABULARCONFIG_DELIMITER_OPTIONS_STR"] [mz=[a,b]] [rt=[a,b]] [index=[a,b]] [sn=[a,b]]";}
75  static std::vector<std::string> argsUsage()
76  {
77  std::vector<std::string> result;
78  result.push_back(TABULARCONFIG_DELIMITER_OPTIONS_STR" (column separation; default is fixed width)");
79  result.push_back("mz=[a,b] (set m/z range)");
80  result.push_back("rt=[a,b] (set retention time range)");
81  result.push_back("index=[a,b] (set spectrum index range)");
82  result.push_back("sn=[a,b] (set scan number range)");
83  return result;
84  }
85 };
86 
87 
88 } // namespace analysis
89 } // namespace pwiz
90 
91 
92 #endif // _REGIONSLICE_HPP_
93