=head1 NAME
Bio::Phylo::Manual - High-level user guide
=head1 DESCRIPTION
This is the manual for Bio::Phylo. Bio::Phylo is a perl5 package for
phylogenetic analysis. For installation instructions, read the README
file in the root directory of the distribution. The stable URL for the
most recent distribution is L.
More documentation can be found as embedded L in the classes
of this release. Note that Bio::Phylo uses inheritance to a great extent,
such that any one object may inherit additional methods from a number
of superclasses. In such cases, this will be noted in the "SEE ALSO"
section of that class's documentation. The Bio::Phylo documentation
system rewards the methodical reader who follows these document links.
=head1 INSTANT GRATIFICATION
The following sections will demonstrate some of the basic functionality,
with immediate, useful results.
=head2 ONE-LINERS
One-liners are commands run immediately from the command line, using
the C<-e '...command...'> switch, invoking the interpreter directly.
Often, you'll include the C<-MFoo::Bar> switch to include
C at runtime. (See L for more info on executing
the interpreter.) B: in the following examples,
switch the quotes around, i.e. use double quotes where single quotes are
used and vice versa.
=over
=item B
=item Problem
No concept is valid in Perl if it cannot be expressed in a one-liner.
For the Bio::Phylo package, some operations can be performed using
a single expression from the command line. This is a rather long
one-liner, but it serves to demonstrate.
=item Solution
perl -MBio::Phylo::IO=parse -e 'print \
parse(-format=>"newick",-string=>"((A,B),C);")->first->calc_imbalance'
=item Discussion
The C<-MModule> switch includes a module the way you would use
C