Bio::Phylo::Util::Dependency - Utility class for importing external


Bio-Phylo documentation Contained in the Bio-Phylo distribution.

Index


Code Index:

NAME

Top

Bio::Phylo::Util::Dependency - Utility class for importing external dependencies. No serviceable parts inside.

DESCRIPTION

Top

This package is for internal usage by Bio::Phylo, to help import optional 3rd party dependencies (and report their absence) in a uniform way.

SEE ALSO

Top

Bio::Phylo::Manual

Also see the manual: Bio::Phylo::Manual and http://rutgervos.blogspot.com.

CITATION

Top

If you use Bio::Phylo in published research, please cite it:

Rutger A Vos, Jason Caravas, Klaas Hartmann, Mark A Jensen and Chase Miller, 2011. Bio::Phylo - phyloinformatic analysis using Perl. BMC Bioinformatics 12:63. http://dx.doi.org/10.1186/1471-2105-12-63

REVISION

Top

 $Id: IDPool.pm 1593 2011-02-27 15:26:04Z rvos $


Bio-Phylo documentation Contained in the Bio-Phylo distribution.

package Bio::Phylo::Util::Dependency;

BEGIN {
    use Bio::Phylo::Util::Exceptions 'throw';
    use Bio::Phylo::Util::CONSTANT 'looks_like_class';

    sub import {
        my $class = shift;
        looks_like_class $_ for @_;
    }
}
1;
__END__