/usr/include/OpenMS/ANALYSIS/MAPMATCHING/FeatureDistance.h is in libopenms-dev 1.11.1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | // --------------------------------------------------------------------------
// OpenMS -- Open-Source Mass Spectrometry
// --------------------------------------------------------------------------
// Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
// ETH Zurich, and Freie Universitaet Berlin 2002-2013.
//
// This software is released under a three-clause BSD license:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of any author or any participating institution
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
// For a full list of authors, refer to the file AUTHORS.
// --------------------------------------------------------------------------
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
// INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// --------------------------------------------------------------------------
// $Maintainer: Hendrik Weisser $
// $Authors: Clemens Groepl, Hendrik Weisser, Chris Bielow $
// --------------------------------------------------------------------------
#ifndef OPENMS_ANALYSIS_MAPMATCHING_FEATUREDISTANCE_H
#define OPENMS_ANALYSIS_MAPMATCHING_FEATUREDISTANCE_H
#include <OpenMS/DATASTRUCTURES/DefaultParamHandler.h>
#include <OpenMS/KERNEL/BaseFeature.h>
#include <limits>
namespace OpenMS
{
/**
@brief A functor class for the calculation of distances between features or consensus features.
It implements a customizable distance function of the following form:
@f[
w_{RT} \cdot \left( \frac{\left| RT_1 - RT_2 \right|}{\Delta RT_{max}} \right)^{p_{RT}} +
w_{MZ} \cdot \left( \frac{\left| MZ_1 - MZ_2 \right|}{\Delta MZ_{max}} \right)^{p_{MZ}} +
w_{int} \cdot \left( \frac{\left| int_1 - int_2 \right|}{int_{max}} \right)^{p_{int}}
@f]
This function returns a normalized distance between zero and one (unless constraints are violated, see below).
@f$ RT_i @f$, @f$ MZ_i @f$, and @f$ int_i @f$ are the RT, m/z, and intensity values of the respective feature.
@f$ {\Delta RT_{max}} @f$ and @f$ {\Delta MZ_{max}} @f$ are the maximum allowed differences in RT and m/z, respectively. They are specified by the parameters @p distance_RT:max_difference and @p distance_MZ:max_difference, and are used for normalization. If an absolute difference exceeds the specified maximum, the behavior depends on the value used for @p check_constraints in the constructor: If "false", the distance will be computed normally, but may become greater than 1; if "true", the fixed value @ref infinity is returned.
@f$ int_{max} @f$ is the maximum intensity that can occur for features compared by this distance function. It is not a parameter specified by the user, but depends on the data at hand and is thus set in the constructor (via parameter @p max_intensity).
@f$ w_X @f$ is the weight of distance component X, specified by the parameter @p distance_X:weight. The weights can be used to increase or decrease the contribution of RT, m/z, or intensity in the distance function. (Note that the default weight for the intensity component is zero, i.e. intensity is not considered by default.)
@f$ p_X @f$ is the exponent for distance component X, specified by the parameter @p distance_X:exponent. Normalized differences are taken to this power. This makes it possible to compare values using linear, quadratic, etc. distance.
By default, two features are only compared if they have the same charge state (or charge state 0 for "undefined") - otherwise, @ref infinity is returned. This behavior can be changed by the @p ignore_charge parameter.
@note Peptide identifications annotated to features are not taken into account here, because they are stored in a format that is not suitable for rapid comparison.
@htmlinclude OpenMS_FeatureDistance.parameters
@ingroup FeatureGrouping
*/
class OPENMS_DLLAPI FeatureDistance :
public DefaultParamHandler
{
public:
/// Value to return if max. difference is exceeded or if charge states don't match
static const DoubleReal infinity;
/**
@brief Constructor
@param max_intensity Maximum intensity of features (for normalization)
@param force_constraints Check "max. difference" constraints given in the parameters and return @ref infinity if violated?
*/
FeatureDistance(DoubleReal max_intensity = 1.0,
bool force_constraints = false);
/// Destructor
virtual ~FeatureDistance();
/// Assignment operator
FeatureDistance & operator=(const FeatureDistance & other);
/**
@brief Evaluation operator - checks constraints and computes the distance between two features
@returns In the first element, whether constraints were satisfied; in the second element, the distance (@ref infinity if constraints were violated and @ref force_constraints_ is true).
*/
std::pair<bool, DoubleReal> operator()(const BaseFeature & left,
const BaseFeature & right);
protected:
/// Structure for storing distance parameters
struct DistanceParams_
{
DistanceParams_() {}
DistanceParams_(const String & what, const Param & global)
{
Param param = global.copy("distance_" + what + ":", true);
if (what == "MZ") max_diff_ppm = param.getValue("unit") == "ppm";
else max_diff_ppm = false;
max_difference = param.getValue("max_difference");
exponent = param.getValue("exponent");
weight = param.getValue("weight");
norm_factor = 1 / max_difference;
relevant = (weight != 0.0) && (exponent != 0.0);
if (!relevant) weight = 0.0;
}
DoubleReal max_difference, exponent, weight, norm_factor;
bool max_diff_ppm, relevant;
};
/// Docu in base class
void updateMembers_();
/// Computes a distance component given absolute difference and parameters
inline DoubleReal distance_(DoubleReal diff, const DistanceParams_ & params) const;
/// Storage of parameters for the individual distance components
DistanceParams_ params_rt_, params_mz_, params_intensity_;
/// Reciprocal value of the total weight in the distance function
DoubleReal total_weight_reciprocal_;
/// Maximum intensity of features (for normalization)
DoubleReal max_intensity_;
/// Compute a distance even if charge states don't match?
bool ignore_charge_;
/// Always return @ref infinity if "max. difference" constraints are not met?
bool force_constraints_;
};
} // namespace OpenMS
#endif // OPENMS_ANALYSIS_MAPMATCHING_FEATUREDISTANCE_H
|