ProteoWizard
Main Page
Namespaces
Classes
Files
File List
File Members
pwiz
analysis
passive
RunSummary.hpp
Go to the documentation of this file.
1
//
2
// $Id: RunSummary.hpp 4136 2012-11-21 21:17:24Z chambm $
3
//
4
//
5
// Original author: Matt Chambers <matt.chambers <a.t> vanderbilt.edu>
6
//
7
// Copyright 2010 Vanderbilt University - Nashville, TN 37232
8
//
9
// Licensed under the Apache License, Version 2.0 (the "License");
10
// you may not use this file except in compliance with the License.
11
// You may obtain a copy of the License at
12
//
13
// http://www.apache.org/licenses/LICENSE-2.0
14
//
15
// Unless required by applicable law or agreed to in writing, software
16
// distributed under the License is distributed on an "AS IS" BASIS,
17
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
// See the License for the specific language governing permissions and
19
// limitations under the License.
20
//
21
22
23
#ifndef _RUNSUMMARY_HPP_
24
#define _RUNSUMMARY_HPP_
25
26
27
#include "
pwiz/utility/misc/Export.hpp
"
28
#include "
MSDataAnalyzer.hpp
"
29
#include "
MSDataCache.hpp
"
30
#include "
TabularConfig.hpp
"
31
#include "
pwiz/utility/misc/IntegerSet.hpp
"
32
33
34
namespace
pwiz {
35
namespace
analysis {
36
37
38
/// writes table of spectrum metadata to a file
39
class
PWIZ_API_DECL
RunSummary
:
public
MSDataAnalyzer
40
{
41
public
:
42
43
struct
PWIZ_API_DECL
Config
:
TabularConfig
44
{
45
pwiz::util::IntegerSet
msLevels
;
46
pwiz::util::IntegerSet
charges
;
47
48
Config
(
const
std::string& args =
""
);
49
};
50
51
52
RunSummary
(
const
MSDataCache
& cache,
const
Config
& config);
53
54
/// \name MSDataAnalyzer interface
55
//@{
56
virtual
UpdateRequest updateRequested(
const
DataInfo
& dataInfo,
57
const
SpectrumIdentity
& spectrumIdentity)
const
;
58
59
virtual
void
close(
const
DataInfo
& dataInfo);
60
//@}
61
62
private
:
63
const
MSDataCache
&
cache_
;
64
const
Config
config_
;
65
};
66
67
68
template
<>
69
struct
analyzer_strings
<
RunSummary
>
70
{
71
static
const
char
*
id
() {
return
"run_summary"
;}
72
static
const
char
*
description
() {
return
"print summary statistics about a run"
;}
73
static
const
char
*
argsFormat
() {
return
"["
TABULARCONFIG_DELIMITER_OPTIONS_STR
"] [msLevels=int_set] [charges=int_set]"
;}
74
static
std::vector<std::string>
argsUsage
()
75
{
76
std::vector<std::string> result;
77
result.push_back(
TABULARCONFIG_DELIMITER_USAGE_STR
);
78
result.push_back(
"msLevels: if specified, summary only operates on these MS levels; default is all MS levels"
);
79
result.push_back(
"charges: if specified, summary only operates on these charge states; default is all charges"
);
80
return
result;
81
}
82
};
83
84
85
}
// namespace analysis
86
}
// namespace pwiz
87
88
89
#endif // _RUNSUMMARY_HPP_
90
Generated on Mon Nov 26 2012 18:05:47 for ProteoWizard by
1.8.1.1