Struct MultiLayerSpectrum

Source
pub struct MultiLayerSpectrum<C: CentroidLike = CentroidPeak, D: DeconvolutedCentroidLike = DeconvolutedPeak> {
    pub description: SpectrumDescription,
    pub arrays: Option<BinaryArrayMap>,
    pub peaks: Option<MZPeakSetType<C>>,
    pub deconvoluted_peaks: Option<MassPeakSetType<D>>,
}
Expand description

Represent a spectrum with multiple layers of representation of the peak data.

This type is useful because it permits us to hold spectra in incrementally more processed representations without loss of information.

Fields§

§description: SpectrumDescription

The spectrum metadata describing acquisition conditions and details.

§arrays: Option<BinaryArrayMap>

The (potentially absent) data arrays describing the m/z, intensity, and potentially other measured properties

§peaks: Option<MZPeakSetType<C>>§deconvoluted_peaks: Option<MassPeakSetType<D>>

Implementations§

Source§

impl<C, D> MultiLayerSpectrum<C, D>

Source

pub fn new( description: SpectrumDescription, arrays: Option<BinaryArrayMap>, peaks: Option<MZPeakSetType<C>>, deconvoluted_peaks: Option<MassPeakSetType<D>>, ) -> Self

Source

pub fn into_centroid( self, ) -> Result<CentroidSpectrumType<C>, SpectrumConversionError>

Convert a spectrum into a CentroidSpectrumType

Source

pub fn into_raw(self) -> Result<RawSpectrum, SpectrumConversionError>

Convert a spectrum into a RawSpectrum

Source

pub fn from_arrays_and_description( arrays: BinaryArrayMap, description: SpectrumDescription, ) -> Self

Source

pub fn from_description(description: SpectrumDescription) -> Self

Source

pub fn from_peaks_data_levels_and_description( peaks: PeakDataLevel<C, D>, description: SpectrumDescription, ) -> Self

Source

pub fn from_spectrum_like<S: SpectrumLike<C, D>>(spectrum: S) -> Self

Source

pub fn denoise(&mut self, scale: f32) -> Result<(), SpectrumProcessingError>

Apply a local denoising algorithm to the signal that is suitable for profile mode data using mzsignal::denoise.

Source

pub fn reprofile_with_shape( &mut self, dx: f64, fwhm: f32, ) -> Result<(), SpectrumProcessingError>

When mzsignal is available, use mzsignal::reprofile::PeakSetReprofiler to create new profile m/z and intensity DataArrays from MultiLayerSpectrum::peaks, updating MultiLayerSpectrum::arrays.

NOTE: This does not modify SpectrumLike::signal_continuity, and if it is desired you should update this manually to SignalContinuity::Profile.

§Arguments
  • dx: The m/z grid spacing that the profile signal will be projected onto. The best value to use here depends upon the spectrum’s resolution, but when resources are not an issue between 0.005 and 0.001 are is a choice. This may produce a lot of wasted space however.
  • fwhm: The uniform peak full-width-at-half-max to assume for all peaks. It controls the broadness of the theoretical gaussian profile created around each centroid peak. If non-uniform shapes are needed, directly use PeakSetReprofiler.
Source§

impl<C, D> MultiLayerSpectrum<C, D>

Source

pub fn try_build_peaks( &mut self, ) -> Result<RefPeakDataLevel<'_, C, D>, SpectrumConversionError>

Attempt to reconstruct one of the peak layers based upon the available data arrays if this spectrum is in centroid mode.

§Errors

If constructing the peak list encounters an error, or if data array access/decoding fails, a SpectrumConversionError is returned.

Source

pub fn try_build_centroids( &mut self, ) -> Result<&MZPeakSetType<C>, SpectrumConversionError>

Source

pub fn try_build_deconvoluted_centroids( &mut self, ) -> Result<&MassPeakSetType<D>, SpectrumConversionError>

Source§

impl<C: CentroidLike + From<FittedPeak>, D: DeconvolutedCentroidLike> MultiLayerSpectrum<C, D>

When mzsignal is available, MultiLayerSpectrum supports in-place signal processing operations.

The peak picking steps need to convert an mzsignal::FittedPeak into C. This is trivial for CentroidPeak and mzsignal::FittedPeak itself.

Source

pub fn pick_peaks_with( &mut self, peak_picker: &PeakPicker, ) -> Result<(), SpectrumProcessingError>

Using a pre-configured mzsignal::PeakPicker to pick peaks from arrays’s signal, populating the peaks field.

If SpectrumLike::signal_continuity returns SignalContinuity::Centroid, then no filtering is performed and all points are directly converted into picked peaks.

