~ubuntu-branches/ubuntu/hoary/bioperl/hoary

« back to all changes in this revision

Viewing changes to Bio/Factory/MapFactoryI.pm

  • Committer: Bazaar Package Importer
  • Author(s): Matt Hope
  • Date: 2004-04-18 14:24:11 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040418142411-gr92uexquw4w8liq
Tags: 1.4-1
* New upstream release
* Examples and working code are installed by default to usr/bin,
  this has been moved to usr/share/doc/bioperl/bin

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: MapFactoryI.pm,v 1.3 2001/12/14 17:20:17 jason Exp $
 
1
# $Id: MapFactoryI.pm,v 1.5 2002/10/22 07:45:14 lapp Exp $
2
2
#
3
3
# BioPerl module for Bio::Factory::MapFactoryI
4
4
#
48
48
email or the web:
49
49
 
50
50
  bioperl-bugs@bioperl.org
51
 
  http://bioperl.org/bioperl-bugs/
 
51
  http://bugzilla.bioperl.org/
52
52
 
53
53
=head1 AUTHOR - Jason Stajich
54
54
 
83
83
 Title   : next_map
84
84
 Usage   : my $map = $factory->next_map;
85
85
 Function: Get a map from the factory
86
 
 Returns : Bio::Map::MapI
 
86
 Returns : L<Bio::Map::MapI>
87
87
 Args    : none
88
88
 
89
89
=cut
90
90
 
91
91
sub next_map{
92
92
   my ($self,@args) = @_;
93
 
   $self->_abstractDeath('next_map');
 
93
   $self->throw_not_implemented();
94
94
}
95
95
 
96
96
=head2 write_map
99
99
 Usage   : $factory->write_map($map);
100
100
 Function: Write a map out through the factory
101
101
 Returns : none
102
 
 Args    : Bio::Map::MapI
 
102
 Args    : L<Bio::Map::MapI>
103
103
 
104
104
=cut
105
105
 
106
106
sub write_map{
107
107
   my ($self,@args) = @_;
108
 
   $self->_abstractDeath('write_map');
 
108
   $self->throw_not_implemented();
109
109
}
110
110
 
111
111
1;