line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Bio::Chado::Schema::Result::Composite::FeatureIntersection; |
2
|
|
|
|
|
|
|
BEGIN { |
3
|
6
|
|
|
6
|
|
2568
|
$Bio::Chado::Schema::Result::Composite::FeatureIntersection::AUTHORITY = 'cpan:RBUELS'; |
4
|
|
|
|
|
|
|
} |
5
|
|
|
|
|
|
|
BEGIN { |
6
|
6
|
|
|
6
|
|
98
|
$Bio::Chado::Schema::Result::Composite::FeatureIntersection::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
|
|
|
|
|
17
|
|
|
6
|
|
|
|
|
103
|
|
13
|
6
|
|
|
6
|
|
29
|
use warnings; |
|
6
|
|
|
|
|
13
|
|
|
6
|
|
|
|
|
128
|
|
14
|
|
|
|
|
|
|
|
15
|
6
|
|
|
6
|
|
31
|
use base 'DBIx::Class::Core'; |
|
6
|
|
|
|
|
14
|
|
|
6
|
|
|
|
|
681
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
__PACKAGE__->table("feature_intersection"); |
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 => "integer", is_nullable => 1 }, |
29
|
|
|
|
|
|
|
"subject_strand", |
30
|
|
|
|
|
|
|
{ data_type => "smallint", is_nullable => 1 }, |
31
|
|
|
|
|
|
|
"object_strand", |
32
|
|
|
|
|
|
|
{ data_type => "smallint", is_nullable => 1 }, |
33
|
|
|
|
|
|
|
"fmin", |
34
|
|
|
|
|
|
|
{ data_type => "integer", is_nullable => 1 }, |
35
|
|
|
|
|
|
|
"fmax", |
36
|
|
|
|
|
|
|
{ data_type => "integer", is_nullable => 1 }, |
37
|
|
|
|
|
|
|
); |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader v0.06001 @ 2010-04-16 14:33:36 |
41
|
|
|
|
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ARvaABXBfbCNiuAWRzIJsg |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
# You can replace this text with custom content, and it will be preserved on regeneration |
45
|
|
|
|
|
|
|
1; |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
__END__ |