Sha256: ad6162b743b6b772d1786035b11e3a2dc5694d0bb8b2810b176444d006061340
Contents?: true
Size: 777 Bytes
Versions: 12
Compression:
Stored size: 777 Bytes
Contents
require 'mspire/paramable' module Mspire class Mzml # MUST supply a *child* term of MS:1000792 (isolation window attribute) one or more times # # e.g.: MS:1000827 (isolation window target m/z) # e.g.: MS:1000828 (isolation window lower offset) # e.g.: MS:1000829 (isolation window upper offset) # # MUST supply a *child* term of MS:1000792 (isolation window attribute) one or more times # # e.g.: MS:1000827 (isolation window target m/z) # e.g.: MS:1000828 (isolation window lower offset) # e.g.: MS:1000829 (isolation window upper offset) class IsolationWindow include Mspire::Paramable def to_xml(builder) builder.isolationWindow {|xml| super(xml) } end end end end
Version data entries
12 entries across 12 versions & 1 rubygems