35 #ifndef OPENMS_FILTERING_DATAREDUCTION_FEATUREFINDINGMETABO_H 36 #define OPENMS_FILTERING_DATAREDUCTION_FEATUREFINDINGMETABO_H 78 std::vector<String> getLabels()
const;
80 double getScore()
const;
82 void setScore(
const double& score);
88 std::vector<double> getAllIntensities(
bool smoothed =
false)
const;
90 std::vector<double> getIsotopeDistances()
const;
92 double getCentroidMZ()
const;
94 double getCentroidRT()
const;
96 double getFWHM()
const;
100 double getMonoisotopicFeatureIntensity(
bool)
const;
101 double getSummedFeatureIntensity(
bool)
const;
103 Size getNumFeatPoints()
const;
104 std::vector<ConvexHull2D> getConvexHulls()
const;
105 std::vector< OpenMS::MSChromatogram > getChromatograms(
UInt64 feature_id)
const;
176 void run(std::vector<MassTrace>& input_mtraces,
FeatureMap& output_featmap, std::vector<std::vector< OpenMS::MSChromatogram > >& output_chromatograms);
179 virtual void updateMembers_();
190 double computeCosineSim_(
const std::vector<double>&,
const std::vector<double>&)
const;
194 double computeOLSCoeff_(
const std::vector<double>&,
const std::vector<double>&)
const;
210 void loadIsotopeModel_(
const String&);
254 double computeAveragineSimScore_(
const std::vector<double>& intensities,
const double& molecular_weight)
const;
264 void findLocalFeatures_(
const std::vector<const MassTrace*>& candidates,
const double total_intensity, std::vector<FeatureHypothesis>& output_hypotheses)
const;
292 #endif // OPENMS_FILTERING_DATAREDUCTION_FEATUREFINDINGMETABO_H A more convenient string class.
Definition: String.h:57
Definition: FeatureFindingMetabo.h:128
A container for features.
Definition: FeatureMap.h:94
bool operator()(const MassTrace &x, const MassTrace &y) const
Definition: FeatureFindingMetabo.h:121
ptrdiff_t SignedSize
Signed Size type e.g. used as pointer difference.
Definition: Types.h:135
std::vector< const MassTrace * > iso_pattern_
Definition: FeatureFindingMetabo.h:110
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
Internal structure used in FeatureFindingMetabo that keeps track of a feature hypothesis (isotope gro...
Definition: FeatureFindingMetabo.h:58
double getCentroidMZ() const
Returns the centroid m/z.
Definition: MassTrace.h:179
Definition: FeatureFindingMetabo.h:117
OPENMS_UINT64_TYPE UInt64
Unsigned integer type (64bit)
Definition: Types.h:78
SignedSize charge_
Definition: FeatureFindingMetabo.h:114
double feat_score_
Definition: FeatureFindingMetabo.h:112
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:128
Base class for all classes that want to report their progress.
Definition: ProgressLogger.h:55
A base class for all classes handling default parameters.
Definition: DefaultParamHandler.h:92
bool operator()(const FeatureHypothesis &x, const FeatureHypothesis &y) const
Definition: FeatureFindingMetabo.h:132
A container type that gathers peaks similar in m/z and moving along retention time.
Definition: MassTrace.h:62