[Bioperl-guts-l] bioperl-live/Bio/Graphics Glyph.pm,1.79,1.80
Lincoln Stein
lstein at pub.open-bio.org
Tue Jul 12 13:35:41 EDT 2005
Update of /home/repository/bioperl/bioperl-live/Bio/Graphics
In directory pub.open-bio.org:/tmp/cvs-serv16161/Bio/Graphics
Modified Files:
Glyph.pm
Log Message:
xyplot now handles negative points correctly, though the scale could do with more work; found and corrected a bug in Glyph which causes extra bottom padding to be applied in some circumstances
Index: Glyph.pm
===================================================================
RCS file: /home/repository/bioperl/bioperl-live/Bio/Graphics/Glyph.pm,v
retrieving revision 1.79
retrieving revision 1.80
diff -C2 -d -r1.79 -r1.80
*** Glyph.pm 11 Jul 2005 21:23:18 -0000 1.79
--- Glyph.pm 12 Jul 2005 17:35:39 -0000 1.80
***************
*** 547,551 ****
$highest = $height > $highest ? $height : $highest;
}
! return $self->{layout_height} = $highest + $self->pad_top + $self->pad_bottom;
}
--- 547,551 ----
$highest = $height > $highest ? $height : $highest;
}
! return $self->{layout_height} = $highest; # + $self->pad_top + $self->pad_bottom; INCORRECTLY ADDING THESE TWICE
}
More information about the Bioperl-guts-l
mailing list