NOTE: This does not modify SpectrumLike::signal_continuity, and if it is desired you should update this manually to SignalContinuity::Centroid.

Source

pub fn pick_peaks( &mut self, signal_to_noise_threshold: f32, ) -> Result<(), SpectrumProcessingError>

Pick peaks with a minimum signal-to-noise threshold, populating MultiLayerSpectrum::peaks with an mzpeaks::MZPeakSetType over C.

§See also

MultiLayerSpectrum::pick_peaks_with

Source

pub fn pick_peaks_in_intervals( &mut self, signal_to_noise_threshold: f32, intervals: &[(f64, f64)], ) -> Result<(), SpectrumProcessingError>

Pick peaks in the specified m/z intervals with a minimum signal-to-noise threshold, populating MultiLayerSpectrum::peaks with an mzpeaks::MZPeakSetType over C from those intervals.

If SpectrumLike::signal_continuity returns SignalContinuity::Centroid, then array data is converted to peaks as in MultiLayerSpectrum::pick_peaks and then only those peaks in the requested intervals are kept.

NOTE: This does not modify SpectrumLike::signal_continuity, and if it is desired you should update this manually to SignalContinuity::Centroid.

Trait Implementations§

Source§

impl<C: Clone + CentroidLike, D: Clone + DeconvolutedCentroidLike> Clone for MultiLayerSpectrum<C, D>

Source§

fn clone(&self) -> MultiLayerSpectrum<C, D>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<C: Debug + CentroidLike, D: Debug + DeconvolutedCentroidLike> Debug for MultiLayerSpectrum<C, D>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<C: CentroidLike, D: DeconvolutedCentroidLike> Default for MultiLayerSpectrum<C, D>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de, C, D> Deserialize<'de> for MultiLayerSpectrum<C, D>

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<C: CentroidLike, D: DeconvolutedCentroidLike> From<CentroidSpectrumType<C>> for MultiLayerSpectrum<C, D>

Source§

fn from(spectrum: CentroidSpectrumType<C>) -> MultiLayerSpectrum<C, D>

Converts to this type from the input type.
Source§

impl<CFeat: FeatureLike<MZ, IonMobility> + BuildArrayMap3DFrom, DFeat: FeatureLike<Mass, IonMobility> + KnownCharge + BuildArrayMap3DFrom, CPeak: CentroidLike + BuildFromArrayMap, DPeak: DeconvolutedCentroidLike + BuildFromArrayMap> From<MultiLayerIonMobilityFrame<CFeat, DFeat>> for MultiLayerSpectrum<CPeak, DPeak>

Source§

fn from(value: MultiLayerIonMobilityFrame<CFeat, DFeat>) -> Self

Converts to this type from the input type.
Source§

impl<C, D> From<MultiLayerSpectrum<C, D>> for RawSpectrum

Source§

fn from(spectrum: MultiLayerSpectrum<C, D>) -> RawSpectrum

Converts to this type from the input type.
Source§

impl<'a, C: CentroidLike, D: DeconvolutedCentroidLike> From<MzMLSpectrumBuilder<'a, C, D>> for MultiLayerSpectrum<C, D>

Source§

