Struct mzdata::spectrum::RawSpectrum

source ·
pub struct RawSpectrum {
    pub description: SpectrumDescription,
    pub arrays: BinaryArrayMap,
}
Expand description

Represents a spectrum that hasn’t been processed yet, with only data arrays, potentially no discrete peaks.

Fields§

§description: SpectrumDescription

The spectrum metadata describing acquisition conditions and details.

§arrays: BinaryArrayMap

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

Implementations§

source§

impl<'transient, 'lifespan: 'transient> RawSpectrum

source

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

source

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

Convert a spectrum into a CentroidSpectrumType

source

pub fn mzs(&'lifespan self) -> Cow<'transient, [f64]>

source

pub fn intensities(&'lifespan self) -> Cow<'transient, [f32]>

source

pub fn mzs_mut(&mut self) -> Result<&mut [f64], ArrayRetrievalError>

source

pub fn intensities_mut(&mut self) -> Result<&mut [f32], ArrayRetrievalError>

source

pub fn decode_all_arrays(&mut self) -> Result<(), ArrayRetrievalError>

source

pub fn into_spectrum<C, D: DeconvolutedCentroidLike + Default>( self ) -> Result<MultiLayerSpectrum<C, D>, SpectrumConversionError>

Convert a spectrum into a Spectrum

source

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

source

pub fn pick_peaks_with_into( self, peak_picker: &PeakPicker ) -> Result<MultiLayerSpectrum<CentroidPeak, DeconvolutedPeak>, SpectrumProcessingError>

source

pub fn pick_peaks_into( self, signal_to_noise_threshold: f32 ) -> Result<MultiLayerSpectrum<CentroidPeak, DeconvolutedPeak>, SpectrumProcessingError>

source

pub fn pick_peaks_in_intervals_into( self, signal_to_noise_threshold: f32, intervals: &[(f64, f64)] ) -> Result<MultiLayerSpectrum<CentroidPeak, DeconvolutedPeak>, SpectrumProcessingError>

Trait Implementations§

source§

impl Clone for RawSpectrum

source§

fn clone(&self) -> RawSpectrum

Returns a copy 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 Debug for RawSpectrum

source§

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

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

impl Default for RawSpectrum

source§

fn default() -> RawSpectrum

Returns the “default value” for a type. Read more
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> From<MzMLSpectrumBuilder<'a>> for RawSpectrum

source§

fn from(val: MzMLSpectrumBuilder<'a>) -> 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 ParamDescribed for RawSpectrum

source§

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

source§

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

source§

fn add_param(&mut self, param: Param)

source§

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

source§

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

source§

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

source§

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

source§

impl SpectrumLike for RawSpectrum

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<'_, CentroidPeak, DeconvolutedPeak>

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

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

source§

fn into_peaks_and_description( self ) -> (PeakDataLevel<CentroidPeak, DeconvolutedPeak>, 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

source§

fn params(&self) -> &ParamList

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§

impl<C> TryFrom<RawSpectrum> for CentroidSpectrumType<C>

§

type Error = SpectrumConversionError

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

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

Performs the conversion.

Auto Trait Implementations§

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

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> Same for T

§

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,

§

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>,

§

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>,

§

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.