line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Bio::Chado::Schema::Result::Genetic::Genotype; |
2
|
|
|
|
|
|
|
BEGIN { |
3
|
6
|
|
|
6
|
|
2588
|
$Bio::Chado::Schema::Result::Genetic::Genotype::AUTHORITY = 'cpan:RBUELS'; |
4
|
|
|
|
|
|
|
} |
5
|
|
|
|
|
|
|
BEGIN { |
6
|
6
|
|
|
6
|
|
100
|
$Bio::Chado::Schema::Result::Genetic::Genotype::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
|
|
|
|
|
14
|
|
|
6
|
|
|
|
|
105
|
|
13
|
6
|
|
|
6
|
|
26
|
use warnings; |
|
6
|
|
|
|
|
15
|
|
|
6
|
|
|
|
|
125
|
|
14
|
|
|
|
|
|
|
|
15
|
6
|
|
|
6
|
|
28
|
use base 'DBIx::Class::Core'; |
|
6
|
|
|
|
|
11
|
|
|
6
|
|
|
|
|
1158
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
__PACKAGE__->table("genotype"); |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
__PACKAGE__->add_columns( |
23
|
|
|
|
|
|
|
"genotype_id", |
24
|
|
|
|
|
|
|
{ |
25
|
|
|
|
|
|
|
data_type => "integer", |
26
|
|
|
|
|
|
|
is_auto_increment => 1, |
27
|
|
|
|
|
|
|
is_nullable => 0, |
28
|
|
|
|
|
|
|
sequence => "genotype_genotype_id_seq", |
29
|
|
|
|
|
|
|
}, |
30
|
|
|
|
|
|
|
"name", |
31
|
|
|
|
|
|
|
{ data_type => "text", is_nullable => 1 }, |
32
|
|
|
|
|
|
|
"uniquename", |
33
|
|
|
|
|
|
|
{ data_type => "text", is_nullable => 0 }, |
34
|
|
|
|
|
|
|
"description", |
35
|
|
|
|
|
|
|
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
36
|
|
|
|
|
|
|
); |
37
|
|
|
|
|
|
|
__PACKAGE__->set_primary_key("genotype_id"); |
38
|
|
|
|
|
|
|
__PACKAGE__->add_unique_constraint("genotype_c1", ["uniquename"]); |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
__PACKAGE__->has_many( |
42
|
|
|
|
|
|
|
"feature_genotypes", |
43
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Genetic::FeatureGenotype", |
44
|
|
|
|
|
|
|
{ "foreign.genotype_id" => "self.genotype_id" }, |
45
|
|
|
|
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
46
|
|
|
|
|
|
|
); |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
__PACKAGE__->has_many( |
50
|
|
|
|
|
|
|
"nd_experiment_genotypes", |
51
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::NaturalDiversity::NdExperimentGenotype", |
52
|
|
|
|
|
|
|
{ "foreign.genotype_id" => "self.genotype_id" }, |
53
|
|
|
|
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
54
|
|
|
|
|
|
|
); |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
__PACKAGE__->has_many( |
58
|
|
|
|
|
|
|
"phendescs", |
59
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Genetic::Phendesc", |
60
|
|
|
|
|
|
|
{ "foreign.genotype_id" => "self.genotype_id" }, |
61
|
|
|
|
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
62
|
|
|
|
|
|
|
); |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
__PACKAGE__->has_many( |
66
|
|
|
|
|
|
|
"phenotype_comparison_genotype1s", |
67
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Genetic::PhenotypeComparison", |
68
|
|
|
|
|
|
|
{ "foreign.genotype1_id" => "self.genotype_id" }, |
69
|
|
|
|
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
70
|
|
|
|
|
|
|
); |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
__PACKAGE__->has_many( |
74
|
|
|
|
|
|
|
"phenotype_comparison_genotype2s", |
75
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Genetic::PhenotypeComparison", |
76
|
|
|
|
|
|
|
{ "foreign.genotype2_id" => "self.genotype_id" }, |
77
|
|
|
|
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
78
|
|
|
|
|
|
|
); |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
__PACKAGE__->has_many( |
82
|
|
|
|
|
|
|
"phenstatements", |
83
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Genetic::Phenstatement", |
84
|
|
|
|
|
|
|
{ "foreign.genotype_id" => "self.genotype_id" }, |
85
|
|
|
|
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
86
|
|
|
|
|
|
|
); |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
__PACKAGE__->has_many( |
90
|
|
|
|
|
|
|
"stock_genotypes", |
91
|
|
|
|
|
|
|
"Bio::Chado::Schema::Result::Stock::StockGenotype", |
92
|
|
|
|
|
|
|
{ "foreign.genotype_id" => "self.genotype_id" }, |
93
|
|
|
|
|
|
|
{ cascade_copy => 0, cascade_delete => 0 }, |
94
|
|
|
|
|
|
|
); |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
# Created by DBIx::Class::Schema::Loader v0.07001 @ 2010-08-16 23:01:56 |
98
|
|
|
|
|
|
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/TjrozFzjptRGcbXXJZI6Q |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
# You can replace this text with custom content, and it will be preserved on regeneration |
102
|
|
|
|
|
|
|
1; |
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
__END__ |