Home  · Classes  · Annotated Classes  · Modules  · Members  · Namespaces  · Related Pages
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
MRMTransitionGroup< ChromatogramType, TransitionType > Class Template Reference

The representation of a group of transitions in a targeted proteomics experiment. More...

#include <OpenMS/KERNEL/MRMTransitionGroup.h>

Public Types

typedef std::vector< MRMFeatureMRMFeatureListType
 Type definitions. More...
 
typedef std::vector< TransitionType > TransitionsType
 List of Reaction Monitoring transitions (meta data) type. More...
 
typedef ChromatogramType::PeakType PeakType
 Peak type. More...
 

Public Member Functions

MRMTransitionGroupoperator= (const MRMTransitionGroup &rhs)
 
Size size () const
 
const StringgetTransitionGroupID () const
 
void setTransitionGroupID (const String &tr_gr_id)
 
const MRMFeaturegetBestFeature () const
 Returns the best feature by overall quality. More...
 
Constructors and Destructor
 MRMTransitionGroup ()
 Default constructor. More...
 
 MRMTransitionGroup (const MRMTransitionGroup &rhs)
 Copy Constructor. More...
 
virtual ~MRMTransitionGroup ()
 Destructor. More...
 
Transition access
const std::vector< TransitionType > & getTransitions () const
 
std::vector< TransitionType > & getTransitionsMuteable ()
 
void addTransition (const TransitionType &transition, String key)
 
bool hasTransition (String key) const
 
const TransitionType & getTransition (String key)
 
(Fragment ion) chromatogram access
const std::vector< ChromatogramType > & getChromatograms () const
 
std::vector< ChromatogramType > & getChromatograms ()
 
void addChromatogram (ChromatogramType &chromatogram, String key)
 
bool hasChromatogram (String key) const
 
ChromatogramTypegetChromatogram (String key)
 
(Precursor ion) chromatogram access
const std::vector< ChromatogramType > & getPrecursorChromatograms () const
 
std::vector< ChromatogramType > & getPrecursorChromatograms ()
 
void addPrecursorChromatogram (ChromatogramType &chromatogram, String key)
 
bool hasPrecursorChromatogram (String key) const
 
ChromatogramTypegetPrecursorChromatogram (String key)
 
MRM feature access (positions in RT where a peak was found across all chromatograms)
const std::vector< MRMFeature > & getFeatures () const
 
std::vector< MRMFeature > & getFeaturesMuteable ()
 
void addFeature (MRMFeature &feature)
 
Helper functions
bool isInternallyConsistent () const
 Check whether internal state is consistent, e.g. same number of chromatograms and transitions are present (no runtime overhead in release mode) More...
 
bool chromatogramIdsMatch ()
 Ensure that chromatogram native ids match their keys in the map. More...
 
void getLibraryIntensity (std::vector< double > &result) const
 
MRMTransitionGroup subset (std::vector< std::string > tr_ids)
 
MRMTransitionGroup subsetDependent (std::vector< std::string > tr_ids)
 

Protected Member Functions

bool isMappingConsistent_ () const
 Checks that the mapping between chromatograms and transitions is consistent. More...
 

Protected Attributes

String tr_gr_id_
 transition group id (peak group id) More...
 
TransitionsType transitions_
 transition list More...
 
std::vector< ChromatogramTypechromatograms_
 chromatogram list More...
 
std::vector< ChromatogramTypeprecursor_chromatograms_
 precursor chromatogram list More...
 
MRMFeatureListType mrm_features_
 feature list More...
 
std::map< String, int > chromatogram_map_
 
std::map< String, int > precursor_chromatogram_map_
 
std::map< String, int > transition_map_
 

Detailed Description

template<typename ChromatogramType, typename TransitionType>
class OpenMS::MRMTransitionGroup< ChromatogramType, TransitionType >

The representation of a group of transitions in a targeted proteomics experiment.

The transition group carries information about the transitions (assays), the individual chromatograms as well as features found on these chromatograms.

On the one hand, the MRMTransitionGroup provides a convenient way to store the mapping between the individual transitions (containing the meta-data) and the actual chromatographic data points (measured data) relating to it. In addition, the structure allows storage of features found (regions of the chromatograms) where a potential elution peak was detected (see MRMFeature). Note that these features are usually found on the full collection of chromatograms and therefore relate to the whole collection of chromatograms.

Note that for the data structure to be consistent, it needs to have the same identifiers for the chromatograms as well as for the transitions.

Since not all the functions in OpenMS will work with MSChromatogram data structures, this needs to accept also MSSpectrum as a type for raw data storage.

Member Typedef Documentation

◆ MRMFeatureListType

typedef std::vector<MRMFeature> MRMFeatureListType

Type definitions.

List of MRM Features type

◆ PeakType

Peak type.

◆ TransitionsType

typedef std::vector<TransitionType> TransitionsType

List of Reaction Monitoring transitions (meta data) type.

Constructor & Destructor Documentation

◆ MRMTransitionGroup() [1/2]

MRMTransitionGroup ( )
inline

Default constructor.

◆ MRMTransitionGroup() [2/2]

MRMTransitionGroup ( const MRMTransitionGroup< ChromatogramType, TransitionType > &  rhs)
inline

