3 # BioPerl module for Bio::DB::Flat::BDB::swiss
5 # Please direct questions and support issues to <bioperl-l@bioperl.org>
7 # Cared for by Lincoln Stein <lstein@cshl.org>
9 # You may distribute this module under the same terms as perl itself
11 # POD documentation - main docs before the code
15 Bio::DB::Flat::BDB::swiss - swissprot adaptor for Open-bio standard BDB-indexed flat file
23 This module allows swissprot files to be stored in Berkeley DB flat files
24 using the Open-Bio standard BDB-indexed flat file scheme. You should
25 not be using this directly, but instead use it via Bio::DB::Flat.
31 User feedback is an integral part of the evolution of this and other
32 Bioperl modules. Send your comments and suggestions preferably to one
33 of the Bioperl mailing lists. Your participation is much appreciated.
35 bioperl-l@bioperl.org - General discussion
36 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
40 Please direct usage questions or support issues to the mailing list:
42 I<bioperl-l@bioperl.org>
44 rather than to the module maintainer directly. Many experienced and
45 reponsive experts will be able look at the problem and quickly
46 address it. Please include a thorough description of the problem
47 with code and data examples if at all possible.
51 Report bugs to the Bioperl bug tracking system to help us keep track
52 the bugs and their resolution. Bug reports can be submitted via the
55 https://github.com/bioperl/bioperl-live/issues
61 =head1 AUTHOR - Lincoln Stein
63 Email - lstein@cshl.org
67 package Bio
::DB
::Flat
::BDB
::swiss
;
71 use base
qw(Bio::DB::Flat::BDB);
73 sub default_file_format
{ "swiss" }
75 sub default_primary_namespace
{
79 sub default_secondary_namespaces
{
80 return qw(ACC VERSION);
87 my $display_id = $seq->display_id;
88 my $accession = $seq->accession_number;
89 my $version = $seq->seq_version;
90 my $gi = $seq->primary_id;
92 $ids{ID
} = $display_id;
93 $ids{ACC
} = $accession if defined $accession;
94 $ids{VERSION
} = "$accession.$version" if defined $accession && defined $version;