swh:1:snp:5789d5563ae0ff1fac9d4620526a6e02863df326
Raw File
Tip revision: e86acd0d7ec14eaba9a500b0d7e33aa5446027c6 authored by Thomas Mooney on 03 January 2013, 19:26:11 UTC
Use Picard to convert the merged BAM into two FASTQs directly.
Tip revision: e86acd0
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