File Coverage

blib/lib/Bio/Chado/Schema/Result/Composite/Gff3view.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::Gff3view;
2             BEGIN {
3 6     6   2625 $Bio::Chado::Schema::Result::Composite::Gff3view::AUTHORITY = 'cpan:RBUELS';
4             }
5             BEGIN {
6 6     6   107 $Bio::Chado::Schema::Result::Composite::Gff3view::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   37 use strict;
  6         13  
  6         105  
13 6     6   28 use warnings;
  6         12  
  6         128  
14              
15 6     6   29 use base 'DBIx::Class::Core';
  6         12  
  6         791  
16              
17              
18              
19             __PACKAGE__->table("gff3view");
20              
21              
22             __PACKAGE__->add_columns(
23             "feature_id",
24             { data_type => "integer", is_nullable => 1 },
25             "ref",
26             { data_type => "varchar", is_nullable => 1, size => 255 },
27             "source",
28             { data_type => "varchar", is_nullable => 1, size => 255 },
29             "type",
30             { data_type => "varchar", is_nullable => 1, size => 1024 },
31             "fstart",
32             { data_type => "integer", is_nullable => 1 },
33             "fend",
34             { data_type => "integer", is_nullable => 1 },
35             "score",
36             { data_type => "double precision", is_nullable => 1 },
37             "strand",
38             { data_type => "text", is_nullable => 1 },
39             "phase",
40             { data_type => "integer", is_nullable => 1 },
41             "seqlen",
42             { data_type => "integer", is_nullable => 1 },
43             "name",
44             { data_type => "varchar", is_nullable => 1, size => 255 },
45             "organism_id",
46             { data_type => "integer", is_nullable => 1 },
47             );
48              
49              
50             # Created by DBIx::Class::Schema::Loader v0.07002 @ 2010-10-18 16:56:35
51             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+oeARx+zxVYZng5Uiveeyw
52              
53              
54             # You can replace this text with custom content, and it will be preserved on regeneration
55             1;
56              
57             __END__