Project

msf

0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Thermo MSF file parser using ActiveRecord as ORM.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.2.0
~> 1.8.4
~> 2.2.2
~> 2.8.0
~> 0.7.1
~> 0.7

Runtime

~> 3.2.0
~> 1.2.1
~> 1.3.0
 Project Readme

MSF Parser

A Thermo MSF file parser using ActiveRecord as ORM. MSF files are SQLite3-based. This library provides a simple API using ActiveRecord that is directly translatable to the database’s schema.

This gem takes heavily from Angel Pizzaro's thermo_msf gem.

https://github.com/itmat/thermo_msf

WARNING

This gem has not been developed to completion. It has only been taken sufficiently far to serve my present needs.

It has not been tested on MSF files other than those generated by my instrument operating my version of Thermo's Proteome Discoverer (1.3).

Installation

gem install msf

API Usage

msf = MSF.new({:path => msf_file})
Peptides.all do |peptide|
  <whatever>
end

CLI Usage

ibspectra msf_file >> msf_file/msf_file.ibspectra.csv

Note

See erd/erd.png for an Entity Relationship Diagram of the MSF schema.

Contributing to msf

  • Checkout

git clone git@github.com:bioteam/msf.git; cd msf

  • Fix bugs, add features

<make changes>

  • Test

rspec

  • Update version

rake version:bump:patch

  • Commit changes

git commit

  • Release

rake release

Copyright

Copyright (c) 2012 William Van Etten. See LICENSE.txt for further details.