GOBO::DBIC::GODBModel::Schema - GOBO::DBIC::GODBModel::Schema documentation
Index
Code Index:
GOBO::DBIC::GODBModel::Schema

use utf8;
use strict;
package GOBO::DBIC::GODBModel::Schema;
## TODO: Make sure that GOBO::DBIC::GODBModel
#use base ("GOBO::DBIC::GODBModel");
use base qw/DBIx::Class::Schema/;
## Get all of the classes in our namespace automatically.
## BUG: for some reason, the below autoloading wasn't working.
#__PACKAGE__->load_classes;
__PACKAGE__->load_classes( qw/
Association
DBXRef
Species
GraphPath
DB
InstanceData
Homolset
Seq
SeqDBXRef
GeneProduct
GeneProductHomolset
GeneProductSynonym
GeneProductSeq
Evidence
EvidenceDBXRef
Term
Term2Term
TermSynonym
TermDBXRef
GeneProductCount
/ );
# =item new
# Constructor.
# =cut
# sub new {
# ##
# my $class = shift;
# my $self = $class->SUPER::new();
# ## We'll borrow SUCCESS and ERROR_MESSAGE from GOBO::DBIC::GODBModel.
# bless $self, $class;
# return $self;
# }
1;