File Coverage

blib/lib/Bio/Chado/Schema/Result/Composite/FeatureDifference.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::FeatureDifference;
2             BEGIN {
3 6     6   2681 $Bio::Chado::Schema::Result::Composite::FeatureDifference::AUTHORITY = 'cpan:RBUELS';
4             }
5             BEGIN {
6 6     6   105 $Bio::Chado::Schema::Result::Composite::FeatureDifference::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   38 use strict;
  6         12  
  6         101  
13 6     6   24 use warnings;
  6         16  
  6         131  
14              
15 6     6   30 use base 'DBIx::Class::Core';
  6         13  
  6         780  
16              
17              
18              
19             __PACKAGE__->table("feature_difference");
20              
21              
22             __PACKAGE__->add_columns(
23             "subject_id",
24             { data_type => "integer", is_nullable => 1 },
25             "object_id",
26             { data_type => "integer", is_nullable => 1 },
27             "srcfeature_id",
28             { data_type => "smallint", is_nullable => 1 },
29             "fmin",
30             { data_type => "integer", is_nullable => 1 },
31             "fmax",
32             { data_type => "integer", is_nullable => 1 },
33             "strand",
34             { data_type => "integer", is_nullable => 1 },
35             );
36              
37              
38             # Created by DBIx::Class::Schema::Loader v0.06001 @ 2010-04-16 14:33:36
39             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6LvmDps2sv7+cTs0f34TXQ
40              
41              
42             # You can replace this text with custom content, and it will be preserved on regeneration
43             1;
44              
45             __END__