swh:1:snp:5789d5563ae0ff1fac9d4620526a6e02863df326
Raw File
Tip revision: a99b4cfa9c41cc0a4b3b4e3eaeeaa1c5c6d2dba2 authored by Feiyu Du on 27 October 2015, 21:56:17 UTC
Merge pull request #1075 from dufeiyu/sdrf
Tip revision: a99b4cf
GeneTag.pm
package BAP::DB::GeneTag;

use base 'BAP::DB::DBI';
use DBD::Oracle qw(:ora_types);

__PACKAGE__->table('gene_tag');
__PACKAGE__->columns( All => qw(gene_id tag_id) );

# has a relationships?

__PACKAGE__->has_a('tag_id' => BAP::DB::Tag, );

1;

# $Id$
back to top