1 package Bio
::DB
::SeqFeature
::NormalizedFeatureI
;
6 Bio::DB::SeqFeature::NormalizedFeatureI -- Interface for normalized features
14 This is an extremely simple interface that contains a single method,
15 subfeatures_are_normalized(). This method returns a true value.
17 Bio::DB::SeqFeature::Store feature classes will inherit this interface
18 to flag that they are able to store subfeatures in a normalized way
19 such that the subfeature is actually contained in the
20 Bio::DB::SeqFeature::Store database and the parent feature contains
21 only the subfeatures primary ID.
25 None, but the whole class design might be flawed.
30 L<Bio::DB::SeqFeature>,
31 L<Bio::DB::SeqFeature::Store>,
32 L<Bio::DB::SeqFeature::Segment>,
33 L<Bio::DB::SeqFeature::GFF3Loader>,
34 L<Bio::DB::SeqFeature::Store::DBI::mysql>,
35 L<Bio::DB::SeqFeature::Store::bdb>
39 Lincoln Stein E<lt>lstein@cshl.orgE<gt>.
41 Copyright (c) 2006 Cold Spring Harbor Laboratory.
43 This library is free software; you can redistribute it and/or modify
44 it under the same terms as Perl itself.
50 sub subfeatures_are_normalized
{ 1 }