82 defaults_.setValue(
"rt_tolerance", 10.0,
"Maximal RT distance (in [s]) for two spectra's precursors.");
83 defaults_.setValue(
"mz_tolerance", 1.0,
"Maximal m/z distance (in Da) for two spectra's precursors.");
89 rt_max_ = (
double) param_.getValue(
"rt_tolerance");
90 mz_max_ = (
double) param_.getValue(
"mz_tolerance");
96 return 1 - ((d_rt / rt_max_ + d_mz / mz_max_) / 2);
103 double d_rt = fabs(first.
getRT() - second.
getRT());
104 double d_mz = fabs(first.
getMZ() - second.
getMZ());
106 if (d_rt > rt_max_ || d_mz > mz_max_)
112 double sim = getSimilarity(d_rt, d_mz);
129 typedef std::map<Size, std::vector<std::pair<Size, double> > >
AverageBlocks;
158 template <
typename MapType>
161 IntList ms_levels = param_.getValue(
"block_method:ms_levels");
162 Int rt_block_size(param_.getValue(
"block_method:rt_block_size"));
163 double rt_max_length = (param_.getValue(
"block_method:rt_max_length"));
165 if (rt_max_length == 0)
167 rt_max_length = (std::numeric_limits<double>::max)();
170 for (IntList::iterator it_mslevel = ms_levels.begin(); it_mslevel < ms_levels.end(); ++it_mslevel)
174 SignedSize block_size_count(rt_block_size + 1);
175 Size idx_spectrum(0);
178 if (
Int(it1->getMSLevel()) == *it_mslevel)
181 if (++block_size_count >= rt_block_size ||
182 exp[idx_spectrum].getRT() - exp[idx_block].getRT() > rt_max_length)
184 block_size_count = 0;
185 idx_block = idx_spectrum;
189 spectra_to_merge[idx_block].push_back(idx_spectrum);
196 if (block_size_count == 0)
198 spectra_to_merge[idx_block] = std::vector<Size>();
202 mergeSpectra_(exp, spectra_to_merge, *it_mslevel);
209 template <
typename MapType>
215 std::vector<BinaryTreeNode> tree;
216 std::map<Size, Size> index_mapping;
219 std::vector<BaseFeature> data;
221 for (
Size i = 0; i < exp.
size(); ++i)
223 if (exp[i].getMSLevel() != 2)
229 index_mapping[data.size()] = i;
233 bf.
setRT(exp[i].getRT());
234 const auto& pcs = exp[i].getPrecursors();
242 OPENMS_LOG_WARN <<
"More than one precursor found. Using first one!" << std::endl;
244 bf.
setMZ(pcs[0].getMZ());
247 data_size = data.size();
262 std::vector<std::vector<Size> > clusters;
265 for (
Size ii = 0; ii < tree.size(); ++ii)
267 if (tree[ii].distance >= 1)
269 tree[ii].distance = -1;
271 if (tree[ii].distance != -1)
276 ca.
cut(data_size - node_count, tree, clusters);
284 for (
Size i_outer = 0; i_outer < clusters.size(); ++i_outer)
286 if (clusters[i_outer].size() <= 1)
291 Size cl_index0 = clusters[i_outer][0];
292 spectra_to_merge[index_mapping[cl_index0]] = std::vector<Size>();
294 for (
Size i_inner = 1; i_inner < clusters[i_outer].size(); ++i_inner)
296 spectra_to_merge[index_mapping[cl_index0]].push_back(index_mapping[clusters[i_outer][i_inner]]);
301 mergeSpectra_(exp, spectra_to_merge, 2);
312 template <
typename MapType>
316 int ms_level = param_.getValue(
"average_gaussian:ms_level");
317 if (average_type ==
"tophat")
319 ms_level = param_.getValue(
"average_tophat:ms_level");
323 std::string spectrum_type = param_.getValue(
"average_gaussian:spectrum_type");
324 if (average_type ==
"tophat")
326 spectrum_type = std::string(param_.getValue(
"average_tophat:spectrum_type"));
330 double fwhm(param_.getValue(
"average_gaussian:rt_FWHM"));
331 double factor = -4 * log(2.0) / (fwhm * fwhm);
332 double cutoff(param_.getValue(
"average_gaussian:cutoff"));
335 bool unit(param_.getValue(
"average_tophat:rt_unit") ==
"scans");
336 double range(param_.getValue(
"average_tophat:rt_range"));
337 double range_seconds = range / 2;
338 int range_scans =
static_cast<int>(range);
339 if ((range_scans % 2) == 0)
343 range_scans = (range_scans - 1) / 2;
351 if (
Int(it_rt->getMSLevel()) == ms_level)
362 terminate_now =
false;
363 while (it_rt_2 != exp.
end() && !terminate_now)
365 if (
Int(it_rt_2->getMSLevel()) == ms_level)
368 if (average_type ==
"gaussian")
371 double base = it_rt_2->getRT() - it_rt->getRT();
372 weight = std::exp(factor * base * base);
374 std::pair<Size, double> p(m, weight);
375 spectra_to_average_over[n].push_back(p);
378 if (average_type ==
"gaussian")
381 double base = it_rt_2->getRT() - it_rt->getRT();
382 terminate_now = std::exp(factor * base * base) < cutoff;
387 terminate_now = (steps > range_scans);
392 terminate_now = (std::abs(it_rt_2->getRT() - it_rt->getRT()) > range_seconds);
402 terminate_now =
false;
403 while (it_rt_2 != exp.
begin() && !terminate_now)
405 if (
Int(it_rt_2->getMSLevel()) == ms_level)
408 if (average_type ==
"gaussian")
410 double base = it_rt_2->getRT() - it_rt->getRT();
411 weight = std::exp(factor * base * base);
413 std::pair<Size, double> p (m, weight);
414 spectra_to_average_over[n].push_back(p);
417 if (average_type ==
"gaussian")
420 double base = it_rt_2->getRT() - it_rt->getRT();
421 terminate_now = std::exp(factor * base * base) < cutoff;
426 terminate_now = (steps > range_scans);
431 terminate_now = (std::abs(it_rt_2->getRT() - it_rt->getRT()) > range_seconds);
442 for (AverageBlocks::iterator it = spectra_to_average_over.begin(); it != spectra_to_average_over.end(); ++it)
445 for (
const auto& weight: it->second)
447 sum += weight.second;
450 for (
auto& weight: it->second)
452 weight.second /=
sum;
458 if (spectrum_type ==
"automatic")
460 Size idx = spectra_to_average_over.begin()->first;
461 type = exp[idx].getType(
true);
463 else if (spectrum_type ==
"profile")
467 else if (spectrum_type ==
"centroid")
473 throw Exception::InvalidParameter(__FILE__,__LINE__,OPENMS_PRETTY_FUNCTION,
"Spectrum type has to be one of automatic, profile or centroid.");
479 averageCentroidSpectra_(exp, spectra_to_average_over, ms_level);
483 averageProfileSpectra_(exp, spectra_to_average_over, ms_level);
503 template <
typename MapType>
506 double mz_binning_width(param_.getValue(
"mz_binning_width"));
507 std::string mz_binning_unit(param_.getValue(
"mz_binning_width_unit"));
512 std::map<Size, Size> cluster_sizes;
513 std::set<Size> merged_indices;
518 p.
setValue(
"tolerance", mz_binning_width);
519 if (!(mz_binning_unit ==
"Da" || mz_binning_unit ==
"ppm"))
524 p.
setValue(
"is_relative_tolerance", mz_binning_unit ==
"Da" ?
"false" :
"true");
526 std::vector<std::pair<Size, Size> > alignment;
528 Size count_peaks_aligned(0);
529 Size count_peaks_overall(0);
532 for (
auto it = spectra_to_merge.begin(); it != spectra_to_merge.end(); ++it)
534 ++cluster_sizes[it->second.size() + 1];
540 merged_indices.insert(it->first);
543 double rt_average = consensus_spec.
getRT();
544 double precursor_mz_average = 0.0;
545 Size precursor_count(0);
548 precursor_mz_average = consensus_spec.
getPrecursors()[0].getMZ();
552 count_peaks_overall += consensus_spec.size();
557 for (
auto sit = it->second.begin(); sit != it->second.end(); ++sit)
559 consensus_spec.
unify(exp[*sit]);
560 merged_indices.insert(*sit);
562 rt_average += exp[*sit].getRT();
563 if (ms_level >= 2 && exp[*sit].getPrecursors().size() > 0)
565 precursor_mz_average += exp[*sit].getPrecursors()[0].getMZ();
570 consensus_native_id +=
",";
571 consensus_native_id += exp[*sit].getNativeID();
576 count_peaks_aligned += alignment.size();
577 count_peaks_overall += exp[*sit].
size();
580 Size spec_b_index(0);
583 Size spec_a = consensus_spec.size(), spec_b = exp[*sit].
size(), align_size = alignment.size();
584 for (
auto pit = exp[*sit].begin(); pit != exp[*sit].
end(); ++pit)
586 if (alignment.empty() || alignment[align_index].second != spec_b_index)
589 consensus_spec.push_back(*pit);
595 Size copy_of_align_index(align_index);
597 while (!alignment.empty() &&
598 copy_of_align_index < alignment.size() &&
599 alignment[copy_of_align_index].second == spec_b_index)
601 ++copy_of_align_index;
605 while (!alignment.empty() &&
606 align_index < alignment.size() &&
607 alignment[align_index].second == spec_b_index)
609 consensus_spec[alignment[align_index].first].setIntensity(consensus_spec[alignment[align_index].first].getIntensity() +
610 (pit->getIntensity() / (
double)counter));
612 if (align_index == alignment.size())
617 align_size = align_size + 1 - counter;
622 if (spec_a + spec_b - align_size != consensus_spec.size())
624 OPENMS_LOG_WARN <<
"wrong number of features after merge. Expected: " << spec_a + spec_b - align_size <<
" got: " << consensus_spec.size() <<
"\n";
627 rt_average /= it->second.size() + 1;
628 consensus_spec.
setRT(rt_average);
637 precursor_mz_average /= precursor_count;
642 pcs[0].setMZ(precursor_mz_average);
645 if (consensus_spec.empty())
651 merged_spectra.addSpectrum(std::move(consensus_spec));
656 for (
const auto& cl_size : cluster_sizes)
658 OPENMS_LOG_INFO <<
" size " << cl_size.first <<
": " << cl_size.second <<
"x\n";
662 sprintf(buffer,
"%d/%d (%.2f %%) of blocked spectra", (
int)count_peaks_aligned,
663 (
int)count_peaks_overall,
float(count_peaks_aligned) /
float(count_peaks_overall) * 100.);
669 for (
Size i = 0; i < exp.
size(); ++i)
671 if (merged_indices.count(i) == 0)
683 std::make_move_iterator(exp_tmp.
end()));
688 exp.
getSpectra().insert(exp.
end(), std::make_move_iterator(merged_spectra.begin()),
689 std::make_move_iterator(merged_spectra.end()));
713 template <
typename MapType>
718 double mz_binning_width(param_.getValue(
"mz_binning_width"));
719 std::string mz_binning_unit(param_.getValue(
"mz_binning_width_unit"));
721 unsigned progress = 0;
722 std::stringstream progress_message;
723 progress_message <<
"averaging profile spectra of MS level " << ms_level;
724 startProgress(0, spectra_to_average_over.size(), progress_message.str());
727 for (AverageBlocks::const_iterator it = spectra_to_average_over.begin(); it != spectra_to_average_over.end(); ++it)
729 setProgress(++progress);
732 std::vector<double> mz_positions_all;
733 for (
const auto& spec : it->second)
738 mz_positions_all.push_back(it_mz->getMZ());
742 sort(mz_positions_all.begin(), mz_positions_all.end());
744 std::vector<double> mz_positions;
745 std::vector<double> intensities;
746 double last_mz = std::numeric_limits<double>::min();
747 double delta_mz(mz_binning_width);
748 for (
const auto mz_pos : mz_positions_all)
750 if (mz_binning_unit ==
"ppm")
752 delta_mz = mz_binning_width * mz_pos / 1000000;
755 if ((mz_pos - last_mz) > delta_mz)
757 mz_positions.push_back(mz_pos);
758 intensities.push_back(0.0);
764 for (
const auto& spec : it->second)
770 for (
Size i = spline.
getPosMin(); i < mz_positions.size(); ++i)
774 intensities[i] += nav.
eval(mz_positions[i]) * (spec.second);
781 average_spec.
clear(
false);
785 for (
Size i = 0; i < mz_positions.size(); ++i)
788 peak.
setMZ(mz_positions[i]);
790 average_spec.push_back(peak);
802 for (AverageBlocks::const_iterator it = spectra_to_average_over.begin(); it != spectra_to_average_over.end(); ++it)
804 exp[it->first] = exp_tmp[n];
825 template <
typename MapType>
830 double mz_binning_width(param_.getValue(
"mz_binning_width"));
831 std::string mz_binning_unit(param_.getValue(
"mz_binning_width_unit"));
833 unsigned progress = 0;
835 std::stringstream progress_message;
836 progress_message <<
"averaging centroid spectra of MS level " << ms_level;
837 logger.
startProgress(0, spectra_to_average_over.size(), progress_message.str());
840 for (AverageBlocks::const_iterator it = spectra_to_average_over.begin(); it != spectra_to_average_over.end(); ++it)
846 std::vector<std::pair<double, double> > mz_intensity_all;
847 for (
const auto& weightedMZ: it->second)
852 std::pair<double, double> mz_intensity(it_mz->getMZ(), (it_mz->getIntensity() * weightedMZ.second));
853 mz_intensity_all.push_back(mz_intensity);
857 sort(mz_intensity_all.begin(), mz_intensity_all.end());
860 std::vector<double> mz_new;
861 std::vector<double> intensity_new;
862 double last_mz = std::numeric_limits<double>::min();
863 double delta_mz = mz_binning_width;
865 double sum_intensity(0);
867 for (
const auto& mz_pos : mz_intensity_all)
869 if (mz_binning_unit ==
"ppm")
871 delta_mz = mz_binning_width * (mz_pos.first) / 1000000;
874 if (((mz_pos.first - last_mz) > delta_mz) && (count > 0))
876 mz_new.push_back(sum_mz / count);
877 intensity_new.push_back(sum_intensity);
882 last_mz = mz_pos.first;
886 sum_mz += mz_pos.first;
887 sum_intensity += mz_pos.second;
892 mz_new.push_back(sum_mz / count);
893 intensity_new.push_back(sum_intensity);
898 average_spec.
clear(
false);
902 for (
Size i = 0; i < mz_new.size(); ++i)
905 peak.
setMZ(mz_new[i]);
907 average_spec.push_back(peak);
918 for (
const auto& spectral_index : spectra_to_average_over)
920 exp[spectral_index.first] = std::move(exp_tmp[n]);
A more convenient string class.
Definition: String.h:58
static double sum(IteratorType begin, IteratorType end)
Calculates the sum of a range of values.
Definition: StatisticFunctions.h:107
void setMZ(CoordinateType coordinate)
Mutable access to the m/z coordinate (index 1)
Definition: Peak2D.h:204
void sortByPosition()
Lexicographically sorts the peaks by their position.
std::map< Size, std::vector< Size > > MergeBlocks
blocks of spectra (master-spectrum index to sacrifice-spectra(the ones being merged into the master-s...
Definition: SpectraMerger.h:126
void addSpectrum(const MSSpectrum &spectrum)
adds a spectrum to the list
Bundles analyzing tools for a clustering (given as sequence of BinaryTreeNode's)
Definition: ClusterAnalyzer.h:51
void endProgress() const
Ends the progress display.
SpectrumType
Spectrum peak type.
Definition: SpectrumSettings.h:70
void mergeSpectra_(MapType &exp, const MergeBlocks &spectra_to_merge, const UInt ms_level)
merges blocks of spectra of a certain level
Definition: SpectraMerger.h:504
A two-dimensional distance matrix, similar to OpenMS::Matrix.
Definition: DistanceMatrix.h:67
unsigned int UInt
Unsigned integer type.
Definition: Types.h:94
#define OPENMS_LOG_INFO
Macro if a information, e.g. a status should be reported.
Definition: LogStream.h:470
SplineInterpolatedPeaks::Navigator getNavigator(double scaling=0.7)
returns an iterator for access of spline packages
void setValue(const std::string &key, const ParamValue &value, const std::string &description="", const std::vector< std::string > &tags=std::vector< std::string >())
Sets a value.
profile data
Definition: SpectrumSettings.h:74
void mergeSpectraBlockWise(MapType &exp)
Definition: SpectraMerger.h:159
Iterator begin()
Definition: MSExperiment.h:182
std::vector< Int > IntList
Vector of signed integers.
Definition: ListUtils.h:55
Merges blocks of MS or MS2 spectra.
Definition: SpectraMerger.h:62
ptrdiff_t SignedSize
Signed Size type e.g. used as pointer difference.
Definition: Types.h:134
void sortSpectra(bool sort_mz=true)
Sorts the data points by retention time.
Base::const_iterator const_iterator
Definition: MSExperiment.h:117
Size size() const
The number of spectra.
Definition: MSExperiment.h:147
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
void average(MapType &exp, const String &average_type)
average over neighbouring spectra
Definition: SpectraMerger.h:313
void setMZ(CoordinateType mz)
Mutable access to m/z.
Definition: Peak1D.h:119
void setIntensity(IntensityType intensity)
Mutable access to the data point intensity (height)
Definition: Peak1D.h:110
void setParameters(const Param ¶m)
Sets the parameters.
SpectraDistance_()
Definition: SpectraMerger.h:79
A basic LC-MS feature.
Definition: BaseFeature.h:58
Iterator end()
Definition: MSExperiment.h:192
void updateMembers_() override
This method is used to update extra member variables at the end of the setParameters() method...
Definition: SpectraMerger.h:87
The representation of a 1D spectrum.
Definition: MSSpectrum.h:66
void setRT(CoordinateType coordinate)
Mutable access to the RT coordinate (index 0)
Definition: Peak2D.h:216
CoordinateType getMZ() const
Returns the m/z coordinate (index 1)
Definition: Peak2D.h:198
double getPosMax() const
returns the maximum m/z (or RT) of the spectrum
void getSpectrumAlignment(std::vector< std::pair< Size, Size > > &alignment, const SpectrumType1 &s1, const SpectrumType2 &s2) const
Definition: SpectrumAlignment.h:88
double rt_max_
Definition: SpectraMerger.h:118
double operator()(const BaseFeature &first, const BaseFeature &second) const
Definition: SpectraMerger.h:100
double getSimilarity(const double d_rt, const double d_mz) const
Definition: SpectraMerger.h:93
double eval(double pos)
returns spline interpolated intensity at this position (fast access since we can start search from la...
void setProgress(SignedSize value) const
Sets the current progress.
A 1-dimensional raw data point or peak.
Definition: Peak1D.h:53
void setMSLevel(UInt ms_level)
Sets the MS level.
Definition: SpectraMerger.h:75
Exception indicating that an invalid parameter was handed over to an algorithm.
Definition: Exception.h:339
Aligns the peaks of two sorted spectra Method 1: Using a banded (width via 'tolerance' parameter) ali...
Definition: SpectrumAlignment.h:67
void clear(bool clear_meta_data)
Clears all data and meta data.
void setRT(double rt)
Sets the absolute retention time (in seconds)
Management and storage of parameters / INI files.
Definition: Param.h:69
void averageCentroidSpectra_(MapType &exp, const AverageBlocks &spectra_to_average_over, const UInt ms_level)
average spectra (centroid mode)
Definition: SpectraMerger.h:826
In-Memory representation of a mass spectrometry run.
Definition: MSExperiment.h:70
CoordinateType getRT() const
Returns the RT coordinate (index 0)
Definition: Peak2D.h:210
SingleLinkage ClusterMethod.
Definition: SingleLinkage.h:55
double getPosMin() const
returns the minimum m/z (or RT) of the spectrum
void unify(const SpectrumSettings &rhs)
merge another spectrum setting into this one (data is usually appended, except for spectrum type whic...
const std::vector< Precursor > & getPrecursors() const
returns a const reference to the precursors
Data structure for spline interpolation of MS1 spectra and chromatograms.
Definition: SplineInterpolatedPeaks.h:59
Illegal self operation exception.
Definition: Exception.h:370
std::vector< SpectrumType >::const_iterator ConstIterator
Non-mutable iterator.
Definition: MSExperiment.h:105
void startProgress(SignedSize begin, SignedSize end, const String &label) const
Initializes the progress display.
double mz_max_
Definition: SpectraMerger.h:119
iterator class for access of spline packages
Definition: SplineInterpolatedPeaks.h:109
size_t Size
Size type e.g. used as variable which can hold result of size()
Definition: Types.h:127
void clear(bool clear_meta_data)
Clears all data and meta data.
Base class for all classes that want to report their progress.
Definition: ProgressLogger.h:52
void averageProfileSpectra_(MapType &exp, const AverageBlocks &spectra_to_average_over, const UInt ms_level)
average spectra (profile mode)
Definition: SpectraMerger.h:714
void setNativeID(const String &native_id)
sets the native identifier for the spectrum, used by the acquisition software.
A base class for all classes handling default parameters.
Definition: DefaultParamHandler.h:92
void cut(const Size cluster_quantity, const std::vector< BinaryTreeNode > &tree, std::vector< std::vector< Size > > &clusters)
Method to calculate a partition resulting from a certain step in clustering given by the number of cl...
void mergeSpectraPrecursors(MapType &exp)
merges spectra with similar precursors (must have MS2 level)
Definition: SpectraMerger.h:210
const String & getNativeID() const
returns the native identifier for the spectrum, used by the acquisition software. ...
const std::vector< MSSpectrum > & getSpectra() const
returns the spectrum list
Hierarchical clustering with generic clustering functions.
Definition: ClusterHierarchical.h:63
centroid data or stick data
Definition: SpectrumSettings.h:73
int Int
Signed integer type.
Definition: Types.h:102
void cluster(std::vector< Data > &data, const SimilarityComparator &comparator, const ClusterFunctor &clusterer, std::vector< BinaryTreeNode > &cluster_tree, DistanceMatrix< float > &original_distance)
Clustering function.
Definition: ClusterHierarchical.h:112
std::map< Size, std::vector< std::pair< Size, double > > > AverageBlocks
blocks of spectra (master-spectrum index to update to spectra to average over)
Definition: SpectraMerger.h:129
#define OPENMS_LOG_WARN
Macro if a warning, a piece of information which should be read by the user, should be logged...
Definition: LogStream.h:465