47 class Annotation1DItem;
68 std::unique_ptr<Painter2DBase> getPainter2D()
const override;
70 std::unique_ptr<LayerData1DBase> to1DLayer()
const override;
72 std::unique_ptr<LayerStoreData> storeVisibleData(
const RangeAllType& visible_range,
const DataFilters& layer_filters)
const override;
74 std::unique_ptr<LayerStoreData> storeFullData()
const override;
82 peak_map_->updateRanges();
97 std::unique_ptr<LayerStatistics> getStats()
const override;
99 bool annotate(
const std::vector<PeptideIdentification>& identifications,
const std::vector<ProteinIdentification>& protein_identifications)
override;
103 if ((*peak_map_)[spectrum_idx].size() > 0)
105 return (*peak_map_)[spectrum_idx];
107 if (!on_disc_peaks_->empty())
110 local_spec = on_disc_peaks_->getSpectrum(spectrum_idx);
113 return (*peak_map_)[spectrum_idx];
125 const ConstExperimentSharedPtrType getPeakData()
const;
158 return on_disc_peaks_;
166 return this->getPeakData()->size() > 0 && this->getPeakData()->metaValueExists(
"is_ion_mobility") && this->getPeakData()->getMetaValue(
"is_ion_mobility").toBool();
171 peak_map_->setMetaValue(
"is_ion_mobility",
"true");
177 return this->getPeakData()->size() > 0 && this->getPeakData()->metaValueExists(
"is_dia_data") && this->getPeakData()->getMetaValue(
"is_dia_data").toBool();
183 peak_map_->setMetaValue(
"is_dia_data",
"true");
196 return this->getPeakData()->size() > 0 && this->getPeakData()->metaValueExists(
"is_chromatogram") && this->getPeakData()->getMetaValue(
"is_chromatogram").toBool();
202 peak_map_->setMetaValue(
"is_chromatogram",
"true");
208 if (this->chromatogram_flag_set())
210 peak_map_->removeMetaValue(
"is_chromatogram");
217 ExperimentSharedPtrType peak_map_ = ExperimentSharedPtrType(
new ExperimentType());
bool isDIAData() const
Check whether the current layer contains DIA (SWATH-MS) data.
Definition: LayerDataPeak.h:175
A more convenient string class.
Definition: String.h:58
RangeAllType getRange() const override
Definition: LayerDataPeak.h:86
Class that stores the data for one layer of type PeakMap.
Definition: LayerDataPeak.h:54
OpenMS::Peak1D PeakType
Peak type.
Definition: MSSpectrum.h:112
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
DIM_UNIT
Definition: CommonEnums.h:45
void remove_chromatogram_flag()
remove the chromatogram flag
Definition: LayerDataPeak.h:206
Result of computing a projection on X and Y axis in a 2D Canvas; see LayerDataBase::getProjection() ...
Definition: LayerDataBase.h:76
Representation of a mass spectrometry experiment on disk.
Definition: OnDiscMSExperiment.h:66
The representation of a 1D spectrum.
Definition: MSSpectrum.h:66
auto & assign(const RangeManager< RangeBasesOther... > &rhs)
Definition: RangeManager.h:612
void setPeakData(ExperimentSharedPtrType p)
Set the current in-memory peak data.
Definition: LayerDataPeak.h:144
const ExperimentType::SpectrumType & getSpectrum(Size spectrum_idx) const
Definition: LayerDataPeak.h:101
void set_chromatogram_flag()
set the chromatogram flag
Definition: LayerDataPeak.h:200
bool isIonMobilityData() const
Check whether the current layer should be represented as ion mobility.
Definition: LayerDataPeak.h:164
A 1-dimensional raw data point or peak.
Definition: Peak1D.h:53
void setOnDiscPeakData(ODExperimentSharedPtrType p)
Set the current on-disc data.
Definition: LayerDataPeak.h:150
bool chromatogram_flag_set() const
Check whether the current layer is a chromatogram.
Definition: LayerDataPeak.h:194
const ExperimentSharedPtrType & getPeakDataMuteable()
Returns a mutable reference to the current in-memory peak data.
Definition: LayerDataPeak.h:136
void labelAsDIAData()
Label the current layer as DIA (SWATH-MS) data.
Definition: LayerDataPeak.h:181
In-Memory representation of a mass spectrometry run.
Definition: MSExperiment.h:70
const ODExperimentSharedPtrType & getOnDiscPeakData() const
Returns a mutable reference to the on-disc data.
Definition: LayerDataPeak.h:156
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
void updateRanges() override
Update ranges of the underlying data.
Definition: LayerDataPeak.h:80
DataFilter array providing some convenience functions.
Definition: DataFilters.h:52
Class that stores the data for one layer.
Definition: LayerDataBase.h:194
void labelAsIonMobilityData() const
Definition: LayerDataPeak.h:169
Index of a peak or feature.
Definition: PeakIndex.h:50
MSSpectrum SpectrumType
Definition: MzDataHandler.h:60