Sha256: 972d3783f42b5b77230a3fecae32ee051245cc3f9095cc530894fbbcf93455f8

Contents?: true

Size: 1.2 KB

Versions: 10

Compression:

Stored size: 1.2 KB

Contents

require 'ms/mzml/spectrum'

module MS
  class Mzml
    class SpectrumList < Array

      # a DataProcessing object
      attr_reader :default_data_processing

      def initialize(default_data_processing, spectra=[])
        @default_data_processing = default_data_processing
        super(spectra)
      end

      # This method takes an object responding to :data, creates a new
      # MS::Mzml::Spectrum object with that data and puts it in the internal
      # list
      def add_ms_spectrum!(spectrum, id)
        mzml_spec = MS::Mzml::Spectrum.new(id)
        mzml_spec.data = spectrum.data
        self << mzml_spec
      end

      # takes an array of spectra and performs add_spectrum on each
      # returns self
      def add_ms_spectra!(spectra, ids=[])
        spectra.zip(ids).each_with_index {|(spec,id),i| add_spectrum(spec, "spectrum=#{i+1}") }
        self
      end

      def to_xml(builder)
        builder.spectrumList(count: self.size, defaultDataProcessingRef: @default_data_processing.id) do |spl_n|
          self.each_with_index do |spectrum,i|
            spectrum.index = i unless spectrum.index
            spectrum.to_xml(spl_n)
          end
        end
        builder
      end

    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
mspire-0.6.26 lib/ms/mzml/spectrum_list.rb
mspire-0.6.25 lib/ms/mzml/spectrum_list.rb
mspire-0.6.24 lib/ms/mzml/spectrum_list.rb
mspire-0.6.22 lib/ms/mzml/spectrum_list.rb
mspire-0.6.21 lib/ms/mzml/spectrum_list.rb
mspire-0.6.20 lib/ms/mzml/spectrum_list.rb
mspire-0.6.19 lib/ms/mzml/spectrum_list.rb
mspire-0.6.18 lib/ms/mzml/spectrum_list.rb
mspire-0.6.12 lib/ms/mzml/spectrum_list.rb
mspire-0.6.11 lib/ms/mzml/spectrum_list.rb