Skip to content

Commit

Permalink
add length so this matches to_string documentation (courtesy Paul Can…
Browse files Browse the repository at this point in the history
…talupo)
  • Loading branch information
Chris Fields committed Nov 20, 2010
1 parent d7685bd commit e9b25cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bio/Seq/PrimaryQual.pm
Expand Up @@ -461,7 +461,7 @@ sub qualat {
sub to_string {
my ($self,$out,$result) = shift;
$out = "qual: ".join(',',@{$self->qual()});
foreach (qw(display_id accession_number primary_id desc id)) {
foreach (qw(display_id accession_number primary_id desc id length)) {
$result = $self->$_();
if (!$result) { $result = "<unset>"; }
$out .= "$_: $result\n";
Expand Down

0 comments on commit e9b25cf

Please sign in to comment.