BiVeS Ruby Gem

<img src=“https://codeclimate.com/github/SysMO-DB/bives.svg” /> <img src=“https://travis-ci.org/SysMO-DB/bives.svg?branch=update” alt=“Build Status” />

Authors

Stuart Owen, Martin Scharm

Contact

fair-dom.org/contact

Homepage

fair-dom.org

Source code

github.com/SysMO-DB/bives

Licence

Apache 2.0 (See Licence file or opensource.org/licenses/Apache-2.0)

Copyright

© 2014, 2015 The University of Manchester, UK

Synopsis

This is a Ruby Gem which wraps the BiVeS java tool.

Its purpose is to produce and comparison of difference between two SBML models, based on the XyDiff algorithm.

BiVeS is developed at SEMS, Rostock, Germany, and more information can be found at sems.uni-rostock.de/projects/bives/ .

BiVeS is used as part of the Seek4Science project, but is a standalone library.

Usage

include the gem in your Gemfile with:

gem 'bives'

then to use in your code

include Bives
compare(file1,file2)

where file1 and file2 are File objects.

The result is a HTML report of the differences.

You can see an example in our Tests