Copy Constructor.

◆ ~MRMTransitionGroup()

virtual ~MRMTransitionGroup ( )
inlinevirtual

Destructor.

Member Function Documentation

◆ addChromatogram()

void addChromatogram ( ChromatogramType chromatogram,
String  key 
)
inline

◆ addFeature()

void addFeature ( MRMFeature feature)
inline

◆ addPrecursorChromatogram()

void addPrecursorChromatogram ( ChromatogramType chromatogram,
String  key 
)
inline

Add a precursor chromatogram (extracted from an MS1 map) to the feature

While any key can be used, it is expected that the monoisotopic trace is called "Precursor_i0" and subsequent traces "Precursor_i1" etc. This policy is not enforced but highly encouraged.

Parameters
chromatogramChromatographic traces from the MS1 map to be added
keyIdentifier for this trace, please use use consistent naming like "Precursor_i0", "Precursor_i1", "Precursor_i2" ...

Referenced by MRMTransitionGroup< SpectrumT, TransitionT >::subset().

◆ addTransition()

void addTransition ( const TransitionType &  transition,
String  key 
)
inline

◆ chromatogramIdsMatch()

bool chromatogramIdsMatch ( )
inline

Ensure that chromatogram native ids match their keys in the map.

Referenced by MRMTransitionGroupPicker::createMRMFeature(), and MRMTransitionGroupPicker::pickTransitionGroup().

◆ getBestFeature()

const MRMFeature& getBestFeature ( ) const
inline

Returns the best feature by overall quality.

For the given transition group, return the best feature as determined by the overall quality score. Requires the feature list to not be empty.

◆ getChromatogram()

ChromatogramType& getChromatogram ( String  key)
inline

◆ getChromatograms() [1/2]

const std::vector<ChromatogramType>& getChromatograms ( ) const
inline

◆ getChromatograms() [2/2]

std::vector<ChromatogramType>& getChromatograms ( )
inline

◆ getFeatures()

const std::vector<MRMFeature>& getFeatures ( ) const
inline

◆ getFeaturesMuteable()

std::vector<MRMFeature>& getFeaturesMuteable ( )
inline

◆ getLibraryIntensity()

void getLibraryIntensity ( std::vector< double > &  result) const
inline

◆ getPrecursorChromatogram()

ChromatogramType& getPrecursorChromatogram ( String  key)
inline

◆ getPrecursorChromatograms() [1/2]

const std::vector<ChromatogramType>& getPrecursorChromatograms ( ) const
inline

◆ getPrecursorChromatograms() [2/2]

std::vector<ChromatogramType>& getPrecursorChromatograms ( )
inline

◆ getTransition()

const TransitionType& getTransition ( String  key)
inline

◆ getTransitionGroupID()

const String& getTransitionGroupID ( ) const
inline

◆ getTransitions()

const std::vector<TransitionType>& getTransitions ( ) const
inline

◆ getTransitionsMuteable()

std::vector<TransitionType>& getTransitionsMuteable ( )
inline

◆ hasChromatogram()

bool hasChromatogram ( String  key) const
inline

◆ hasPrecursorChromatogram()

bool hasPrecursorChromatogram ( String  key) const
inline

◆ hasTransition()

bool hasTransition ( String  key) const
inline

◆ isInternallyConsistent()

bool isInternallyConsistent ( ) const
inline

Check whether internal state is consistent, e.g. same number of chromatograms and transitions are present (no runtime overhead in release mode)

Referenced by MRMTransitionGroupPicker::createMRMFeature(), and MRMTransitionGroupPicker::pickTransitionGroup().

◆ isMappingConsistent_()

bool isMappingConsistent_ ( ) const
inlineprotected

Checks that the mapping between chromatograms and transitions is consistent.

Referenced by MRMTransitionGroup< SpectrumT, TransitionT >::isInternallyConsistent().

◆ operator=()

MRMTransitionGroup& operator= ( const MRMTransitionGroup< ChromatogramType, TransitionType > &  rhs)
inline

◆ setTransitionGroupID()

void setTransitionGroupID ( const String tr_gr_id)
inline

◆ size()

Size size ( ) const
inline

◆ subset()

MRMTransitionGroup subset ( std::vector< std::string >  tr_ids)
inline

◆ subsetDependent()

MRMTransitionGroup subsetDependent ( std::vector< std::string >  tr_ids)
inline

Member Data Documentation

◆ chromatogram_map_

std::map<String, int> chromatogram_map_
protected

◆ chromatograms_

std::vector<ChromatogramType> chromatograms_
protected

◆ mrm_features_

MRMFeatureListType mrm_features_
protected

◆ precursor_chromatogram_map_

std::map<String, int> precursor_chromatogram_map_
protected

◆ precursor_chromatograms_

std::vector<ChromatogramType> precursor_chromatograms_
protected

◆ tr_gr_id_

String tr_gr_id_
protected

◆ transition_map_

std::map<String, int> transition_map_
protected

◆ transitions_

TransitionsType transitions_
protected

OpenMS / TOPP release 2.3.0 Documentation generated on Tue Jan 9 2018 18:22:10 using doxygen 1.8.13