File Coverage

blib/lib/Bio/Chado/Schema/Result/Composite/FLoc.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Bio::Chado::Schema::Result::Composite::FLoc;
2             BEGIN {
3 6     6   2625 $Bio::Chado::Schema::Result::Composite::FLoc::AUTHORITY = 'cpan:RBUELS';
4             }
5             BEGIN {
6 6     6   98 $Bio::Chado::Schema::Result::Composite::FLoc::VERSION = '0.08001'; # TRIAL
7             }
8              
9             # Created by DBIx::Class::Schema::Loader
10             # DO NOT MODIFY THE FIRST PART OF THIS FILE
11              
12 6     6   35 use strict;
  6         13  
  6         95  
13 6     6   24 use warnings;
  6         13  
  6         123  
14              
15 6     6   25 use base 'DBIx::Class::Core';
  6         12  
  6         668  
16              
17              
18              
19             __PACKAGE__->table("f_loc");
20              
21              
22             __PACKAGE__->add_columns(
23             "feature_id",
24             { data_type => "integer", is_nullable => 1 },
25             "name",
26             { data_type => "varchar", is_nullable => 1, size => 255 },
27             "dbxref_id",
28             { data_type => "integer", is_nullable => 1 },
29             "nbeg",
30             { data_type => "integer", is_nullable => 1 },
31             "nend",
32             { data_type => "integer", is_nullable => 1 },
33             "strand",
34             { data_type => "smallint", is_nullable => 1 },
35             );
36              
37              
38             # Created by DBIx::Class::Schema::Loader v0.07001 @ 2010-08-16 23:01:56
39             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:dbxGIAZ9SLZ4giHctwZscw
40              
41              
42             # You can replace this text with custom content, and it will be preserved on regeneration
43             1;
44              
45             __END__