ProteoWizard
MSIAMTData.hpp
Go to the documentation of this file.
1 //
2 // $Id: MSIAMTData.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 /// MSIAMTData.hpp
25 ///
26 
27 /// Not a verbatim reader/writer; mainly follows msinspect/amt schema but gets only the necessary elements, writing skipped element names to the console for monitoring , writes only elements necessary for eharmony
28 
32 #include <vector>
33 
34 namespace pwiz{
35 namespace eharmony{
36 
37 using namespace pwiz::minimxml;
38 
40 {
43  size_t runID;
44  double timeInRun;
45  size_t spectralCount;
46 
47  void read(std::istream& is);
48  void write(XMLWriter& writer) const;
49 
50  Observation() : observedHydrophobicity(0), peptideProphet(0), runID(0), timeInRun(0), spectralCount(0){}
51 
52 };
53 
55 {
56  std::string modifiedSequence;
57  double modifiedMass;
60 
61  std::vector<Observation> observations;
62 
63  void read(std::istream& is);
64  void write(XMLWriter& writer) const;
65 
66  ModificationStateEntry() : modifiedSequence(""), modifiedMass(0), medianObservedHydrophobicity(0), medianPeptideProphet(0){}
67 
68 };
69 
71 {
72  std::string peptideSequence;
76 
77  std::vector<ModificationStateEntry> modificationStateEntries;
78 
79  void read(std::istream& is);
80  void write(XMLWriter& writer) const;
81 
82  PeptideEntry() : peptideSequence(""), calculatedHydrophobicity(0), medianObservedHydrophobicity(0), medianPeptideProphet(0){}
83 
84 };
85 
86 struct MSIAMTData // does not contain all elements of the <amt:amt_database ... > tag but serves as a container for reading in peptide entries
87 {
88  std::vector<PeptideEntry> peptideEntries;
89 
90  void read(std::istream& is);
91  void write(XMLWriter& writer) const;
92 
94 
95 };
96 
97 } // eharmony
98 } // pwiz