fn from(val: MzMLSpectrumBuilder<'a, C, D>) -> Self

Converts to this type from the input type.
Source§

impl<C: CentroidLike + BuildFromArrayMap + BuildArrayMapFrom, D: DeconvolutedCentroidLike + BuildFromArrayMap + BuildArrayMapFrom> From<PROXISpectrum> for MultiLayerSpectrum<C, D>

Source§

fn from(value: PROXISpectrum) -> Self

Converts to this type from the input type.
Source§

impl<C, D> From<RawSpectrum> for MultiLayerSpectrum<C, D>

Source§

fn from(spectrum: RawSpectrum) -> MultiLayerSpectrum<C, D>

Converts to this type from the input type.
Source§

impl<C: CentroidLike, D: DeconvolutedCentroidLike> ParamDescribed for MultiLayerSpectrum<C, D>

Source§

fn params(&self) -> &[Param]

Obtain an immutable slice over the encapsulated Param list
Source§

fn params_mut(&mut self) -> &mut ParamList

Obtain an mutable slice over the encapsulated Param list
Source§

fn add_param(&mut self, param: Param)

Add a new Param to the entity
Source§

fn extend_params(&mut self, it: impl IntoIterator<Item = Param>)

Add all parameters from an iterator of Param to the entity
Source§

fn remove_param(&mut self, index: usize) -> Param

Remove the ith Param from the entity.
Source§

fn get_param_by_name(&self, name: &str) -> Option<&Param>

Find the first Param whose name matches name
Source§

fn get_param_by_curie(&self, curie: &CURIE) -> Option<&Param>

Find the first Param whose CURIE matches curie
Source§

fn get_param_by_accession(&self, accession: &str) -> Option<&Param>

Find the first Param whose Param::accession matches accession Read more
Source§

fn iter_params(&self) -> Iter<'_, Param>

Iterate over the encapsulated parameter list
Source§

fn iter_params_mut(&mut self) -> IterMut<'_, Param>

Iterate mutably over the encapsulated parameter list
Source§

impl<C: CentroidLike + BuildArrayMapFrom + BuildFromArrayMap, D: DeconvolutedCentroidLike + BuildArrayMapFrom + BuildFromArrayMap, G: SpectrumGrouping<C, D, MultiLayerSpectrum<C, D>>, R: RandomAccessSpectrumGroupingIterator<C, D, MultiLayerSpectrum<C, D>, G>> RandomAccessSpectrumGroupingIterator<C, D, MultiLayerSpectrum<C, D>, G> for SpectrumAveragingIterator<'_, C, D, G, R>

Source§

fn reset_state(&mut self)

Source§

fn start_from_id(&mut self, id: &str) -> Result<&Self, SpectrumAccessError>

Source§

fn start_from_index( &mut self, index: usize, ) -> Result<&Self, SpectrumAccessError>

Source§

fn start_from_time(&mut self, time: f64) -> Result<&Self, SpectrumAccessError>

Source§

impl<C, D> Serialize for MultiLayerSpectrum<C, D>

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<'a, C: CentroidLike + BuildFromArrayMap, D: DeconvolutedCentroidLike + BuildFromArrayMap> SpectrumBuilding<'a, C, D, MultiLayerSpectrum<C, D>> for MzMLbSpectrumBuilder<'a, C, D>

Source§

fn isolation_window_mut(&mut self) -> &mut IsolationWindow

Get the last isolation window being constructed
Source§

fn scan_window_mut(&mut self) -> &mut ScanWindow

Get the last scan window being constructed.
Source§

fn selected_ion_mut(&mut self) -> &mut SelectedIon

Source§

fn current_array_mut(&mut self) -> &mut DataArray

Source§

fn into_spectrum(self, spectrum: &mut MultiLayerSpectrum<C, D>)

Move all the data into the provided spectrum reference
Source§

fn fill_spectrum<P: ParamLike + Into<Param> + ParamValue>(&mut self, param: P)

Source§

fn fill_binary_data_array<P: ParamLike + Into<Param> + ParamValue>( &mut self, param: P, )

Source§

fn borrow_instrument_configuration( self, instrument_configurations: &'a mut IncrementingIdMap, ) -> Self

Source§

fn new_selected_ion(&mut self) -> &mut SelectedIon

Source§

fn into_chromatogram(self, chromatogram: &mut Chromatogram)

Source§

fn set_current_compressiion(&mut self, compression: BinaryCompressionType)

Source§

fn fill_selected_ion(&mut self, param: Param)

Source§

fn fill_isolation_window(&mut self, param: Param)

Source§

fn fill_scan_window(&mut self, param: Param)

Source§

impl<'inner, C: CentroidLike, D: DeconvolutedCentroidLike> SpectrumBuilding<'inner, C, D, MultiLayerSpectrum<C, D>> for MzMLSpectrumBuilder<'inner, C, D>

Source§

fn isolation_window_mut(&mut self) -> &mut IsolationWindow

Get the last isolation window being constructed
Source§

fn scan_window_mut(&mut self) -> &mut ScanWindow

Get the last scan window being constructed.
Source§

fn selected_ion_mut(&mut self) -> &mut SelectedIon

Source§

fn current_array_mut(&mut self) -> &mut DataArray

Source§

fn into_spectrum(self, spectrum: &mut MultiLayerSpectrum<C, D>)

Move all the data into the provided spectrum reference
Source§

fn fill_spectrum<P: ParamLike + Into<Param> + ParamValue>(&mut self, param: P)

Source§

fn borrow_instrument_configuration( self, instrument_configurations: &'inner mut IncrementingIdMap, ) -> Self

Source§

fn new_selected_ion(&mut self) -> &mut SelectedIon

Source§

fn into_chromatogram(self, chromatogram: &mut Chromatogram)

Source§

fn set_current_compressiion(&mut self, compression: BinaryCompressionType)

Source§

fn fill_binary_data_array<P: ParamLike + Into<Param> + ParamValue>( &mut self, param: P, )

Source§

fn fill_selected_ion(&mut self, param: Param)

Source§

fn fill_isolation_window(&mut self, param: Param)

Source§

fn fill_scan_window(&mut self, param: Param)

Source§

impl<C: CentroidLike, D: DeconvolutedCentroidLike> SpectrumLike<C, D> for MultiLayerSpectrum<C, D>

Source§

fn description(&self) -> &SpectrumDescription

The method to access the spectrum description itself, which supplies the data for most other methods on this trait.
Source§

fn description_mut(&mut self) -> &mut SpectrumDescription

The method to access the spectrum descript itself, mutably.
Source§

fn peaks(&self) -> RefPeakDataLevel<'_, C, D>

Retrieve the most processed representation of the mass spectrum’s signal
Source§

fn raw_arrays(&self) -> Option<&BinaryArrayMap>

Obtain a reference to the BinaryArrayMap if one is available for the peak information. This may not be the most refined version of the peak signal if it has been processed further.
Source§

fn into_peaks_and_description( self, ) -> (PeakDataLevel<C, D>, SpectrumDescription)

Source§

fn acquisition(&self) -> &Acquisition

Access the acquisition information for this spectrum.
Source§

fn precursor(&self) -> Option<&Precursor>

Access the precursor information, if it exists.
Source§

fn precursor_iter(&self) -> impl Iterator<Item = &Precursor>

Iterate over all precursors of the spectrum
Source§

fn precursor_mut(&mut self) -> Option<&mut Precursor>

Mutably access the precursor information, if it exists
Source§

fn precursor_iter_mut(&mut self) -> impl Iterator<Item = &mut Precursor>

Iterate over all precursors of the spectrum mutably
Source§

fn start_time(&self) -> f64

A shortcut method to retrieve the scan start time of a spectrum
Source§

fn ms_level(&self) -> u8

Access the MS exponentiation level
Source§

fn id(&self) -> &str

Access the native ID string for the spectrum
Source§

fn index(&self) -> usize

Access the index of the spectrum in the source file
Source§

fn signal_continuity(&self) -> SignalContinuity

Access a description of how raw the signal is, whether a profile spectrum is available or only centroids are present.
Source§

fn polarity(&self) -> ScanPolarity

Access a description of the spectrum polarity
Source§

fn ion_mobility(&self) -> Option<f64>

Access the point measure of ion mobility associated with the scan if present. This is distinct from having a frame-level scan across the ion mobility dimension.
Source§

fn has_ion_mobility(&self) -> bool

Check if this spectrum has a point measure of ion mobility. This is distinct from having a frame-level scan across the ion mobility dimension.
Source§

fn has_ion_mobility_dimension(&self) -> bool

Check if this spectrum has an ion mobility dimension/array. This is distinct from having a scan-level point measure of ion mobility.
Source§

fn has_ion_mobility_class(&self) -> HasIonMobility

A single point of entry for checking if ion mobility is present.
Source§

fn update_summaries(&mut self)

Compute and update the the total ion current, base peak, and m/z range for the spectrum based upon its current peak data. Read more
Source§

impl<C, D> TryFrom<MultiLayerSpectrum<C, D>> for CentroidSpectrumType<C>

Source§

type Error = SpectrumConversionError

The type returned in the event of a conversion error.
Source§

fn try_from( spectrum: MultiLayerSpectrum<C, D>, ) -> Result<CentroidSpectrumType<C>, Self::Error>

Performs the conversion.
Source§

impl<C, D> TryFrom<MultiLayerSpectrum<C, D>> for DeconvolutedSpectrumType<D>

Source§

type Error = SpectrumConversionError

The type returned in the event of a conversion error.
Source§

fn try_from(value: MultiLayerSpectrum<C, D>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<CFeat: FeatureLike<MZ, IonMobility>, DFeat: FeatureLike<Mass, IonMobility> + KnownCharge, CPeak: CentroidLike, DPeak: DeconvolutedCentroidLike> TryFrom<MultiLayerSpectrum<CPeak, DPeak>> for MultiLayerIonMobilityFrame<CFeat, DFeat>

Source§

type Error = ArrayRetrievalError

The type returned in the event of a conversion error.
Source§

fn try_from( value: MultiLayerSpectrum<CPeak, DPeak>, ) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

§

impl<C, D> Freeze for MultiLayerSpectrum<C, D>

§

impl<C, D> RefUnwindSafe for MultiLayerSpectrum<C, D>

§

impl<C, D> Send for MultiLayerSpectrum<C, D>
where C: Send, D: Send,

§

impl<C, D> Sync for MultiLayerSpectrum<C, D>
where C: Sync, D: Sync,

§

impl<C, D> Unpin for MultiLayerSpectrum<C, D>
where C: Unpin, D: Unpin,

§

impl<C, D> UnwindSafe for MultiLayerSpectrum<C, D>
where C: UnwindSafe, D: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,