Bio::LiveSeq ChainI
SummaryPackage variablesSynopsisDescriptionGeneral documentationMethods
Toolbar
WebCvsRaw content
Summary
Bio::LiveSeq::ChainI - Double linked chain data structure
Package variables
No package variables defined.
Included modules
Bio::LiveSeq::Chain 2 .6
Carp qw ( croak )
strict
Synopsis
  #documentation needed
Description
This class generates and manipulates generic double linked list, chain,
that can be used to manage biological sequences.
The advantages over strings or plain arrays is the ease of tracking
changes (mutations) in the elements (sequence). The other side of the
coin is that these structures need consideraly more memory, but that
is cheap and constantly inceasing resource in computers.
Methods
array2chain
No description
Code
chain2string
No description
Code
chain2string_verbose
No description
Code
chain_length
No description
Code
check_chain
No description
Code
down_chain2string
No description
Code
down_chain2string_verbose
No description
Code
down_element
No description
Code
down_elements
No description
Code
down_get_label_at_pos
No description
Code
down_get_pos_of_label
No description
Code
down_get_value_at_pos
No description
Code
down_labels
No description
Code
down_pos_of_element
No description
Code
down_set_value_at_pos
No description
Code
down_subchain_length
No description
Code
elements
No description
Code
end
No description
Code
get_label_at_pos
No description
Code
get_pos_of_label
No description
Code
get_value_at_label
No description
Code
get_value_at_pos
No description
Code
invert_chain
No description
Code
is_downstream
No description
Code
is_upstream
No description
Code
label_exists
No description
Code
mutate_element
No description
Code
newDescriptionCode
pos_of_element
No description
Code
postinsert_array
No description
Code
postinsert_string
No description
Code
praeinsert_array
No description
Code
praeinsert_string
No description
Code
preinsert_array
No description
Code
preinsert_string
No description
Code
set_value_at_label
No description
Code
set_value_at_pos
No description
Code
splice_chain
No description
Code
start
No description
Code
string2chain
No description
Code
subchain_length
No description
Code
up_chain2string
No description
Code
up_chain2string_verbose
No description
Code
up_element
No description
Code
up_elements
No description
Code
up_get_label_at_pos
No description
Code
up_get_pos_of_label
No description
Code
up_get_value_at_pos
No description
Code
up_labels
No description
Code
up_pos_of_element
No description
Code
up_set_value_at_pos
No description
Code
up_subchain_length
No description
Code
Methods description
newcode    nextTop
    
Title : new
Usage : $chain = Bio::LiveSeq::ChainI->new(-string => "thequickbrownfoxjumpsoverthelazydog",
-offset => 3 );
OR $chain = Bio::LiveSeq::ChainI->new(-array => \@array,
-offset => 3 );
Function: generates a new Bio::LiveSeq:ChainI
Returns : a new Chain
Args : string
OR arrayreference
AND optional offset to create element labels
Methods code
array2chaindescriptionprevnextTop
sub array2chain {
  shift @_; # so that it doesn't pass the object reference
return Bio::LiveSeq::Chain::array2chain(@_); } #
}
chain2stringdescriptionprevnextTop
sub chain2string {
  croak "ambiguous method call. Explicit down_ or up_";
}
chain2string_verbosedescriptionprevnextTop
sub chain2string_verbose {
  croak "ambiguous method call. Explicit down_ or up_";
}
chain_lengthdescriptionprevnextTop
sub chain_length {
  return Bio::LiveSeq::Chain::chain_length(@_);
}
check_chaindescriptionprevnextTop
sub check_chain {
  return Bio::LiveSeq::Chain::check_chain(@_);
}
down_chain2stringdescriptionprevnextTop
sub down_chain2string {
  return Bio::LiveSeq::Chain::down_chain2string(@_);
}
down_chain2string_verbosedescriptionprevnextTop
sub down_chain2string_verbose {
  return Bio::LiveSeq::Chain::down_chain2string_verbose(@_);
}
down_elementdescriptionprevnextTop
sub down_element {
  return Bio::LiveSeq::Chain::down_element(@_);
}
down_elementsdescriptionprevnextTop
sub down_elements {
  return Bio::LiveSeq::Chain::down_elements(@_);
}

