File Coverage

blib/lib/Bio/Chado/Schema/Result/Sequence/IntronCombinedView.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::Sequence::IntronCombinedView;
2             BEGIN {
3 6     6   2574 $Bio::Chado::Schema::Result::Sequence::IntronCombinedView::AUTHORITY = 'cpan:RBUELS';
4             }
5             BEGIN {
6 6     6   103 $Bio::Chado::Schema::Result::Sequence::IntronCombinedView::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         13  
  6         109  
13 6     6   27 use warnings;
  6         14  
  6         158  
14              
15 6     6   31 use base 'DBIx::Class::Core';
  6         15  
  6         726  
16              
17              
18              
19             __PACKAGE__->table("intron_combined_view");
20              
21              
22             __PACKAGE__->add_columns(
23             "exon1_id",
24             { data_type => "integer", is_nullable => 1 },
25             "exon2_id",
26             { data_type => "integer", is_nullable => 1 },
27             "fmin",
28             { data_type => "integer", is_nullable => 1 },
29             "fmax",
30             { data_type => "integer", is_nullable => 1 },
31             "strand",
32             { data_type => "smallint", is_nullable => 1 },
33             "srcfeature_id",
34             { data_type => "integer", is_nullable => 1 },
35             "intron_rank",
36             { data_type => "integer", is_nullable => 1 },
37             "transcript_id",
38             { data_type => "integer", is_nullable => 1 },
39             );
40              
41              
42             # Created by DBIx::Class::Schema::Loader v0.06001 @ 2010-04-16 14:33:36
43             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BH+ootLdSRc/fvgWEYLCYg
44              
45              
46             # You can replace this text with custom content, and it will be preserved on regeneration
47             1;
48              
49             __END__