~ubuntu-branches/ubuntu/trusty/bioperl/trusty

« back to all changes in this revision

Viewing changes to Bio/SeqFeature/SiRNA/Pair.pm

  • Committer: Package Import Robot
  • Author(s): Charles Plessy
  • Date: 2013-09-22 13:39:48 UTC
  • mfrom: (3.1.11 sid)
  • Revision ID: package-import@ubuntu.com-20130922133948-c6z62zegjyp7ztou
Tags: 1.6.922-1
* New upstream release.
* Replaces and Breaks grinder (<< 0.5.3-3~) because of overlaping contents.
  Closes: #722910
* Stop Replacing and Breaking bioperl ( << 1.6.9 ): not needed anymore. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
           -fxgc        => 0.5,
31
31
           -tag         => { note => 'a note' } );
32
32
 
33
 
  $target_sequence->add_SeqFeature($pair);                                      
 
33
  $target_sequence->add_SeqFeature($pair);
34
34
 
35
35
=head1 DESCRIPTION
36
36
 
180
180
    }
181
181
    else {
182
182
        if ($self->has_tag('rank')) {
183
 
            my @ranks = $self->each_tag_value('rank');
 
183
            my @ranks = $self->get_tag_values('rank');
184
184
            return shift @ranks;
185
185
        }
186
186
        else {
226
226
    }
227
227
    else {
228
228
        if ($self->has_tag('fxGC')) {
229
 
            my @fxGCs = $self->each_tag_value('fxGC');
 
229
            my @fxGCs = $self->get_tag_values('fxGC');
230
230
            return shift @fxGCs;
231
231
        }
232
232
        else {