/usr/share/perl5/Bio/Graphics/FeatureBase.pm is in libbio-graphics-perl 2.40-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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
|