GOBO::Base


GOBO documentation Contained in the GOBO distribution.

Index


Code Index:

NAME

GOBO::Base

DESCRIPTION

base class for all objects. Intended to be compatible with BioPerl/BioMoose.


GOBO documentation Contained in the GOBO distribution.

package GOBO::Base;
use Moose;
use strict;

# separate verbosity and strictness/exceptions. Global settings override local
# ones, but this can be overridden in child classes
has 'verbose' => (
    is   => 'rw',
    isa  => 'Bool',
    default => $ENV{BIOPERL_DEBUG} || 0
    );


1;

__END__