# $Id: Restriction.pm,v 1.2 2004/11/24 02:28:02 cmungall Exp $ # # This GO module is maintained by Chris Mungall # # see also - http://www.geneontology.org # - http://www.godatabase.org/dev # # You may distribute this module under the same terms as perl itself package GO::Model::Restriction; =head1 NAME GO::Model::Restriction; =head1 SYNOPSIS =head1 DESCRIPTION =cut use Carp qw(cluck confess); use Exporter; use GO::Utils qw(rearrange); use GO::Model::Root; use strict; use vars qw(@ISA); @ISA = qw(GO::Model::Root Exporter); sub _valid_params { return qw(property_name value); } 1;