0.0
No commit activity in last 3 years
No release in over 3 years
Bio::Protparam has same interface and function as Bio::Tools::Protparam class of BioPerl, except that it calculate parameters instead of throwing query to Expasy protparam tool.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.8.4
~> 3.12

Runtime

>= 1.4.2
 Project Readme

bio-protparam

Build Status

bio-protparam adds Bio::Protparam class. Bio::Protparam has same interface and function as Bio::Tools::Protparam class of BioPerl, except that it calculate parameters instead of throwing query to Expasy protparam tool.

Note: this software is under active development!

Installation

    gem install bio-protparam

Usage

    require 'bio'
    require 'bio-protparam'
    
    protparam = Bio::Protparam.new("MYNNYNLCHIRTINWEEIITGPSAMYSYVY...")
    # Return Mw
    protparam.molecular_weight
    # Return pI
    protparam.theorettical_pI

To use Expasy's protparam, pass a ':remote' option to constructor.

    require 'bio'
    require 'bio-protparam'
    
    protparam = Bio::Protparam.new("MYNNYNLCHIRTINWEEIITGPSAMYSYVY...", :remote)
    # Return Mw
    protparam.molecular_weight
    # Return pI
    protparam.theorettical_pI

The API doc is on rdoc.info. For more code examples see the test files in the source tree.

Cite

If you use this software, please cite one of

Biogems.info

This Biogem is published at #bio-protparam

Copyright

Copyright (c) 2012 hryk. See LICENSE.txt for further details.