maint: restructure to use Dist::Zilla
[bioperl-live.git] / lib / Bio / Factory / LocationFactoryI.pm
blobfe01a8989c117126ac9d962a6aeed00048f6efe2
2 # BioPerl module for Bio::Factory::LocationFactoryI
4 # Please direct questions and support issues to <bioperl-l@bioperl.org>
6 # Cared for by Hilmar Lapp <hlapp at gmx.net>
8 # Copyright Hilmar Lapp
10 # You may distribute this module under the same terms as perl itself
13 # (c) Hilmar Lapp, hlapp at gnf.org, 2002.
14 # (c) GNF, Genomics Institute of the Novartis Research Foundation, 2002.
16 # You may distribute this module under the same terms as perl itself.
17 # Refer to the Perl Artistic License (see the license accompanying this
18 # software package, or see http://www.perl.com/language/misc/Artistic.html)
19 # for the terms under which you may use, modify, and redistribute this module.
21 # THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
22 # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
23 # MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
26 # POD documentation - main docs before the code
28 =head1 NAME
30 Bio::Factory::LocationFactoryI - A factory interface for generating locations from a string
32 =head1 SYNOPSIS
34 # Do not use directly, see Bio::Factory::LocationFactory for example
35 use Bio::Factory::FTLocationFactory;
36 my $locfact = Bio::Factory::FTLocationFactory->new();
37 my $location = $locfact->from_string("1..200");
38 print $location->start(), " ", $location->end(), " ", $location->strand,"\n";
40 =head1 DESCRIPTION
42 An interface for Location Factories which generate Bio::LocationI
43 objects from a string.
45 =head1 FEEDBACK
47 =head2 Mailing Lists
49 User feedback is an integral part of the evolution of this and other
50 Bioperl modules. Send your comments and suggestions preferably to
51 the Bioperl mailing list. Your participation is much appreciated.
53 bioperl-l@bioperl.org - General discussion
54 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
56 =head2 Support
58 Please direct usage questions or support issues to the mailing list:
60 I<bioperl-l@bioperl.org>
62 rather than to the module maintainer directly. Many experienced and
63 reponsive experts will be able look at the problem and quickly
64 address it. Please include a thorough description of the problem
65 with code and data examples if at all possible.
67 =head2 Reporting Bugs
69 Report bugs to the Bioperl bug tracking system to help us keep track
70 of the bugs and their resolution. Bug reports can be submitted via the
71 web:
73 https://github.com/bioperl/bioperl-live/issues
75 =head1 AUTHOR - Hilmar Lapp
77 Email hlapp at gmx.net
79 =head1 APPENDIX
81 The rest of the documentation details each of the object methods.
82 Internal methods are usually preceded with a _
84 =cut
87 # Let the code begin...
90 package Bio::Factory::LocationFactoryI;
91 use strict;
92 use Carp;
94 use base qw(Bio::Root::RootI);
96 =head2 from_string
98 Title : from_string
99 Usage : $loc = $locfactory->from_string("100..200");
100 Function: Parses the given string and returns a Bio::LocationI implementing
101 object representing the location encoded by the string.
103 Different implementations may support different encodings. An
104 example of a commonly used encoding is the Genbank feature table
105 encoding of locations.
106 Example :
107 Returns : A Bio::LocationI implementing object.
108 Args : A string.
111 =cut
113 sub from_string{
114 my ($self,@args) = @_;
116 $self->throw_not_implemented();