maint: remove Travis stuff which has been replaced with Github actions (#325)
[bioperl-live.git] / lib / Bio / SeqI.pm
blobaed978ffd58f908bdcf127985d17e1e437d543a0
2 # BioPerl module for Bio::SeqI
4 # Please direct questions and support issues to <bioperl-l@bioperl.org>
6 # Cared for by Ewan Birney <birney@ebi.ac.uk>
8 # Copyright Ewan Birney
10 # You may distribute this module under the same terms as perl itself
12 # POD documentation - main docs before the code
14 =head1 NAME
16 Bio::SeqI - [Developers] Abstract Interface of Sequence (with features)
18 =head1 SYNOPSIS
20 # Bio::SeqI is the interface class for sequences.
22 # If you are a newcomer to bioperl, you should
23 # start with Bio::Seq documentation. This
24 # documentation is mainly for developers using
25 # Bioperl.
27 # Bio::SeqI implements Bio::PrimarySeqI
28 $seq = $seqobj->seq(); # actual sequence as a string
29 $seqstr = $seqobj->subseq(10,50);
31 # Bio::SeqI has annotationcollections
33 $ann = $seqobj->annotation(); # annotation object
35 # Bio::SeqI has sequence features
36 # features must implement Bio::SeqFeatureI
38 @features = $seqobj->get_SeqFeatures(); # just top level
39 @features = $seqobj->get_all_SeqFeatures(); # descend into sub features
41 =head1 DESCRIPTION
43 Bio::SeqI is the abstract interface of annotated Sequences. These
44 methods are those which you can be guaranteed to get for any Bio::SeqI.
45 For most users of the package the documentation (and methods) in this
46 class are not at useful - this is a developers only class which
47 defines what methods have to be implemented by other Perl objects to
48 comply to the Bio::SeqI interface. Go "perldoc Bio::Seq" or "man
49 Bio::Seq" for more information.
51 There aren't many method here, because too many complicated functions here
52 would prevent implementations which are just wrappers around a database or
53 similar delayed mechanisms.
55 Most of the clever stuff happens inside the SeqFeatureI system.
57 A good reference implementation is Bio::Seq which is a pure perl
58 implementation of this class with a lot of extra pieces for extra
59 manipulation. However, if you want to be able to use any sequence
60 object in your analysis, if you can do it just using these methods,
61 then you know you will be future proof and compatible with other
62 implementations of Seq.
64 =head1 FEEDBACK
66 =head2 Mailing Lists
68 User feedback is an integral part of the evolution of this and other
69 Bioperl modules. Send your comments and suggestions preferably to one
70 of the Bioperl mailing lists. Your participation is much appreciated.
72 bioperl-l@bioperl.org - General discussion
73 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
75 =head2 Support
77 Please direct usage questions or support issues to the mailing list:
79 I<bioperl-l@bioperl.org>
81 rather than to the module maintainer directly. Many experienced and
82 reponsive experts will be able look at the problem and quickly
83 address it. Please include a thorough description of the problem
84 with code and data examples if at all possible.
86 =head2 Reporting Bugs
88 Report bugs to the Bioperl bug tracking system to help us keep track
89 the bugs and their resolution. Bug reports can be submitted via the
90 web:
92 https://github.com/bioperl/bioperl-live/issues
94 =head1 AUTHOR - Ewan Birney
96 Email birney@ebi.ac.uk
99 =head1 APPENDIX
101 The rest of the documentation details each of the object
102 methods. Internal methods are usually preceded with a _
104 =cut
107 # Let the code begin...
110 package Bio::SeqI;
112 use strict;
115 # Object preamble - inherits from Bio::PrimarySeqI
117 use base qw(Bio::PrimarySeqI Bio::AnnotatableI Bio::FeatureHolderI);
119 =head2 get_SeqFeatures
121 Title : get_SeqFeatures
122 Usage : my @feats = $seq->get_SeqFeatures();
123 Function: retrieve just the toplevel sequence features attached to this seq
124 Returns : array of Bio::SeqFeatureI objects
125 Args : none
127 This method comes through extension of Bio::FeatureHolderI. See
128 L<Bio::FeatureHolderI> and L<Bio::SeqFeatureI> for more information.
130 =head2 get_all_SeqFeatures
132 Title : get_all_SeqFeatures
133 Usage : my @feats = $seq->get_all_SeqFeatures();
134 Function: returns all SeqFeatures, including sub SeqFeatures
135 Returns : an array of Bio::SeqFeatureI objects
136 Args : none
138 This method comes through extension of Bio::FeatureHolderI. See
139 L<Bio::FeatureHolderI> and L<Bio::SeqFeatureI> for more information.
141 =head2 feature_count
143 Title : feature_count
144 Usage : my $count = $seq->feature_count();
145 Function: Return the number of SeqFeatures attached to a sequence
146 Returns : integer representing the number of SeqFeatures
147 Args : none
149 This method comes through extension of Bio::FeatureHolderI. See
150 L<Bio::FeatureHolderI> for more information.
152 =head2 seq
154 Title : seq
155 Usage : my $string = $seq->seq();
156 Function: Retrieves the sequence string for the sequence object
157 Returns : string
158 Args : none
161 =cut
163 sub seq {
164 my ($self) = @_;
165 $self->throw_not_implemented();
168 =head2 write_GFF
170 Title : write_GFF
171 Usage : $seq->write_GFF(\*FILEHANDLE);
172 Function: Convenience method to write out all the sequence features
173 in GFF format to the provided filehandle (STDOUT by default)
174 Returns : none
175 Args : [optional] filehandle to write to (default is STDOUT)
178 =cut
180 sub write_GFF {
181 my ($self,$fh) = @_;
183 $fh || do { $fh = \*STDOUT; };
185 foreach my $sf ( $self->get_all_SeqFeatures() ) {
186 print $fh $sf->gff_string, "\n";
191 =head2 annotation
193 Title : annotation
194 Usage : my $ann = $seq->annotation($seq_obj);
195 Function: retrieve the attached annotation object
196 Returns : Bio::AnnotationCollectionI or none;
198 See L<Bio::AnnotationCollectionI> and L<Bio::Annotation::Collection>
199 for more information. This method comes through extension from
200 L<Bio::AnnotatableI>.
202 =head2 species
204 Title : species
205 Usage :
206 Function: Gets or sets the species
207 Example : my $species = $seq->species();
208 Returns : Bio::Species object
209 Args : Bio::Species object or none;
211 See L<Bio::Species> for more information
213 =cut
215 sub species {
216 my ($self) = @_;
217 $self->throw_not_implemented();
220 =head2 primary_seq
222 Title : primary_seq
223 Usage : my $primaryseq = $seq->primary_seq($newval)
224 Function: Retrieve the underlying Bio::PrimarySeqI object if available.
225 This is in the event one has a sequence with lots of features
226 but want to be able to narrow the object to just one with
227 the basics of a sequence (no features or annotations).
228 Returns : Bio::PrimarySeqI
229 Args : Bio::PrimarySeqI or none;
231 See L<Bio::PrimarySeqI> for more information
233 =cut
235 sub primary_seq {
236 my ($self) = @_;
237 $self->throw_not_implemented;