| Bio-Chado-Schema documentation | Contained in the Bio-Chado-Schema distribution. |
Bio::Chado::Schema::Composite::FeatureDifference
size of gap between two features. must be abutting or disjoint
data_type: integer default_value: undef is_nullable: 1
data_type: integer default_value: undef is_nullable: 1
data_type: smallint default_value: undef is_nullable: 1
data_type: integer default_value: undef is_nullable: 1
data_type: integer default_value: undef is_nullable: 1
data_type: integer default_value: undef is_nullable: 1
| Bio-Chado-Schema documentation | Contained in the Bio-Chado-Schema distribution. |
package Bio::Chado::Schema::Composite::FeatureDifference; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE use strict; use warnings; use base 'DBIx::Class::Core';
__PACKAGE__->table("feature_difference");
__PACKAGE__->add_columns( "subject_id", { data_type => "integer", default_value => undef, is_nullable => 1 }, "object_id", { data_type => "integer", default_value => undef, is_nullable => 1 }, "srcfeature_id", { data_type => "smallint", default_value => undef, is_nullable => 1 }, "fmin", { data_type => "integer", default_value => undef, is_nullable => 1 }, "fmax", { data_type => "integer", default_value => undef, is_nullable => 1 }, "strand", { data_type => "integer", default_value => undef, is_nullable => 1 }, ); # Created by DBIx::Class::Schema::Loader v0.05002 @ 2010-02-18 11:21:50 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:w5yxRn1IioojNnjCIBaKFw # You can replace this text with custom content, and it will be preserved on regeneration 1;