[bug 3148] switch default to "expasy" until we can work out REST service interface
[bioperl-live.git] / Bio / DB / SeqI.pm
blob3b59a3b8b4dd3d996e0f05f31a4441eb51e48314
4 # BioPerl module for Bio::DB::SeqI.pm
6 # Please direct questions and support issues to <bioperl-l@bioperl.org>
8 # Cared for by Ewan Birney <birney@ebi.ac.uk>
10 # Copyright Ewan Birney
12 # You may distribute this module under the same terms as perl itself
14 # POD documentation - main docs before the code
16 =head1 NAME
18 Bio::DB::SeqI - Abstract Interface for Sequence databases
20 =head1 SYNOPSIS
22 # get a Bio::DB::SeqI somehow
24 $seq = $seqdb->get_Seq_by_id('some-id');
25 $seq = $seqdb->get_Seq_by_acc('some-accession-number');
27 @ids = $seqdb->get_all_ids();
28 $stream = $seqdb->get_PrimarySeq_stream();
29 while((my $seq = $stream->next_seq()) {
30 # $seq is a PrimarySeqI compliant object
34 =head1 DESCRIPTION
36 Abstract interface for a sequence database
38 =head1 FEEDBACK
40 =head2 Mailing Lists
42 User feedback is an integral part of the evolution of this and other
43 Bioperl modules. Send your comments and suggestions preferably to one
44 of the Bioperl mailing lists. Your participation is much appreciated.
46 bioperl-l@bioperl.org - General discussion
47 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
49 =head2 Support
51 Please direct usage questions or support issues to the mailing list:
53 I<bioperl-l@bioperl.org>
55 rather than to the module maintainer directly. Many experienced and
56 reponsive experts will be able look at the problem and quickly
57 address it. Please include a thorough description of the problem
58 with code and data examples if at all possible.
60 =head2 Reporting Bugs
62 Report bugs to the Bioperl bug tracking system to help us keep track
63 the bugs and their resolution. Bug reports can be submitted via the
64 web:
66 http://bugzilla.open-bio.org/
68 =head1 AUTHOR - Ewan Birney
70 Email birney@ebi.ac.uk
72 =head1 APPENDIX
74 The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _
76 =cut
79 # Let the code begin...
82 package Bio::DB::SeqI;
83 use strict;
86 use base qw(Bio::DB::RandomAccessI);
88 =head1 Methods inherieted from Bio::DB::RandomAccessI
90 =head2 get_Seq_by_id
92 Title : get_Seq_by_id
93 Usage : $seq = $db->get_Seq_by_id('ROA1_HUMAN')
94 Function: Gets a Bio::Seq object by its name
95 Returns : a Bio::Seq object
96 Args : the id (as a string) of a sequence
97 Throws : "id does not exist" exception
100 =cut
102 =head2 get_Seq_by_acc
104 Title : get_Seq_by_acc
105 Usage : $seq = $db->get_Seq_by_acc('X77802');
106 Function: Gets a Bio::Seq object by accession number
107 Returns : A Bio::Seq object
108 Args : accession number (as a string)
109 Throws : "acc does not exist" exception
112 =cut
114 =head1 Methods [that were] specific for Bio::DB::SeqI
116 =head2 get_PrimarySeq_stream
118 Title : get_PrimarySeq_stream
119 Usage : $stream = get_PrimarySeq_stream
120 Function: Makes a Bio::SeqIO compliant object
121 which provides a single method, next_seq
122 Returns : Bio::SeqIO
123 Args : none
125 =cut
127 sub get_PrimarySeq_stream{
128 my ($self,@args) = @_;
130 $self->throw("Object did not provide a PrimarySeq stream object");
133 =head2 get_all_primary_ids
135 Title : get_all_ids
136 Usage : @ids = $seqdb->get_all_primary_ids()
137 Function: gives an array of all the primary_ids of the
138 sequence objects in the database. These
139 maybe ids (display style) or accession numbers
140 or something else completely different - they
141 *are not* meaningful outside of this database
142 implementation.
143 Example :
144 Returns : an array of strings
145 Args : none
148 =cut
150 sub get_all_primary_ids{
151 my ($self,@args) = @_;
152 $self->throw("Object did not provide a get_all_ids method");
156 =head2 get_Seq_by_primary_id
158 Title : get_Seq_by_primary_id
159 Usage : $seq = $db->get_Seq_by_primary_id($primary_id_string);
160 Function: Gets a Bio::Seq object by the primary id. The primary
161 id in these cases has to come from $db->get_all_primary_ids.
162 There is no other way to get (or guess) the primary_ids
163 in a database.
165 The other possibility is to get Bio::PrimarySeqI objects
166 via the get_PrimarySeq_stream and the primary_id field
167 on these objects are specified as the ids to use here.
168 Returns : A Bio::Seq object
169 Args : accession number (as a string)
170 Throws : "acc does not exist" exception
173 =cut
175 sub get_Seq_by_primary_id {
176 my ($self,@args) = @_;
178 $self->throw("Abstract database call of get_Seq_by_primary_id. Your database has not implemented this method!");