The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Bio::Phylo::Models::Substitution::Dna::F81;
use strict;
use base 'Bio::Phylo::Models::Substitution::Dna';

# subst rate
sub get_rate {
    my $self = shift;
    return $self->get_pi(shift);
}
sub get_nst { 1 }
1;