35 std::unique_ptr<LayerData1DBase>
to1DLayer()
const override
56 consensus_map_->updateRanges();
62 r.
assign(*getConsensusMap());
66 std::unique_ptr<LayerStatistics>
getStats()
const override;
68 bool annotate(
const std::vector<PeptideIdentification>& identifications,
const std::vector<ProteinIdentification>& protein_identifications)
override;
73 return consensus_map_;
79 return consensus_map_;
A container for consensus elements.
Definition: ConsensusMap.h:66
DataFilter array providing some convenience functions.
Definition: DataFilters.h:27
Not implemented exception.
Definition: Exception.h:399
Class that stores the data for one layer.
Definition: LayerDataBase.h:169
Class that stores the data for one layer of type ConsensusMap.
Definition: LayerDataConsensus.h:24
LayerDataConsensus(const LayerDataConsensus &ld)=delete
no Copy-ctor (should not be needed)
std::unique_ptr< LayerStatistics > getStats() const override
Compute layer statistics (via visitor)
ProjectionData getProjection(const DIM_UNIT, const DIM_UNIT, const RangeAllType &) const override
Definition: LayerDataConsensus.h:44
std::unique_ptr< LayerStoreData > storeFullData() const override
Returns a visitor which contains the the full data of the layer and can write the data to disk in the...
PeakIndex findHighestDataPoint(const RangeAllType &area) const override
Find the datapoint with the highest intensity within the given range and return a proxy to that datap...
bool annotate(const std::vector< PeptideIdentification > &identifications, const std::vector< ProteinIdentification > &protein_identifications) override
std::unique_ptr< LayerData1DBase > to1DLayer() const override
Create a shallow copy (i.e. shared experimental data using shared_ptr) of the current layer,...
Definition: LayerDataConsensus.h:35
const ConsensusMapSharedPtrType & getConsensusMap() const
Returns a const reference to the consensus feature data.
Definition: LayerDataConsensus.h:71
PointXYType peakIndexToXY(const PeakIndex &peak, const DimMapper< 2 > &mapper) const override
Convert a PeakIndex to a XY coordinate (via mapper).
LayerDataConsensus & operator=(const LayerDataConsensus &ld)=delete
no assignment operator (should not be needed)
RangeAllType getRange() const override
Definition: LayerDataConsensus.h:59
std::unique_ptr< LayerStoreData > storeVisibleData(const RangeAllType &visible_range, const DataFilters &layer_filters) const override
Returns a visitor which contains the current visible data and can write the data to disk.
ConsensusMapSharedPtrType & getConsensusMap()
Returns current consensus map (mutable)
Definition: LayerDataConsensus.h:77
std::unique_ptr< Painter2DBase > getPainter2D() const override
Obtain a painter which can draw the layer on a 2D canvas.
void updateRanges() override
Update ranges of the underlying data.
Definition: LayerDataConsensus.h:54
LayerDataConsensus(ConsensusMapSharedPtrType &map)
Default constructor.
auto & assign(const RangeManager< RangeBasesOther... > &rhs)
Definition: RangeManager.h:593
Main OpenMS namespace.
Definition: openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
DIM_UNIT
Definition: CommonEnums.h:20
Result of computing a projection on X and Y axis in a 2D Canvas; see LayerDataBase::getProjection()
Definition: LayerDataBase.h:51
boost::shared_ptr< ConsensusMap > ConsensusMapSharedPtrType
SharedPtr on consensus features.
Definition: LayerDataBase.h:120
Index of a peak or feature.
Definition: PeakIndex.h:25