Cross-platform access to the Thermo's sequence SLD files.
NOTE: Each raw file embeds the information from the sequence row where it was injected. This can be easily accessed with the unfinnigan uf-seqrow commandline tool (which is cross-platform).
gem install xcalibur-sld
(Commandline access coming soon)
require 'xcalibur/sld'
sld = Xcalibur::Sld.new("file.sld")
header = sld.header
sld.rows.each do |row|
p row.methodname
end
This project relied heavily on the information found on the wiki of Gene Selkov's awesome unfinnigan project.