OpenMS
Loading...
Searching...
No Matches
DigestionEnzymeRNA.h
Go to the documentation of this file.
1// Copyright (c) 2002-present, OpenMS Inc. -- EKU Tuebingen, ETH Zurich, and FU Berlin
2// SPDX-License-Identifier: BSD-3-Clause
3//
4// --------------------------------------------------------------------------
5// $Maintainer: Hendrik Weisser $
6// $Authors: Hendrik Weisser $
7// --------------------------------------------------------------------------
8//
9
10#pragma once
11
13
14namespace OpenMS
15{
31 class OPENMS_DLLAPI DigestionEnzymeRNA: public DigestionEnzyme
32 {
33 public:
35 void setCutsAfterRegEx(const std::string& value);
36
38 std::string getCutsAfterRegEx() const;
39
41 void setCutsBeforeRegEx(const std::string& value);
42
44 std::string getCutsBeforeRegEx() const;
45
47 void setThreePrimeGain(const std::string& value);
48
50 std::string getThreePrimeGain() const;
51
53 void setFivePrimeGain(const std::string& value);
54
56 std::string getFivePrimeGain() const;
57
63 bool setValueFromFile(const std::string& key, const std::string& value) override;
64
65 protected:
66 std::string three_prime_gain_;
67 std::string five_prime_gain_;
68 std::string cuts_after_regex_;
69 std::string cuts_before_regex_;
70 };
71
73}
74
Representation of a digestion enzyme for RNA (RNase)
Definition DigestionEnzymeRNA.h:32
std::string getFivePrimeGain() const
returns the 5' gain (as a nucleotide modification code)
std::string getCutsAfterRegEx() const
returns the "cuts after ..." regular expression
std::string getThreePrimeGain() const
returns the 3' gain (as a nucleotide modification code)
std::string three_prime_gain_
Definition DigestionEnzymeRNA.h:66
void setThreePrimeGain(const std::string &value)
sets the 3' gain (as a nucleotide modification code)
void setFivePrimeGain(const std::string &value)
sets the 5' gain (as a nucleotide modification code)
void setCutsBeforeRegEx(const std::string &value)
sets the "cuts before ..." regular expression
std::string getCutsBeforeRegEx() const
returns the "cuts before ..." regular expression
std::string cuts_before_regex_
Definition DigestionEnzymeRNA.h:69
bool setValueFromFile(const std::string &key, const std::string &value) override
Set the value of a member variable based on an entry from an input file.
std::string five_prime_gain_
Definition DigestionEnzymeRNA.h:67
void setCutsAfterRegEx(const std::string &value)
sets the "cuts after ..." regular expression
std::string cuts_after_regex_
Definition DigestionEnzymeRNA.h:68
Base class for digestion enzymes.
Definition DigestionEnzyme.h:29
Main OpenMS namespace.
Definition openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
DigestionEnzymeRNA RNase
Definition DigestionEnzymeRNA.h:72