Sha256: 2454c41feabc523e6e55dad0c64ff83fc08482278b472e68c159e2a68242e876
Contents?: true
Size: 784 Bytes
Versions: 11
Compression:
Stored size: 784 Bytes
Contents
require 'mspire/cv/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::CV::Paramable def to_xml(builder) builder.isolationWindow {|xml| super(xml) } end end end end
Version data entries
11 entries across 11 versions & 1 rubygems