line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Bio::Chado::Schema::Result::Map::Featurerange; |
2
|
|
|
|
|
|
|
BEGIN { |
3
|
6
|
|
|
6
|
|
2671
|
$Bio::Chado::Schema::Result::Map::Featurerange::AUTHORITY = 'cpan:RBUELS'; |
4
|
|
|
|
|
|
|
} |
5
|
|
|
|
|
|
|
BEGIN { |
6
|
6
|
|
|
6
|
|
101
|
$Bio::Chado::Schema::Result::Map::Featurerange::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
|
|
37
|
use strict; |
|
6
|
|
|
|
|
16
|
|
|
6
|
|
|
|
|
99
|
|
13
|
6
|
|
|
6
|
|
26
|
use warnings; |
|
6
|
|
|
|
|
15
|
|
|
6
|
|
|
|
|
132
|
|
14
|
|
|
|
|
|
|
|
15
|
6
|
|
|
6
|
|
26
|
use base 'DBIx::Class::Core'; |
|
6
|
|
|
|
|
25
|
|
|
6
|
|
|
|
|
1452
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
__PACKAGE__->table("featurerange"); |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
__PACKAGE__->add_columns( |
23
|
|
|
|
|
|
|
"featurerange_id", |
24
|
|
|
|
|
|
|
{ |
25
|
|
|
|
|
|
|
data_type => "integer", |
26
|
|
|
|
|
|
|
is_auto_increment => 1, |
27
|
|
|
|
|
|
|
is_nullable => 0, |
28
|
|
|
|
|
|
|
sequence => "featurerange_featurerange_id_seq", |
29
|
|
|
|
|
|
|
}, |
30
|
|
|
|
|
|
|
"featuremap_id", |
31
|
|
|
|
|
|
|
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
32
|
|
|
|
|
|
|
"feature_id", |
33
|
|
|
|
|
|
|
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
34
|
|
|
|
|
|
|
"leftstartf_id", |
35
|
|
|
|
|
|
|
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
36
|
|
|
|
|
|
|
"leftendf_id", |
37
|
|
|
|
|
|
|
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
38
|
|
|
|
|
|
|
"rightstartf_id", |
39
|
|
|
|
|
|
|
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
40
|
|
|
|
|
|
|
"rightendf_id", |
41
|
|
|
|
|
|
|
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
42
|
|
|
|
|
|
|
"rangestr", |
43
|
|
|
|
|
|
|
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
44
|
|
|
|
|
|
|
); |
45
|
|
|
|
|
|
|
__PACKAGE__->set_primary_key("featurerange_id"); |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
__PACKAGE__->belongs_to( |
49
|
|
|
|
|
|
|
"featuremap", |
50
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Map::Featuremap", |
51
|
|
|
|
|
|
|
{ featuremap_id => "featuremap_id" }, |
52
|
|
|
|
|
|
|
{ |
53
|
|
|
|
|
|
|
cascade_copy => 0, |
54
|
|
|
|
|
|
|
cascade_delete => 0, |
55
|
|
|
|
|
|
|
is_deferrable => 1, |
56
|
|
|
|
|
|
|
on_delete => "CASCADE", |
57
|
|
|
|
|
|
|
on_update => "CASCADE", |
58
|
|
|
|
|
|
|
}, |
59
|
|
|
|
|
|
|
); |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
__PACKAGE__->belongs_to( |
63
|
|
|
|
|
|
|
"leftendf", |
64
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Sequence::Feature", |
65
|
|
|
|
|
|
|
{ feature_id => "leftendf_id" }, |
66
|
|
|
|
|
|
|
{ |
67
|
|
|
|
|
|
|
cascade_copy => 0, |
68
|
|
|
|
|
|
|
cascade_delete => 0, |
69
|
|
|
|
|
|
|
is_deferrable => 1, |
70
|
|
|
|
|
|
|
join_type => "LEFT", |
71
|
|
|
|
|
|
|
on_delete => "CASCADE", |
72
|
|
|
|
|
|
|
on_update => "CASCADE", |
73
|
|
|
|
|
|
|
}, |
74
|
|
|
|
|
|
|
); |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
__PACKAGE__->belongs_to( |
78
|
|
|
|
|
|
|
"rightstartf", |
79
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Sequence::Feature", |
80
|
|
|
|
|
|
|
{ feature_id => "rightstartf_id" }, |
81
|
|
|
|
|
|
|
{ |
82
|
|
|
|
|
|
|
cascade_copy => 0, |
83
|
|
|
|
|
|
|
cascade_delete => 0, |
84
|
|
|
|
|
|
|
is_deferrable => 1, |
85
|
|
|
|
|
|
|
join_type => "LEFT", |
86
|
|
|
|
|
|
|
on_delete => "CASCADE", |
87
|
|
|
|
|
|
|
on_update => "CASCADE", |
88
|
|
|
|
|
|
|
}, |
89
|
|
|
|
|
|
|
); |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
__PACKAGE__->belongs_to( |
93
|
|
|
|
|
|
|
"rightendf", |
94
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Sequence::Feature", |
95
|
|
|
|
|
|
|
{ feature_id => "rightendf_id" }, |
96
|
|
|
|
|
|
|
{ |
97
|
|
|
|
|
|
|
cascade_copy => 0, |
98
|
|
|
|
|
|
|
cascade_delete => 0, |
99
|
|
|
|
|
|
|
is_deferrable => 1, |
100
|
|
|
|
|
|
|
on_delete => "CASCADE", |
101
|
|
|
|
|
|
|
on_update => "CASCADE", |
102
|
|
|
|
|
|
|
}, |
103
|
|
|
|
|
|
|
); |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
__PACKAGE__->belongs_to( |
107
|
|
|
|
|
|
|
"leftstartf", |
108
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Sequence::Feature", |
109
|
|
|
|
|
|
|
{ feature_id => "leftstartf_id" }, |
110
|
|
|
|
|
|
|
{ |
111
|
|
|
|
|
|
|
cascade_copy => 0, |
112
|
|
|
|
|
|
|
cascade_delete => 0, |
113
|
|
|
|
|
|
|
is_deferrable => 1, |
114
|
|
|
|
|
|
|
on_delete => "CASCADE", |
115
|
|
|
|
|
|
|
on_update => "CASCADE", |
116
|
|
|
|
|
|
|
}, |
117
|
|
|
|
|
|
|
); |
118
|
|
|
|
|
|
|
|
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
__PACKAGE__->belongs_to( |
121
|
|
|
|
|
|
|
"feature", |
122
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Sequence::Feature", |
123
|
|
|
|
|
|
|
{ feature_id => "feature_id" }, |
124
|
|
|
|
|
|
|
{ |
125
|
|
|
|
|
|
|
cascade_copy => 0, |
126
|
|
|
|
|
|
|
cascade_delete => 0, |
127
|
|
|
|
|
|
|
is_deferrable => 1, |
128
|
|
|
|
|
|
|
on_delete => "CASCADE", |
129
|
|
|
|
|
|
|
on_update => "CASCADE", |
130
|
|
|
|
|
|
|
}, |
131
|
|
|
|
|
|
|
); |
132
|
|
|
|
|
|
|
|
133
|
|
|
|
|
|
|
|
134
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader v0.07001 @ 2010-08-16 23:01:56 |
135
|
|
|
|
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:oi+AdlBgnuii2KQLfQLeuA |
136
|
|
|
|
|
|
|
|
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
# You can replace this text with custom content, and it will be preserved on regeneration |
139
|
|
|
|
|
|
|
1; |
140
|
|
|
|
|
|
|
|
141
|
|
|
|
|
|
|
__END__ |