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

« back to all changes in this revision

Viewing changes to Bio/Seq/Meta/Array.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:
548
548
            $self->{force_flush} = 0;
549
549
        }
550
550
    }
 
551
 
551
552
    return $self->{force_flush};
552
553
}
553
554
 
583
584
}
584
585
 
585
586
 
586
 
 
587
587
=head2 is_flush
588
588
 
589
589
 Title   : is_flush
611
611
        $sticky .= "$name " if $self->length != $self->named_meta_length($name);
612
612
    } else {
613
613
        foreach my $m ($self->meta_names) {
614
 
            $sticky .= "$m " if $self->length != $self->named_meta_length($m);
 
614
            $sticky .= "$m " if ($self->named_meta_length($m) > 0) && ($self->length != $self->named_meta_length($m)) ;
615
615
        }
616
616
    }
617
617