line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Bio::Chado::Schema::Result::Sequence::FeatureCvterm; |
2
|
|
|
|
|
|
|
BEGIN { |
3
|
6
|
|
|
6
|
|
2838
|
$Bio::Chado::Schema::Result::Sequence::FeatureCvterm::AUTHORITY = 'cpan:RBUELS'; |
4
|
|
|
|
|
|
|
} |
5
|
|
|
|
|
|
|
BEGIN { |
6
|
6
|
|
|
6
|
|
108
|
$Bio::Chado::Schema::Result::Sequence::FeatureCvterm::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
|
|
|
|
|
12
|
|
|
6
|
|
|
|
|
107
|
|
13
|
6
|
|
|
6
|
|
27
|
use warnings; |
|
6
|
|
|
|
|
12
|
|
|
6
|
|
|
|
|
163
|
|
14
|
|
|
|
|
|
|
|
15
|
6
|
|
|
6
|
|
32
|
use base 'DBIx::Class::Core'; |
|
6
|
|
|
|
|
14
|
|
|
6
|
|
|
|
|
1356
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
__PACKAGE__->table("feature_cvterm"); |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
__PACKAGE__->add_columns( |
23
|
|
|
|
|
|
|
"feature_cvterm_id", |
24
|
|
|
|
|
|
|
{ |
25
|
|
|
|
|
|
|
data_type => "integer", |
26
|
|
|
|
|
|
|
is_auto_increment => 1, |
27
|
|
|
|
|
|
|
is_nullable => 0, |
28
|
|
|
|
|
|
|
sequence => "feature_cvterm_feature_cvterm_id_seq", |
29
|
|
|
|
|
|
|
}, |
30
|
|
|
|
|
|
|
"feature_id", |
31
|
|
|
|
|
|
|
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
32
|
|
|
|
|
|
|
"cvterm_id", |
33
|
|
|
|
|
|
|
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
34
|
|
|
|
|
|
|
"pub_id", |
35
|
|
|
|
|
|
|
{ data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, |
36
|
|
|
|
|
|
|
"is_not", |
37
|
|
|
|
|
|
|
{ data_type => "boolean", default_value => \"false", is_nullable => 0 }, |
38
|
|
|
|
|
|
|
"rank", |
39
|
|
|
|
|
|
|
{ data_type => "integer", default_value => 0, is_nullable => 0 }, |
40
|
|
|
|
|
|
|
); |
41
|
|
|
|
|
|
|
__PACKAGE__->set_primary_key("feature_cvterm_id"); |
42
|
|
|
|
|
|
|
__PACKAGE__->add_unique_constraint( |
43
|
|
|
|
|
|
|
"feature_cvterm_c1", |
44
|
|
|
|
|
|
|
["feature_id", "cvterm_id", "pub_id", "rank"], |
45
|
|
|
|
|
|
|
); |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
__PACKAGE__->belongs_to( |
49
|
|
|
|
|
|
|
"feature", |
50
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Sequence::Feature", |
51
|
|
|
|
|
|
|
{ feature_id => "feature_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
|
|
|
|
|
|
|
"pub", |
64
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Pub::Pub", |
65
|
|
|
|
|
|
|
{ pub_id => "pub_id" }, |
66
|
|
|
|
|
|
|
{ |
67
|
|
|
|
|
|
|
cascade_copy => 0, |
68
|
|
|
|
|
|
|
cascade_delete => 0, |
69
|
|
|
|
|
|
|
is_deferrable => 1, |
70
|
|
|
|
|
|
|
on_delete => "CASCADE", |
71
|
|
|
|
|
|
|
on_update => "CASCADE", |
72
|
|
|
|
|
|
|
}, |
73
|
|
|
|
|
|
|
); |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
__PACKAGE__->belongs_to( |
77
|
|
|
|
|
|
|
"cvterm", |
78
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Cv::Cvterm", |
79
|
|
|
|
|
|
|
{ cvterm_id => "cvterm_id" }, |
80
|
|
|
|
|
|
|
{ |
81
|
|
|
|
|
|
|
cascade_copy => 0, |
82
|
|
|
|
|
|
|
cascade_delete => 0, |
83
|
|
|
|
|
|
|
is_deferrable => 1, |
84
|
|
|
|
|
|
|
on_delete => "CASCADE", |
85
|
|
|
|
|
|
|
on_update => "CASCADE", |
86
|
|
|
|
|
|
|
}, |
87
|
|
|
|
|
|
|
); |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
__PACKAGE__->has_many( |
91
|
|
|
|
|
|
|
"feature_cvterm_dbxrefs", |
92
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Sequence::FeatureCvtermDbxref", |
93
|
|
|
|
|
|
|
{ "foreign.feature_cvterm_id" => "self.feature_cvterm_id" }, |
94
|
|
|
|
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
95
|
|
|
|
|
|
|
); |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
__PACKAGE__->has_many( |
99
|
|
|
|
|
|
|
"feature_cvtermprops", |
100
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Sequence::FeatureCvtermprop", |
101
|
|
|
|
|
|
|
{ "foreign.feature_cvterm_id" => "self.feature_cvterm_id" }, |
102
|
|
|
|
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
103
|
|
|
|
|
|
|
); |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
__PACKAGE__->has_many( |
107
|
|
|
|
|
|
|
"feature_cvterm_pubs", |
108
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Sequence::FeatureCvtermPub", |
109
|
|
|
|
|
|
|
{ "foreign.feature_cvterm_id" => "self.feature_cvterm_id" }, |
110
|
|
|
|
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
111
|
|
|
|
|
|
|
); |
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader v0.06001 @ 2010-04-16 14:33:36 |
115
|
|
|
|
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jysoH2wjUgaPP8iBY7IHcw |
116
|
|
|
|
|
|
|
|
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
# You can replace this text with custom content, and it will be preserved on regeneration |
119
|
|
|
|
|
|
|
1; |
120
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
__END__ |