Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 776 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 776 Bytes

Xcalibur::Sld

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).

Installation

gem install xcalibur-sld

Examples

(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

Acknowledgements

This project relied heavily on the information found on the wiki of Gene Selkov's awesome unfinnigan project.