Merge pull request #42 from solgenomics/topic/duplicate_image_warning
[cxgn-corelibs.git] / lib / SGN / Schema / FishResultComposite.pm
blob4b5b6b29f897efc8bb1c3658bff8ad113e346ddb
1 package SGN::Schema::FishResultComposite;
3 # Created by DBIx::Class::Schema::Loader
4 # DO NOT MODIFY THE FIRST PART OF THIS FILE
6 use strict;
7 use warnings;
9 use base 'DBIx::Class::Core';
12 =head1 NAME
14 SGN::Schema::FishResultComposite
16 =cut
18 __PACKAGE__->table("fish_result_composite");
20 =head1 ACCESSORS
22 =head2 fish_result_id
24 data_type: 'bigint'
25 default_value: '0)::bigint'
26 is_nullable: 0
28 =head2 map_id
30 data_type: 'bigint'
31 default_value: '0)::bigint'
32 is_nullable: 0
34 =head2 fish_experimenter_id
36 data_type: 'integer'
37 is_nullable: 1
39 =head2 experiment_name
41 data_type: 'varchar'
42 is_nullable: 1
43 size: 10
45 =head2 clone_id
47 data_type: 'bigint'
48 default_value: '0)::bigint'
49 is_nullable: 0
51 =head2 chromo_num
53 data_type: 'smallint'
54 default_value: '0)::smallint'
55 is_nullable: 0
57 =head2 chromo_arm
59 data_type: 'varchar'
60 default_value: 'P'
61 is_nullable: 0
62 size: 1
64 =head2 percent_from_centromere
66 data_type: 'real'
67 default_value: '0)::real'
68 is_nullable: 0
70 =head2 het_or_eu
72 data_type: 'varchar'
73 is_nullable: 1
74 size: 1
76 =head2 um_from_centromere
78 data_type: 'real'
79 is_nullable: 1
81 =head2 um_from_arm_end
83 data_type: 'real'
84 is_nullable: 1
86 =head2 um_from_arm_border
88 data_type: 'real'
89 is_nullable: 1
91 =head2 mbp_from_arm_end
93 data_type: 'real'
94 is_nullable: 1
96 =head2 mbp_from_centromere
98 data_type: 'real'
99 is_nullable: 1
101 =head2 mbp_from_arm_border
103 data_type: 'real'
104 is_nullable: 1
106 =head2 experiment_group
108 data_type: 'varchar'
109 is_nullable: 1
110 size: 12
112 =cut
114 __PACKAGE__->add_columns(
115 "fish_result_id",
116 { data_type => "bigint", default_value => "0)::bigint", is_nullable => 0 },
117 "map_id",
118 { data_type => "bigint", default_value => "0)::bigint", is_nullable => 0 },
119 "fish_experimenter_id",
120 { data_type => "integer", is_nullable => 1 },
121 "experiment_name",
122 { data_type => "varchar", is_nullable => 1, size => 10 },
123 "clone_id",
124 { data_type => "bigint", default_value => "0)::bigint", is_nullable => 0 },
125 "chromo_num",
127 data_type => "smallint",
128 default_value => "0)::smallint",
129 is_nullable => 0,
131 "chromo_arm",
132 { data_type => "varchar", default_value => "P", is_nullable => 0, size => 1 },
133 "percent_from_centromere",
134 { data_type => "real", default_value => "0)::real", is_nullable => 0 },
135 "het_or_eu",
136 { data_type => "varchar", is_nullable => 1, size => 1 },
137 "um_from_centromere",
138 { data_type => "real", is_nullable => 1 },
139 "um_from_arm_end",
140 { data_type => "real", is_nullable => 1 },
141 "um_from_arm_border",
142 { data_type => "real", is_nullable => 1 },
143 "mbp_from_arm_end",
144 { data_type => "real", is_nullable => 1 },
145 "mbp_from_centromere",
146 { data_type => "real", is_nullable => 1 },
147 "mbp_from_arm_border",
148 { data_type => "real", is_nullable => 1 },
149 "experiment_group",
150 { data_type => "varchar", is_nullable => 1, size => 12 },
152 __PACKAGE__->set_primary_key("fish_result_id");
155 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
156 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:nJPjSahTyJeD1dzWQt2KLg
159 # You can replace this text with custom content, and it will be preserved on regeneration