Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #ifndef OPENMS_FORMAT_PEAKTYPEESTIMATOR_H
00036 #define OPENMS_FORMAT_PEAKTYPEESTIMATOR_H
00037
00038 #include <OpenMS/METADATA/SpectrumSettings.h>
00039
00040 #include <cmath>
00041 #include <numeric>
00042
00043 namespace OpenMS
00044 {
00050 class OPENMS_DLLAPI PeakTypeEstimator
00051 {
00052 public:
00058 template <typename PeakConstIterator>
00059 SpectrumSettings::SpectrumType estimateType(const PeakConstIterator & begin, const PeakConstIterator & end) const
00060 {
00061 const Size MAX_SAMPLED_DISTANCES = 1000;
00062 const DoubleReal DISTANCE_VARIANCE_THRESHOLD = 0.5;
00063
00064
00065 if (end - begin < 5)
00066 {
00067 return SpectrumSettings::UNKNOWN;
00068 }
00069
00070 DoubleReal count(0);
00071
00072 std::vector<DoubleReal> distances;
00073
00074 PeakConstIterator peak(begin);
00075
00076 for (; peak->getIntensity() <= 0 && peak != end - 2; ++peak)
00077 {
00078 }
00079
00080 DoubleReal scnd_last_mz(peak->getMZ());
00081
00082 for (++peak; peak->getIntensity() <= 0 && peak != end - 1; ++peak)
00083 {
00084 }
00085
00086 DoubleReal last_mz(peak->getMZ());
00087
00088 DoubleReal last_dist(last_mz - scnd_last_mz);
00089
00090 for (++peak; peak != end && count < MAX_SAMPLED_DISTANCES; ++peak)
00091 {
00092 if (peak->getIntensity() > 0)
00093 {
00094 DoubleReal mz(peak->getMZ());
00095 DoubleReal dist(mz - last_mz);
00096 distances.push_back(std::min(last_dist, dist));
00097 ++count;
00098 scnd_last_mz = last_mz;
00099 last_mz = mz;
00100 last_dist = dist;
00101 }
00102 }
00103
00104 if (count < 4)
00105 {
00106 return SpectrumSettings::UNKNOWN;
00107 }
00108
00109 DoubleReal mean(std::accumulate(distances.begin(), distances.end(), 0) / count);
00110
00111
00112 DoubleReal variance(0);
00113 for (std::vector<DoubleReal>::iterator value = distances.begin(); value != distances.end(); ++value)
00114 {
00115 DoubleReal delta = (*value - mean);
00116 variance += delta * delta;
00117 }
00118 variance /= count - 1;
00119
00120
00121 DoubleReal standard_deviation(std::sqrt(variance));
00122
00123 if (standard_deviation < DISTANCE_VARIANCE_THRESHOLD)
00124 {
00125 return SpectrumSettings::RAWDATA;
00126 }
00127 else
00128 {
00129 return SpectrumSettings::PEAKS;
00130 }
00131 }
00132
00133 };
00134
00135 }
00136
00137 #endif // OPENMS_FORMAT_PEAKTYPEESTIMATOR_H