~ubuntu-branches/ubuntu/raring/bioperl/raring

« back to all changes in this revision

Viewing changes to Bio/Taxonomy/FactoryI.pm

  • Committer: Bazaar Package Importer
  • Author(s): Charles Plessy
  • Date: 2008-03-18 14:44:57 UTC
  • mfrom: (4 hardy)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20080318144457-1jjoztrvqwf0gruk
* debian/control:
  - Removed MIA Matt Hope (dopey) from the Uploaders field.
    Thank you for your work, Matt. I hope you are doing well.
  - Downgraded some recommended package to the 'Suggests' priority,
    according to the following discussion on Upstream's mail list.
    http://bioperl.org/pipermail/bioperl-l/2008-March/027379.html
    (Closes: #448890)
* debian/copyright converted to machine-readable format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
=head1 DESCRIPTION
16
16
 
 
17
NB: This module has been deprecated.
 
18
 
17
19
$factory-E<gt>fetch is a general method to fetch Taxonomy by either NCBI
18
20
taxid or any types of names.
19
21
 
40
42
=cut
41
43
 
42
44
package Bio::Taxonomy::FactoryI;
43
 
use vars qw(@ISA);
44
45
use strict;
45
46
 
46
 
use Bio::Root::Root;
47
47
 
48
 
@ISA = qw(Bio::Root::Root);
 
48
use base qw(Bio::Root::Root);
49
49
 
50
50
=head2 fetch
51
51