line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Bio::Chado::Schema::Result::CellLine::CellLineCvterm; |
2
|
|
|
|
|
|
|
BEGIN { |
3
|
6
|
|
|
6
|
|
2615
|
$Bio::Chado::Schema::Result::CellLine::CellLineCvterm::AUTHORITY = 'cpan:RBUELS'; |
4
|
|
|
|
|
|
|
} |
5
|
|
|
|
|
|
|
BEGIN { |
6
|
6
|
|
|
6
|
|
112
|
$Bio::Chado::Schema::Result::CellLine::CellLineCvterm::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
|
|
|
|
|
101
|
|
13
|
6
|
|
|
6
|
|
26
|
use warnings; |
|
6
|
|
|
|
|
15
|
|
|
6
|
|
|
|
|
125
|
|
14
|
|
|
|
|
|
|
|
15
|
6
|
|
|
6
|
|
26
|
use base 'DBIx::Class::Core'; |
|
6
|
|
|
|
|
12
|
|
|
6
|
|
|
|
|
1164
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
__PACKAGE__->table("cell_line_cvterm"); |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
__PACKAGE__->add_columns( |
23
|
|
|
|
|
|
|
"cell_line_cvterm_id", |
24
|
|
|
|
|
|
|
{ |
25
|
|
|
|
|
|
|
data_type => "integer", |
26
|
|
|
|
|
|
|
is_auto_increment => 1, |
27
|
|
|
|
|
|
|
is_nullable => 0, |
28
|
|
|
|
|
|
|
sequence => "cell_line_cvterm_cell_line_cvterm_id_seq", |
29
|
|
|
|
|
|
|
}, |
30
|
|
|
|
|
|
|
"cell_line_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
|
|
|
|
|
|
|
"rank", |
37
|
|
|
|
|
|
|
{ data_type => "integer", default_value => 0, is_nullable => 0 }, |
38
|
|
|
|
|
|
|
); |
39
|
|
|
|
|
|
|
__PACKAGE__->set_primary_key("cell_line_cvterm_id"); |
40
|
|
|
|
|
|
|
__PACKAGE__->add_unique_constraint( |
41
|
|
|
|
|
|
|
"cell_line_cvterm_c1", |
42
|
|
|
|
|
|
|
["cell_line_id", "cvterm_id", "pub_id", "rank"], |
43
|
|
|
|
|
|
|
); |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
__PACKAGE__->belongs_to( |
47
|
|
|
|
|
|
|
"pub", |
48
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Pub::Pub", |
49
|
|
|
|
|
|
|
{ pub_id => "pub_id" }, |
50
|
|
|
|
|
|
|
{ |
51
|
|
|
|
|
|
|
cascade_copy => 0, |
52
|
|
|
|
|
|
|
cascade_delete => 0, |
53
|
|
|
|
|
|
|
is_deferrable => 1, |
54
|
|
|
|
|
|
|
on_delete => "CASCADE", |
55
|
|
|
|
|
|
|
on_update => "CASCADE", |
56
|
|
|
|
|
|
|
}, |
57
|
|
|
|
|
|
|
); |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
__PACKAGE__->belongs_to( |
61
|
|
|
|
|
|
|
"cvterm", |
62
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Cv::Cvterm", |
63
|
|
|
|
|
|
|
{ cvterm_id => "cvterm_id" }, |
64
|
|
|
|
|
|
|
{ |
65
|
|
|
|
|
|
|
cascade_copy => 0, |
66
|
|
|
|
|
|
|
cascade_delete => 0, |
67
|
|
|
|
|
|
|
is_deferrable => 1, |
68
|
|
|
|
|
|
|
on_delete => "CASCADE", |
69
|
|
|
|
|
|
|
on_update => "CASCADE", |
70
|
|
|
|
|
|
|
}, |
71
|
|
|
|
|
|
|
); |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
__PACKAGE__->belongs_to( |
75
|
|
|
|
|
|
|
"cell_line", |
76
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::CellLine::CellLine", |
77
|
|
|
|
|
|
|
{ cell_line_id => "cell_line_id" }, |
78
|
|
|
|
|
|
|
{ |
79
|
|
|
|
|
|
|
cascade_copy => 0, |
80
|
|
|
|
|
|
|
cascade_delete => 0, |
81
|
|
|
|
|
|
|
is_deferrable => 1, |
82
|
|
|
|
|
|
|
on_delete => "CASCADE", |
83
|
|
|
|
|
|
|
on_update => "CASCADE", |
84
|
|
|
|
|
|
|
}, |
85
|
|
|
|
|
|
|
); |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
__PACKAGE__->has_many( |
89
|
|
|
|
|
|
|
"cell_line_cvtermprops", |
90
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::CellLine::CellLineCvtermprop", |
91
|
|
|
|
|
|
|
{ "foreign.cell_line_cvterm_id" => "self.cell_line_cvterm_id" }, |
92
|
|
|
|
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
93
|
|
|
|
|
|
|
); |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader v0.06001 @ 2010-04-16 14:33:36 |
97
|
|
|
|
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+1ptw7ahsJLoDYFD950Uhg |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
# You can replace this text with custom content, and it will be preserved on regeneration |
101
|
|
|
|
|
|
|
1; |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
__END__ |