2 # BioPerl module for Bio::Seq::SeqFactory
4 # Please direct questions and support issues to <bioperl-l@bioperl.org>
6 # Cared for by Jason Stajich <jason@bioperl.org>
8 # Copyright Jason Stajich
10 # You may distribute this module under the same terms as perl itself
12 # POD documentation - main docs before the code
16 Bio::Seq::SeqFactory - Instantiation of generic Bio::PrimarySeqI (or derived) objects through a factory
20 use Bio::Seq::SeqFactory;
21 my $factory = Bio::Seq::SeqFactory->new();
22 my $primaryseq = $factory->create( -seq => 'WYRAVLC',
25 # Create Bio::Seq instead of Bio::PrimarySeq objects:
26 my $factory = Bio::Seq::SeqFactory->new( -type => 'Bio::Seq' );
31 This object will build L<Bio::PrimarySeqI> and L<Bio::SeqI> objects
38 User feedback is an integral part of the evolution of this and other
39 Bioperl modules. Send your comments and suggestions preferably to
40 the Bioperl mailing list. Your participation is much appreciated.
42 bioperl-l@bioperl.org - General discussion
43 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
47 Please direct usage questions or support issues to the mailing list:
49 I<bioperl-l@bioperl.org>
51 rather than to the module maintainer directly. Many experienced and
52 reponsive experts will be able look at the problem and quickly
53 address it. Please include a thorough description of the problem
54 with code and data examples if at all possible.
58 Report bugs to the Bioperl bug tracking system to help us keep track
59 of the bugs and their resolution. Bug reports can be submitted via the
62 https://github.com/bioperl/bioperl-live/issues
64 =head1 AUTHOR - Jason Stajich
66 Email jason@bioperl.org
70 The rest of the documentation details each of the object methods.
71 Internal methods are usually preceded with a _
76 # Let the code begin...
79 package Bio
::Seq
::SeqFactory
;
83 use base
qw(Bio::Root::Root Bio::Factory::SequenceFactoryI);
88 Usage : my $obj = Bio::Seq::SeqFactory->new();
89 Function: Builds a new Bio::Seq::SeqFactory object
90 Returns : Bio::Seq::SeqFactory
91 Args : -type => string, name of a PrimarySeqI derived class
92 This is optional. Default=Bio::PrimarySeq.
97 my($class,@args) = @_;
98 my $self = $class->SUPER::new
(@args);
99 my ($type) = $self->_rearrange([qw(TYPE)], @args);
100 if( ! defined $type ) {
101 $type = 'Bio::PrimarySeq';
111 Usage : my $seq = $seqbuilder->create(-seq => 'CAGT', -id => 'name');
112 Function: Instantiates new Bio::SeqI (or one of its child classes)
113 This object allows us to genericize the instantiation of sequence
115 Returns : Bio::PrimarySeq object (default)
116 The return type is configurable using new(-type =>"...").
117 Args : initialization parameters specific to the type of sequence
118 object we want. Typically
125 my ($self,@args) = @_;
126 return $self->type->new(-verbose
=> $self->verbose, @args);
132 Usage : $obj->type($newval)
134 Returns : value of type
135 Args : newvalue (optional)
141 my ($self, $value) = @_;
142 if (defined $value) {
143 eval "require $value";
144 if( $@
) { $self->throw("$@: Unrecognized Sequence type for SeqFactory '$value'");}
146 my $a = bless {},$value;
147 unless( $a->isa('Bio::PrimarySeqI') ||
148 $a->isa('Bio::Seq::QualI' ) ) {
149 $self->throw("Must provide a valid Bio::PrimarySeqI or Bio::Seq::QualI or child class to SeqFactory Not $value");
151 $self->{'type'} = $value;
153 return $self->{'type'};