OpenMS
2.6.0
|
This class is a metric for the QualityControl TOPP Tool. More...
#include <OpenMS/QC/MissedCleavages.h>
Public Member Functions | |
MissedCleavages ()=default | |
constructor More... | |
virtual | ~MissedCleavages ()=default |
destructor More... | |
void | compute (FeatureMap &fmap) |
Counts the number of MissedCleavages per PeptideIdentification. More... | |
const String & | getName () const override |
returns the name of the metric More... | |
const std::vector< std::map< UInt32, UInt32 > > & | getResults () const |
returns the result as maps of #missed_cleavages –> counts; one map for each call to compute(...) More... | |
QCBase::Status | requires () const override |
Returns the input data requirements of the compute(...) function. More... | |
Public Member Functions inherited from QCBase | |
bool | isRunnable (const Status &s) const |
Private Attributes | |
std::vector< std::map< UInt32, UInt32 > > | mc_result_ |
container that stores results More... | |
Additional Inherited Members | |
Public Types inherited from QCBase | |
enum | Requires : UInt64 { NOTHING, RAWMZML, POSTFDRFEAT, PREFDRFEAT, CONTAMINANTS, TRAFOALIGN, SIZE_OF_REQUIRES } |
Enum to encode a file type as a bit. More... | |
Static Public Member Functions inherited from QCBase | |
static bool | isLabeledExperiment (const ConsensusMap &cm) |
check if the IsobaricAnalyzer TOPP tool was used to create this ConsensusMap More... | |
template<typename MAP > | |
static bool | hasPepID (const MAP &fmap) |
does the container have a PeptideIdentification in its members or as unassignedPepID ? More... | |
Static Public Attributes inherited from QCBase | |
static const std::string | names_of_requires [] |
strings corresponding to enum Requires More... | |
This class is a metric for the QualityControl TOPP Tool.
This class counts the number of MissedCleavages per PeptideIdentification given a FeatureMap and returns an agglomeration statistic (observed counts). Additionally the PeptideHits in the FeatureMap are augmented with MetaInformation:
|
default |
constructor
|
virtualdefault |
destructor
void compute | ( | FeatureMap & | fmap | ) |
Counts the number of MissedCleavages per PeptideIdentification.
The result is a key/value map: #missed_cleavages –> counts Additionally the first PeptideHit in each PeptideIdentification of the FeatureMap is annotated with metavalue 'missed_cleavages'. The protease and digestion parameters are taken from the first ProteinIdentication (and SearchParamter therein) within the FeatureMap itself.
fmap | FeatureMap with Peptide and ProteinIdentifications |
returns the result as maps of #missed_cleavages –> counts; one map for each call to compute(...)
|
overridevirtual |
Returns the input data requirements of the compute(...) function.
Implements QCBase.