Home  · Classes  · Annotated Classes  · Modules  · Members  · Namespaces  · Related Pages

ClusteredMS2ConsensusSpectrum.h

Go to the documentation of this file.
00001 // --------------------------------------------------------------------------
00002 //                   OpenMS -- Open-Source Mass Spectrometry
00003 // --------------------------------------------------------------------------
00004 // Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
00005 // ETH Zurich, and Freie Universitaet Berlin 2002-2012.
00006 //
00007 // This software is released under a three-clause BSD license:
00008 //  * Redistributions of source code must retain the above copyright
00009 //    notice, this list of conditions and the following disclaimer.
00010 //  * Redistributions in binary form must reproduce the above copyright
00011 //    notice, this list of conditions and the following disclaimer in the
00012 //    documentation and/or other materials provided with the distribution.
00013 //  * Neither the name of any author or any participating institution
00014 //    may be used to endorse or promote products derived from this software
00015 //    without specific prior written permission.
00016 // For a full list of authors, refer to the file AUTHORS.
00017 // --------------------------------------------------------------------------
00018 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00019 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00020 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
00021 // ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
00022 // INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
00023 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
00024 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
00025 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
00026 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
00027 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
00028 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00029 //
00030 // --------------------------------------------------------------------------
00031 // $Maintainer: Florian Zeller $
00032 // $Authors: Lukas Mueller, Markus Mueller $
00033 // --------------------------------------------------------------------------
00034 //
00036 //
00037 //  PEAK DETECTION OF FOURIER TRANSFORME MS INSTRUMENT DATA
00038 //
00039 //  written by Markus Mueller, markus.mueller@imsb.biol.ethz.ch
00040 //  ( and Lukas Mueller, Lukas.Mueller@imsb.biol.ethz.ch)
00041 //  October 2005
00042 //
00043 //  Ported to OpenMS by Florian Zeller, florian.zeller@bsse.ethz.ch
00044 //  December 2010
00045 //
00046 //  Group of Prof. Ruedi Aebersold, IMSB, ETH Hoenggerberg, Zurich
00047 //
00048 //
00049 
00050 #ifndef OPENMS_TRANSFORMATIONS_FEATUREFINDER_SUPERHIRN_CLUSTEREDMS2CONSENSUSSPECTRUM_H
00051 #define OPENMS_TRANSFORMATIONS_FEATUREFINDER_SUPERHIRN_CLUSTEREDMS2CONSENSUSSPECTRUM_H
00052 
00053 #include <vector>
00054 #include <OpenMS/CONCEPT/Types.h>
00055 #include <OpenMS/TRANSFORMATIONS/FEATUREFINDER/SUPERHIRN/MS2ConsensusSpectrum.h>
00056 
00057 namespace OpenMS
00058 {
00059 
00060   class OPENMS_DLLAPI ClusteredMS2ConsensusSpectrum :
00061     public MS2ConsensusSpectrum
00062   {
00063 
00065     // declaration of the private members:
00066 
00067 private:
00068 
00070     // declaration of the public members:
00071 
00072     // stores the individual MS/MS spectra:
00073     std::vector<int> MS2Scans;
00074 
00075 public:
00076 
00077     using MS2ConsensusSpectrum::operator=;
00078 
00079     // class destructor
00080     ~ClusteredMS2ConsensusSpectrum();
00081 
00082     // class constructor
00083     ClusteredMS2ConsensusSpectrum() {}
00084     ClusteredMS2ConsensusSpectrum(MS2Fragment *);
00085     ClusteredMS2ConsensusSpectrum(MS2ConsensusSpectrum *);
00086     ClusteredMS2ConsensusSpectrum(double, double, int, int);
00087 
00088     // class copy constructor
00089     ClusteredMS2ConsensusSpectrum(const ClusteredMS2ConsensusSpectrum &);
00090     // class copy constructor
00091     ClusteredMS2ConsensusSpectrum(const ClusteredMS2ConsensusSpectrum *);
00092 
00094     // overload operators:
00095     //ClusteredMS2ConsensusSpectrum& operator=(const ClusteredMS2ConsensusSpectrum&);
00096     bool operator==(const ClusteredMS2ConsensusSpectrum &);
00097     ClusteredMS2ConsensusSpectrum & operator<=(const ClusteredMS2ConsensusSpectrum &);
00098     ClusteredMS2ConsensusSpectrum & operator>=(const ClusteredMS2ConsensusSpectrum &);
00099     ClusteredMS2ConsensusSpectrum & operator<(const ClusteredMS2ConsensusSpectrum &);
00100     ClusteredMS2ConsensusSpectrum & operator>(const ClusteredMS2ConsensusSpectrum &);
00101 
00103     // trace the fragments across MS/MS scans runs:
00104     void constructClusteredConsenusSpectraFragments(MS2ConsensusSpectrum *);
00105 
00106     // add a MS2 Consensus Spectrum:
00107     void addMS2ConsensusSpectrum(MS2ConsensusSpectrum *);
00108 
00110     // extracts fragments from a MS/MS spectra and inserts
00111     // them into the Clustered MS/MS spectrum:
00112     void extractFragmentsFromSpectra(MS2ConsensusSpectrum *);
00113     // merge a MS2 fragment into the target MS2 fragment:
00114     void mergeMS2Fragments(MS2Fragment *, MS2Fragment *);
00115 
00116     // plot all the consensus MS2 spectrum in one plot:
00117     void plotCombinedSpectra();
00118 
00119     // remove outlier fragments based on their:
00120     // MS2Fragment::OutlierAttribute = ...
00121     // 1: retention time
00122     // 2: precursor mass
00123     // etc.
00124     void removeOutlierFragments();
00125 
00127     // start here all the get / set
00128     // function to access the
00129     // variables of the class
00130 
00131     int getNumberOfSpectraScan()
00132     {
00133       return (int) MS2Scans.size();
00134     }
00135 
00136     std::vector<int>::iterator getSpectraScanNumberStart()
00137     {
00138       return MS2Scans.begin();
00139     }
00140 
00141     std::vector<int>::iterator getSpectraScanNumberEnd()
00142     {
00143       return MS2Scans.end();
00144     }
00145 
00146   };
00147 
00148 } // ns
00149 
00150 #endif // OPENMS_TRANSFORMATIONS_FEATUREFINDER_SUPERHIRN_CLUSTEREDMS2CONSENSUSSPECTRUM_H

OpenMS / TOPP release 1.10.0 Documentation generated on Thu Mar 7 2013 09:42:37 using doxygen 1.7.1