1;
}
down_get_label_at_posdescriptionprevnextTop
sub down_get_label_at_pos {
  return Bio::LiveSeq::Chain::down_get_label_at_pos(@_);
}
down_get_pos_of_labeldescriptionprevnextTop
sub down_get_pos_of_label {
  return Bio::LiveSeq::Chain::down_get_pos_of_label(@_);
}
#
}
down_get_value_at_posdescriptionprevnextTop
sub down_get_value_at_pos {
  return Bio::LiveSeq::Chain::down_get_value_at_pos(@_);
}
down_labelsdescriptionprevnextTop
sub down_labels {
  return Bio::LiveSeq::Chain::down_labels(@_);
}
down_pos_of_elementdescriptionprevnextTop
sub down_pos_of_element {
  croak "old method name. use: up_pos_of_label";
  return Bio::LiveSeq::Chain::down_pos_of_element(@_);
}
down_set_value_at_posdescriptionprevnextTop
sub down_set_value_at_pos {
  return Bio::LiveSeq::Chain::down_set_value_at_pos(@_);
}
down_subchain_lengthdescriptionprevnextTop
sub down_subchain_length {
  return Bio::LiveSeq::Chain::down_subchain_length(@_);
}
elementsdescriptionprevnextTop
sub elements {
  return Bio::LiveSeq::Chain::down_elements(@_);
}
enddescriptionprevnextTop
sub end {
  return Bio::LiveSeq::Chain::end(@_);
}
get_label_at_posdescriptionprevnextTop
sub get_label_at_pos {
  croak "ambiguous method call. Explicit down_ or up_";
}
get_pos_of_labeldescriptionprevnextTop
sub get_pos_of_label {
  croak "ambiguous method call. Explicit down_ or up_";
}
get_value_at_labeldescriptionprevnextTop
sub get_value_at_label {
  return Bio::LiveSeq::Chain::get_value_at_label(@_);
}
get_value_at_posdescriptionprevnextTop
sub get_value_at_pos {
  croak "ambiguous method call. Explicit down_ or up_";
}
invert_chaindescriptionprevnextTop
sub invert_chain {
  return Bio::LiveSeq::Chain::invert_chain(@_);
}
is_downstreamdescriptionprevnextTop
sub is_downstream {
  return Bio::LiveSeq::Chain::is_downstream(@_);
}
is_upstreamdescriptionprevnextTop
sub is_upstream {
  return Bio::LiveSeq::Chain::is_upstream(@_);
}
label_existsdescriptionprevnextTop
sub label_exists {
  return Bio::LiveSeq::Chain::label_exists(@_);
}
mutate_elementdescriptionprevnextTop
sub mutate_element {
  croak "Old method name, please update code to: set_value_at_label";
}

# new as of version 2.33 of Chain.pm
}
newdescriptionprevnextTop
sub new {
  my ($thing, %args) = @_;
  my $class = ref($thing) || $thing;
  my $obj;

  if ($args{-string}) {
    $obj = $thing->string2chain($args{-string}, $args{-offset});
  } elsif ($args{-array}) {
    $obj = $thing->array2chain($args{-array}, $args{-offset});
  } else {
    croak "$class not initialized properly";
  }

  $obj = bless $obj, $class;
  return $obj;
}

