0.0
No commit activity in last 3 years
No release in over 3 years
A Ruby client for GGGenome the Ultrafast sequence search
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.4.2
>= 1.0.0
~> 1.8.4
~> 3.12
 Project Readme

bio-gggenome

Build Status

Ruby client for GGGenome the Ultrafast sequence search, http://gggenome.dbcls.jp/en/

Note: this software is under active development!

Installation

    gem install bio-gggenome

Usage

    require 'bio-gggenome'
    db = "hg19"
    missmatch = 1
    query = "TTCATTGACAACATT"
    hits = Bio::GGGenome.search(db, missmatch, query)
    
    hits['results'].each do |hit|
      hit['name']     #=> 'chr1'
      hit['position'] #=> 83462476
      hit['strand']   #=> "+"
    end

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

Project home page

Information on the source tree, documentation, examples, issues and how to contribute, see

http://github.com/nakao/bio-gggenome

The BioRuby community is on IRC server: irc.freenode.org, channel: #bioruby.

Cite

If you use this software, please cite one of

Biogems.info

This Biogem is published at #bio-gggenome

Copyright

Copyright (c) 2013 Mitsuteru Nakao. See LICENSE.txt for further details.