File Coverage

blib/lib/Bio/Chado/Schema/Result/Composite/Gffatts.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::Gffatts;
2             BEGIN {
3 6     6   2767 $Bio::Chado::Schema::Result::Composite::Gffatts::AUTHORITY = 'cpan:RBUELS';
4             }
5             BEGIN {
6 6     6   102 $Bio::Chado::Schema::Result::Composite::Gffatts::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   39 use strict;
  6         13  
  6         107  
13 6     6   30 use warnings;
  6         137  
  6         140  
14              
15 6     6   106 use base 'DBIx::Class::Core';
  6         12  
  6         746  
16              
17              
18              
19             __PACKAGE__->table("gffatts");
20              
21              
22             __PACKAGE__->add_columns(
23             "feature_id",
24             { data_type => "integer", is_nullable => 1 },
25             "type",
26             { data_type => "text", is_nullable => 1 },
27             "attribute",
28             {
29             data_type => "text",
30             is_nullable => 1,
31             original => { data_type => "varchar" },
32             },
33             );
34              
35              
36             # Created by DBIx::Class::Schema::Loader v0.07001 @ 2010-08-16 23:01:56
37             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VcMeIrJQbK6bfMw5MF89Ag
38              
39              
40             # You can replace this text with custom content, and it will be preserved on regeneration
41             1;
42              
43             __END__