# added as of 1.9
}
pos_of_elementdescriptionprevnextTop
sub pos_of_element {
  croak "ambiguous and old method name. use: down_pos_of_label";
}
postinsert_arraydescriptionprevnextTop
sub postinsert_array {
  return Bio::LiveSeq::Chain::postinsert_array(@_);
}
postinsert_stringdescriptionprevnextTop
sub postinsert_string {
  return Bio::LiveSeq::Chain::postinsert_string(@_);
}
praeinsert_arraydescriptionprevnextTop
sub praeinsert_array {
  return Bio::LiveSeq::Chain::praeinsert_array(@_);
}
praeinsert_stringdescriptionprevnextTop
sub praeinsert_string {
  return Bio::LiveSeq::Chain::praeinsert_string(@_);
}
preinsert_arraydescriptionprevnextTop
sub preinsert_array {
  return Bio::LiveSeq::Chain::praeinsert_array(@_);
}
preinsert_stringdescriptionprevnextTop
sub preinsert_string {
  return Bio::LiveSeq::Chain::praeinsert_string(@_);
}
set_value_at_labeldescriptionprevnextTop
sub set_value_at_label {
  return Bio::LiveSeq::Chain::set_value_at_label(@_);
}
set_value_at_posdescriptionprevnextTop
sub set_value_at_pos {
  croak "ambiguous method call. Explicit down_ or up_";
}
splice_chaindescriptionprevnextTop
sub splice_chain {
  return Bio::LiveSeq::Chain::splice_chain(@_);
}
startdescriptionprevnextTop
sub start {
  return Bio::LiveSeq::Chain::start(@_);
}
string2chaindescriptionprevnextTop
sub string2chain {
  shift @_; # so that it doesn't pass the object reference
return Bio::LiveSeq::Chain::string2chain(@_);
}
subchain_lengthdescriptionprevnextTop
sub subchain_length {
  croak "ambiguous method call. Explicit down_ or up_";
}
up_chain2stringdescriptionprevnextTop
sub up_chain2string {
  return Bio::LiveSeq::Chain::up_chain2string(@_);
}
up_chain2string_verbosedescriptionprevnextTop
sub up_chain2string_verbose {
  return Bio::LiveSeq::Chain::up_chain2string_verbose(@_);
}
up_elementdescriptionprevnextTop
sub up_element {
  return Bio::LiveSeq::Chain::up_element(@_);
}
up_elementsdescriptionprevnextTop
sub up_elements {
  return Bio::LiveSeq::Chain::up_elements(@_);
}
up_get_label_at_posdescriptionprevnextTop
sub up_get_label_at_pos {
  return Bio::LiveSeq::Chain::up_get_label_at_pos(@_);
}
up_get_pos_of_labeldescriptionprevnextTop
sub up_get_pos_of_label {
  return Bio::LiveSeq::Chain::up_get_pos_of_label(@_);
}
up_get_value_at_posdescriptionprevnextTop
sub up_get_value_at_pos {
  return Bio::LiveSeq::Chain::up_get_value_at_pos(@_);
}
up_labelsdescriptionprevnextTop
sub up_labels {
  return Bio::LiveSeq::Chain::up_labels(@_);
}
up_pos_of_elementdescriptionprevnextTop
sub up_pos_of_element {
  croak "old method name. use: down_pos_of_label";
  return Bio::LiveSeq::Chain::up_pos_of_element(@_);
}
up_set_value_at_posdescriptionprevnextTop
sub up_set_value_at_pos {
  return Bio::LiveSeq::Chain::up_set_value_at_pos(@_);
}
up_subchain_lengthdescriptionprevnextTop
sub up_subchain_length {
  return Bio::LiveSeq::Chain::up_subchain_length(@_);
}

# these have to be deleted and changed names to conform to terminology
}
General documentation
FEEDBACKTop
Mailing ListsTop
User feedback is an integral part of the evolution of this and other
Bioperl modules. Send your comments and suggestions preferably to one
of the Bioperl mailing lists. Your participation is much appreciated.
  bioperl-l@bioperl.org             - General discussion
http://bio.perl.org/MailList.html - About the mailing lists
Reporting BugsTop
Report bugs to the Bioperl bug tracking system to help us keep track
the bugs and their resolution. Bug reports can be submitted via email
or the web:
  bioperl-bugs@bio.perl.org
http://bugzilla.bioperl.org/
AUTHOR - Joseph A.L. InsanaTop
Email: Insana@ebi.ac.uk, jinsana@gmx.net
Address:
     EMBL Outstation, European Bioinformatics Institute
Wellcome Trust Genome Campus, Hinxton
Cambs. CB10 1SD, United Kingdom
APPENDIXTop
The rest of the documentation details each of the object
methods. Internal methods are usually preceded with a _