File: FeatureBase.pm

package info (click to toggle)
libbio-graphics-perl 2.40-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,276 kB
  • sloc: perl: 21,801; makefile: 14
file content (36 lines) | stat: -rwxr-xr-x 702 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package Bio::Graphics::FeatureBase;

=head1 NAME

Bio::Graphics::FeatureBase - Compatibility module

=head1 SYNOPSIS

This module has been replaced by Bio::SeqFeature::Lite but exists
only for compatibility with legacy applications.

=cut

use strict;

use base 'Bio::SeqFeature::Lite';
1;

__END__

=head1 SEE ALSO

L<Bio::Graphics::Feature>, L<Bio::Graphics::FeatureFile>,
L<Bio::Graphics::Panel>,L<Bio::Graphics::Glyph>, L<GD>

=head1 AUTHOR

Lincoln Stein E<lt>lstein@cshl.orgE<gt>.

Copyright (c) 2006 Cold Spring Harbor Laboratory

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.  See DISCLAIMER.txt for
disclaimers of warranty.

=cut