File Coverage

blib/lib/Bio/Chado/Schema/Result/Sequence/ProteinCodingGene.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::ProteinCodingGene;
2             BEGIN {
3 6     6   2730 $Bio::Chado::Schema::Result::Sequence::ProteinCodingGene::AUTHORITY = 'cpan:RBUELS';
4             }
5             BEGIN {
6 6     6   100 $Bio::Chado::Schema::Result::Sequence::ProteinCodingGene::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   36 use strict;
  6         14  
  6         208  
13 6     6   29 use warnings;
  6         65  
  6         132  
14              
15 6     6   28 use base 'DBIx::Class::Core';
  6         14  
  6         801  
16              
17              
18              
19             __PACKAGE__->table("protein_coding_gene");
20              
21              
22             __PACKAGE__->add_columns(
23             "feature_id",
24             { data_type => "integer", is_nullable => 1 },
25             "dbxref_id",
26             { data_type => "integer", is_nullable => 1 },
27             "organism_id",
28             { data_type => "integer", is_nullable => 1 },
29             "name",
30             { data_type => "varchar", is_nullable => 1, size => 255 },
31             "uniquename",
32             { data_type => "text", is_nullable => 1 },
33             "residues",
34             { data_type => "text", is_nullable => 1 },
35             "seqlen",
36             { data_type => "integer", is_nullable => 1 },
37             "md5checksum",
38             { data_type => "char", is_nullable => 1, size => 32 },
39             "type_id",
40             { data_type => "integer", is_nullable => 1 },
41             "is_analysis",
42             { data_type => "boolean", is_nullable => 1 },
43             "is_obsolete",
44             { data_type => "boolean", is_nullable => 1 },
45             "timeaccessioned",
46             { data_type => "timestamp", is_nullable => 1 },
47             "timelastmodified",
48             { data_type => "timestamp", is_nullable => 1 },
49             );
50              
51              
52             # Created by DBIx::Class::Schema::Loader v0.07001 @ 2010-08-16 23:01:56
53             # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/0llhIyKpSDA4/JPSMHwmQ
54              
55              
56             # You can replace this text with custom content, and it will be preserved on regeneration
57             1;
58              
59             __END__