1 package SGN
::Schema
::PcrExperiment
;
3 # Created by DBIx::Class::Schema::Loader
4 # DO NOT MODIFY THE FIRST PART OF THIS FILE
9 use base
'DBIx::Class::Core';
14 SGN::Schema::PcrExperiment
18 __PACKAGE__
->table("pcr_experiment");
22 =head2 pcr_experiment_id
27 sequence: 'pcr_experiment_pcr_experiment_id_seq'
35 =head2 mg_concentration
63 =head2 experiment_type_id
75 =head2 additional_enzymes
111 __PACKAGE__
->add_columns(
114 data_type
=> "bigint",
115 is_auto_increment
=> 1,
117 sequence
=> "pcr_experiment_pcr_experiment_id_seq",
120 { data_type
=> "bigint", is_foreign_key
=> 1, is_nullable
=> 1 },
122 { data_type
=> "real", is_nullable
=> 1 },
124 { data_type
=> "bigint", is_nullable
=> 1 },
126 { data_type
=> "bigint", is_foreign_key
=> 1, is_nullable
=> 1 },
128 { data_type
=> "bigint", is_foreign_key
=> 1, is_nullable
=> 1 },
130 { data_type
=> "varchar", is_nullable
=> 1, size
=> 255 },
131 "experiment_type_id",
132 { data_type
=> "bigint", is_foreign_key
=> 1, is_nullable
=> 1 },
134 { data_type
=> "bigint", is_foreign_key
=> 1, is_nullable
=> 1 },
135 "additional_enzymes",
136 { data_type
=> "varchar", is_nullable
=> 1, size
=> 1023 },
138 { data_type
=> "varchar", is_nullable
=> 1, size
=> 4 },
140 { data_type
=> "boolean", default_value
=> \"false
", is_nullable => 1 },
142 { data_type => "bigint
", is_nullable => 1 },
144 { data_type => "varchar
", is_nullable => 1, size => 7 },
146 { data_type => "integer
", is_nullable => 1 },
148 __PACKAGE__->set_primary_key("pcr_experiment_id
");
152 =head2 marker_experiments
156 Related object: L<SGN::Schema::MarkerExperiment>
160 __PACKAGE__->has_many(
161 "marker_experiments
",
162 "SGN
::Schema
::MarkerExperiment
",
163 { "foreign
.pcr_experiment_id
" => "self
.pcr_experiment_id
" },
164 { cascade_copy => 0, cascade_delete => 0 },
167 =head2 pcr_exp_accessions
171 Related object: L<SGN::Schema::PcrExpAccession>
175 __PACKAGE__->has_many(
176 "pcr_exp_accessions
",
177 "SGN
::Schema
::PcrExpAccession
",
178 { "foreign
.pcr_experiment_id
" => "self
.pcr_experiment_id
" },
179 { cascade_copy => 0, cascade_delete => 0 },
186 Related object: L<SGN::Schema::Map>
190 __PACKAGE__->belongs_to(
193 { map_id => "map_id
" },
197 on_delete => "CASCADE
",
198 on_update => "CASCADE
",
206 Related object: L<SGN::Schema::Sequence>
210 __PACKAGE__->belongs_to(
212 "SGN
::Schema
::Sequence
",
213 { sequence_id => "primer_id_fwd
" },
217 on_delete => "CASCADE
",
218 on_update => "CASCADE
",
226 Related object: L<SGN::Schema::Marker>
230 __PACKAGE__->belongs_to(
232 "SGN
::Schema
::Marker
",
233 { marker_id => "marker_id
" },
237 on_delete => "CASCADE
",
238 on_update => "CASCADE
",
246 Related object: L<SGN::Schema::Sequence>
250 __PACKAGE__->belongs_to(
252 "SGN
::Schema
::Sequence
",
253 { sequence_id => "primer_id_rev
" },
257 on_delete => "CASCADE
",
258 on_update => "CASCADE
",
262 =head2 experiment_type
266 Related object: L<SGN::Schema::ExperimentType>
270 __PACKAGE__->belongs_to(
272 "SGN
::Schema
::ExperimentType
",
273 { experiment_type_id => "experiment_type_id
" },
277 on_delete => "CASCADE
",
278 on_update => "CASCADE
",
282 =head2 pcr_experiment_sequences
286 Related object: L<SGN::Schema::PcrExperimentSequence>
290 __PACKAGE__->has_many(
291 "pcr_experiment_sequences
",
292 "SGN
::Schema
::PcrExperimentSequence
",
293 { "foreign
.pcr_experiment_id
" => "self
.pcr_experiment_id
" },
294 { cascade_copy => 0, cascade_delete => 0 },
298 # Created by DBIx::Class::Schema::Loader v0.07002 @ 2012-03-03 12:35:39
299 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Czl2BcSeTOW18DpeUyqtdw
302 # You can replace this text with custom content, and it will be preserved on regeneration