Sha256: 28c3ddf32c613df7644305ad706bae67296e60dcac11899ba97296d4f85daaca

Contents?: true

Size: 776 Bytes

Versions: 3

Compression:

Stored size: 776 Bytes

Contents

module ImzML

  class Metadata
    
    # Information pertaining to the entire mzML file (i.e. not specific to any part of the data set) is stored here
    attr_accessor :file_description

    # List and descriptions of samples
    attr_accessor :samples
    
    # List and descriptions of software used to acquire and/or process the data in this mzML file
    attr_accessor :software
    
    # List with the descriptions of the acquisition settings applied prior to the start of data acquisition
    attr_accessor :scan_settings
    
    # List and descriptions of data processing applied to this data
    attr_accessor :data_processing
    
    # All mass spectra and the acquisitions underlying them are described and attached here
    attr_accessor :spectrums

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
imzml-0.1.4 lib/imzml/metadata.rb
imzml-0.1.1 lib/imzml/metadata.rb
imzml-0.1.0 lib/imzml/metadata.rb