#!/usr/bin/perl
package Display_seq;


#####################################################################
# Author : Mira Kaloper 
# Date   : March 2002
# 
# See documentation for the usage details. 
#    
# http:///usr/local/dicty/www_dictybase/db/lib/html/dictyBase/programmer/Display_seq.html
#
#####################################################################

use strict;
use DBI;
use Carp;
use vars qw (@ISA %allowedConstructors);
use dictyBase_Table_LOBInsert;
@ISA = qw (dictyBase_Table_LOBInsert); # base class

# Class Globals

# put column names in the hash below, that are able to uniquely
# specify a row in the table

%allowedConstructors = ('display_seq_no'=>undef,
                        'feature_no:display_seq_type'=>undef);



####################################################################
sub DESTROY{
####################################################################
# nothing needs to be done 

}


####################################################################
1; #################################################################
####################################################################

=pod

=head1 Name

Display_seq.pm

=head1 Description

This perl object (Display_seq.pm) acts as container for sequences database. Once an object has been instantiated, several methods are available to retrieve the attributes of the object. 


=head1 Instantiating a Display_seq Object

To instantiate a new Display_seq object, you may use following syntax: 

my $Obj = display_seq->new(dbh=>$dbh,
			   display_seq_no=>$display_seq_no);


where $dbh is a valid database handle to either dictyBase or SDEV. All passed in values must be valid values for the columns that were provided, otherwise the script will die, with an appropriate error message.
 


=head1 Insert and delete Methods


You can also use 'Insert' class method and 'delete' 
instance method for inserting new row into database or 
deleting info for a specified row. 

See dictyBase_Table documentation for usage details :

Insert : http:///usr/local/dicty/www_dictybase/db/lib/staff/dictyBase/programmer/dictyBase_Table.html#Insert_Method

Delete : http:///usr/local/dicty/www_dictybase/db/lib/staff/dictyBase/programmer/dictyBase_Table.html#Delete_Method


=head1 Author

Mira Kaloper

mkaloper@genome.stanford.edu

=cut











