COMBAT-TB / combattbmodel

COMBAT-TB model is a Chado inspired graph model for genome annotation.
GNU General Public License v3.0
2 stars 1 forks source link
chado combat-tb-model genome-annotation graph-model neo4j py2neo

combattbmodel

Build Status

The COMBAT-TB graph model is a Chado-derived graph model for genome annotation.

Overview

The graph model is based on the following Chado modules:

A diagram depicting the Graph model can be found here, with the accompanying documentation here.

Installation

$ virtualenv envname
$ source envname/bin/activate
$ pip install -i https://test.pypi.org/simple/ combattbmodel
$ python
>>> import combattbmodel
>>> combattbmodel.name
'combattbmodel'
>>> from combattbmodel.core import Gene
>>> gene = Gene()
>>> gene.so_id
u'SO:0000704'
>>>