File Coverage

blib/lib/Bio/Chado/Schema/Result/Cv/StatsPathsToRoot.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::Cv::StatsPathsToRoot;
2             BEGIN {
3 6     6   2601 $Bio::Chado::Schema::Result::Cv::StatsPathsToRoot::AUTHORITY = 'cpan:RBUELS';
4             }
5             BEGIN {
6 6     6   101 $Bio::Chado::Schema::Result::Cv::StatsPathsToRoot::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         16  
  6         104  
13 6     6   30 use warnings;
  6         15  
  6         137  
14              
15 6     6   29 use base 'DBIx::Class::Core';
  6         13  
  6         633  
16              
17              
18              
19             __PACKAGE__->table("stats_paths_to_root");
20              
21              
22             __PACKAGE__->add_columns(
23             "cvterm_id",
24             { data_type => "integer", is_nullable => 1 },
25             "total_paths",
26             { data_type => "bigint", is_nullable => 1 },
27             "avg_distance",
28             { data_type => "numeric", is_nullable => 1 },
29             "min_distance",
30             { data_type => "integer", is_nullable => 1 },
31             "max_distance",
32             { data_type => "integer", is_nullable => 1 },
33             );
34              
35              
36             # Created by DBIx::Class::Schema::Loader v0.06001 @ 2010-04-16 14:33:36
37             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:v8mWhXZfhr7ZZktKhJpeDg
38              
39              
40             # You can replace this text with custom content, and it will be preserved on regeneration
41             1;
42              
43             __END__