4 CXGN::Cview::Label::SequencedBACLabel - a class for drawing sequence BAC labels.
8 The sequenced BAC labels should always be rendered in yellow. Therefore, this class overrides the get_text_color() and the get_line_color() methods of the CXGN::Cview::Label class to always returns yellow. The setter has no effect in this class. This class is used by the CXGN::Cview::Marker::SequencedBAC class.
12 Lukas Mueller (lam87@cornell.edu)
16 This class implements the following functions:
22 use CXGN
::Cview
::Label
;
24 package CXGN
::Cview
::Label
::SequencedBACLabel
;
26 use base qw
/ CXGN::Cview::Label /;
32 Arguments: same as CXGN::Cview::Label class.
41 my $self = $class->SUPER::new
(@_);
45 =head2 function get_text_color()
47 Synopsis: overridden to always return yellow.
57 return (200, 200, 80);
60 =head2 function get_line_color()
62 Synopsis: overridden to always return yellow.
72 return (200, 200, 80);