/usr/include/OpenMS/CHEMISTRY/EnzymaticDigestion.h is in libopenms-dev 1.11.1-3.
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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 | // --------------------------------------------------------------------------
// 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: Chris Bielow $
// $Authors: Marc Sturm, Chris Bielow $
// --------------------------------------------------------------------------
#ifndef OPENMS_CHEMISTRY_ENZYMATICDIGESTION_H
#define OPENMS_CHEMISTRY_ENZYMATICDIGESTION_H
#include <OpenMS/CONCEPT/Types.h>
#include <OpenMS/CHEMISTRY/AASequence.h>
#include <string>
#include <vector>
namespace OpenMS
{
/**
@brief Class for the enzymatic digestion of proteins
Digestion can be performed using simple regular expressions,
e.g. [KR] | [^P]
for trypsin. Also missed cleavages can be modelled, i.e. adjacent peptides are not cleaved
due to enzyme malfunction/access restrictions. If @em n missed cleavages are given, all possible resulting
peptides (cleaved and uncleaved) with up to @em n missed cleavages are returned.
Thus @b no random selection of just @em n specific missed cleavage sites is performed.
An alternative model is also available, where the protein is cleaved only at positions where a cleavage model
trained on real data, exceeds a certain threshold. The model is published in
Siepen et al. (2007), "Prediction of missed cleavage sites in tryptic peptides aids protein identification in proteomics.", doi: 10.1021/pr060507u
The model is only available for trypsin and ignores the missed cleavage setting. You should however use setLogThreshold()
to adjust FP vs FN rates. A higher threshold increases the number of cleavages predicted.
@ingroup Chemistry
*/
class OPENMS_DLLAPI EnzymaticDigestion
{
public:
/// Possible enzymes for the digestion (adapt NamesOfEnzymes & nextCleavageSite_() if you add more enzymes here)
enum Enzyme
{
ENZYME_TRYPSIN,
SIZE_OF_ENZYMES
};
/// Names of the Enzymes
static const std::string NamesOfEnzymes[SIZE_OF_ENZYMES];
/// when querying for valid digestion products, this determines if the specificity of the two peptide ends is considered important
enum Specificity
{
SPEC_FULL, //< fully enzyme specific, e.g., tryptic (ends with KR, AA-before is KR), or peptide is at protein terminal ends
SPEC_SEMI, //< semi specific, i.e., one of the two cleavage sites must fulfill requirements
SPEC_NONE, //< no requirements on start / end
SIZE_OF_SPECIFICITY
};
/// Names of the Specificity
static const std::string NamesOfSpecificity[SIZE_OF_SPECIFICITY];
/// Default constructor
EnzymaticDigestion();
/// Copy constructor
EnzymaticDigestion(const EnzymaticDigestion& rhs);
/// Assignment operator
EnzymaticDigestion& operator=(const EnzymaticDigestion& rhs);
/// Returns the number of missed cleavages for the digestion
SignedSize getMissedCleavages() const;
/// Sets the number of missed cleavages for the digestion (default is 0). This setting is ignored when log model is used.
void setMissedCleavages(SignedSize missed_cleavages);
/// Returns the enzyme for the digestion
Enzyme getEnzyme() const;
/// Sets the enzyme for the digestion (default is ENZYME_TRYPSIN).
void setEnzyme(Enzyme enzyme);
/// convert enzyme string name to enum
/// returns SIZE_OF_ENZYMES if @p name is not valid
static Enzyme getEnzymeByName(const String & name);
/// Returns the specificity for the digestion
Specificity getSpecificity() const;
/// Sets the specificity for the digestion (default is SPEC_FULL).
void setSpecificity(Specificity spec);
/// convert spec string name to enum
/// returns SIZE_OF_SPECIFICITY if @p name is not valid
static Specificity getSpecificityByName(const String & name);
/// Performs the enzymatic digestion of a protein.
void digest(const AASequence & protein, std::vector<AASequence> & output) const;
/// Returns the number of peptides a digestion of @p protein would yield under the current enzyme and missed cleavage settings.
Size peptideCount(const AASequence & protein);
/// use trained model when digesting?
bool isLogModelEnabled() const;
/// enables/disabled the trained model
void setLogModelEnabled(bool enabled);
/// Returns the threshold which needs to be exceeded to call a cleavage (only for the trained cleavage model on real data)
DoubleReal getLogThreshold() const;
/// Sets the threshold which needs to be exceeded to call a cleavage (only for the trained cleavage model on real data)
/// Default is 0.25
void setLogThreshold(DoubleReal threshold);
/// Returns true if peptide at position @p pep_pos with length @p pep_length within protein @p protein was generated by the current model
bool isValidProduct(const AASequence& protein, Size pep_pos, Size pep_length);
protected:
// define a binding site by position and AA
struct BindingSite
{
Size position;
String AAname;
BindingSite() :
position(), AAname() {}
BindingSite(const Size & p, const String & name) :
position(p), AAname(name) {}
bool operator<(const BindingSite & rhs) const
{
return (position < rhs.position) || ((position == rhs.position) && (AAname < rhs.AAname));
}
bool operator==(const BindingSite & rhs) const
{
return position == rhs.position && AAname == rhs.AAname;
}
};
// define the log likelihood for missed and cleavage model
struct CleavageModel
{
DoubleReal p_cleave;
DoubleReal p_miss;
CleavageModel() :
p_cleave(0), p_miss(0) {}
CleavageModel(const DoubleReal & p_c, const DoubleReal & p_m) :
p_cleave(p_c), p_miss(p_m) {}
};
/// moves the iterator @p p behind (i.e., C-term) the next cleavage site of the @p sequence
void nextCleavageSite_(const AASequence & sequence, AASequence::ConstIterator & p) const;
/// tests if position pointed to by @p p (N-term side) is a valid cleavage site
bool isCleavageSite_(const AASequence & sequence, const AASequence::ConstIterator & p) const;
/// Number of missed cleavages
SignedSize missed_cleavages_;
/// Used enzyme
Enzyme enzyme_;
/// specificity of enzyme
Specificity specificity_;
/// use the log model or naive digestion (with missed cleavages)
bool use_log_model_;
/// Threshold to decide if position is cleaved or missed (only for the model)
DoubleReal log_model_threshold_;
/// Holds the cleavage model
Map<BindingSite, CleavageModel> model_data_;
};
} // namespace OpenMS
#endif // OPENMS_CHEMISTRY_ENZYMATICDIGESTION_H
|