| Bio-Graphics documentation | Contained in the Bio-Graphics distribution. |
Bio::Graphics::Glyph::wiggle_density - A density plot compatible with dense "wig"data
See <Bio::Graphics::Panel> and <Bio::Graphics::Glyph>.
This glyph works like the regular density but takes value data in Bio::Graphics::Wiggle file format:
reference = chr1 ChipCHIP Feature1 1..10000 wigfile=./test.wig;wigstart=0 ChipCHIP Feature2 10001..20000 wigfile=./test.wig;wigstart=656 ChipCHIP Feature3 25001..35000 wigfile=./test.wig;wigstart=1312
The "wigfile" attribute gives a relative or absolute pathname to a Bio::Graphics::Wiggle format file. The optional "wigstart" option gives the offset to the start of the data. If not specified, a linear search will be used to find the data. The data consist of a packed binary representation of the values in the feature, using a constant step such as present in tiling array data.
The same as the regular graded_segments glyph, except that the following options are recognized:
Name Value Description
---- ----- -----------
basedir path Path to be used to resolve "wigfile" and "densefile"
tags giving relative paths. Default is to use the
current working directory. Absolute wigfile &
densefile paths will not be changed.
autoscale "local" or "global"
If one or more of min_score and max_score options
are absent, then these values will be calculated
automatically. The "autoscale" option controls how
the calculation is done. The "local" value will
scale values according to the minimum and maximum
values present in the window being graphed. "global"
will use chromosome-wide statistics for the entire
wiggle or dense file to find min and max values.
smoothing method name Smoothing method: one of "mean", "max", "min" or "none"
smoothing_window
integer Number of values across which data should be smoothed.
bicolor_pivot
name Where to pivot the two colors when drawing bicolor plots.
Options are "mean" and "zero". A numeric value can
also be provided.
pos_color color When drawing bicolor plots, the fill color to use for values
that are above the pivot point.
neg_color color When drawing bicolor plots, the fill color to use for values
that are below the pivot point.
The glyph expects one or more of the following tags (attributes) in feature it renders:
Name Value Description
---- ----- -----------
wigfile path name Path to the Bio::Graphics::Wiggle file for vales.
(required)
densefile path name Path to a Bio::Graphics::DenseFeature object
(deprecated)
denseoffset integer Integer offset to where the data begins in the
Bio::Graphics::DenseFeature file (deprecated)
densesize integer Integer size of the data in the Bio::Graphics::DenseFeature
file (deprecated)
Please report them.
Bio::Graphics::Panel, Bio::Graphics::Glyph, Bio::Graphics::Glyph::arrow, Bio::Graphics::Glyph::cds, Bio::Graphics::Glyph::crossbox, Bio::Graphics::Glyph::diamond, Bio::Graphics::Glyph::dna, Bio::Graphics::Glyph::dot, Bio::Graphics::Glyph::ellipse, Bio::Graphics::Glyph::extending_arrow, Bio::Graphics::Glyph::generic, Bio::Graphics::Glyph::graded_segments, Bio::Graphics::Glyph::heterogeneous_segments, Bio::Graphics::Glyph::line, Bio::Graphics::Glyph::pinsertion, Bio::Graphics::Glyph::primers, Bio::Graphics::Glyph::rndrect, Bio::Graphics::Glyph::segments, Bio::Graphics::Glyph::ruler_arrow, Bio::Graphics::Glyph::toomany, Bio::Graphics::Glyph::transcript, Bio::Graphics::Glyph::transcript2, Bio::Graphics::Glyph::translation, Bio::Graphics::Glyph::allele_tower, Bio::DB::GFF, Bio::SeqI, Bio::SeqFeatureI, Bio::Das, GD
Lincoln Stein <steinl@cshl.edu>.
Copyright (c) 2007 Cold Spring Harbor Laboratory
This package and its accompanying libraries is free software; you can redistribute it and/or modify it under the terms of the GPL (either version 1, or at your option, any later version) or the Artistic License 2.0. Refer to LICENSE for the full license text. In addition, please see DISCLAIMER.txt for disclaimers of warranty.
| Bio-Graphics documentation | Contained in the Bio-Graphics distribution. |
package Bio::Graphics::Glyph::wiggle_density; # $Id: wiggle_density.pm,v 1.8 2009/10/06 20:36:04 lstein Exp $ use strict; use base qw(Bio::Graphics::Glyph::box Bio::Graphics::Glyph::smoothing Bio::Graphics::Glyph::wiggle_minmax); use File::Spec; sub my_description { return <<END; This glyph draws quantitative data as a heatmap. Higher-intensity parts of the feature will be drawn with more saturation. For this glyph to work, the feature must define one of the following tags: wigfile -- a path to a Bio::Graphics::Wiggle file wigdata -- Wiggle data in the Bio::Graphics::Wiggle "wif" format, as created by \$wig->export_to_wif(). coverage-- a simple comma-delimited string containing the quantitative values, assumed to be one value per pixel. END } sub my_options { { basedir => [ 'string', undef, 'If a relative path is used for "wigfile", then this option provides', 'the base directory on which to resolve the path.' ], z_score_bounds => [ 'integer', 4, 'When using z_score autoscaling, this option controls how many standard deviations', 'above and below the mean to show.' ], autoscale => [ ['local','chromosome','global','z_score','clipped_global'], 'clipped_global', 'If set to "global" , then the minimum and maximum values of the XY plot', 'will be taken from the wiggle file as a whole. If set to "chromosome", then', 'scaling will be to minimum and maximum on the current chromosome.', '"clipped_global" is similar to "global", but clips the top and bottom values', 'to the multiples of standard deviations indicated by "z_score_bounds"', 'If set to "z_score", then the whole plot will be rescaled to z-scores in which', 'the "0" value corresponds to the mean across the genome, and the units correspond', 'to standard deviations above and below the mean. The number of SDs to show are', 'controlled by the "z_score_bound" option.', 'Otherwise, the plot will be', 'scaled to the minimum and maximum values of the region currently on display.', 'min_score and max_score override autoscaling if one or both are defined' ], }; } sub draw { my $self = shift; my ($gd,$left,$top,$partno,$total_parts) = @_; my $feature = $self->feature; my $drawnit; $self->panel->startGroup($gd); my ($wigfile) = eval{$feature->get_tag_values('wigfile')}; if ($wigfile) { $self->draw_wigfile($self->rel2abs($wigfile),@_); $drawnit++; } my ($wigdata) = eval{$feature->get_tag_values('wigdata')}; if ($wigdata) { $self->draw_wigdata($wigdata,@_); $drawnit++; } my ($densefile) = eval{$feature->get_tag_values('densefile')}; if ($densefile) { $self->draw_densefile($self->rel2abs($feature),$densefile,@_); $drawnit++; } my ($coverage) = eval{$feature->get_tag_values('coverage')}; if ($coverage) { $self->draw_coverage($feature,$coverage,@_); $drawnit++; } # support for BigWig/BigBed if ($feature->can('statistical_summary')) { my $stats = $feature->statistical_summary($self->width); my @vals = map {$_->{validCount} ? $_->{sumData}/$_->{validCount}:0} @$stats; $self->draw_coverage($feature,\@vals,@_); $drawnit++; } if ($drawnit) { $self->draw_label(@_) if $self->option('label'); $self->draw_description(@_) if $self->option('description'); $self->panel->endGroup($gd); return; } else { $self->panel->endGroup($gd); } return $self->SUPER::draw(@_); } sub draw_wigfile { my $self = shift; my $wigfile = shift; eval "require Bio::Graphics::Wiggle" unless Bio::Graphics::Wiggle->can('new'); my $wig = ref $wigfile &&a $wigfile->isa('Bio::Graphics::Wiggle') ? $wigfile : eval { Bio::Graphics::Wiggle->new($wigfile) }; unless ($wig) { warn $@; return $self->SUPER::draw(@_); } $self->wig($wig); $self->_draw_wigfile(@_); } sub draw_wigdata { my $self = shift; my $data = shift; my $wig = eval { Bio::Graphics::Wiggle->new() }; unless ($wig) { warn $@; return $self->SUPER::draw(@_); } $wig->import_from_wif64($data); $self->wig($wig); $self->_draw_wigfile(@_); } sub draw_coverage { my $self = shift; my $feature = shift; my $array = shift; $array = [split ',',$array] unless ref $array; return unless @$array; my ($gd,$left,$top) = @_; my ($start,$end) = $self->effective_bounds($feature); my $length = $end - $start + 1; my $bases_per_bin = ($end-$start)/@$array; my @parts; my $samples = $length < $self->panel->width ? $length : $self->panel->width; my $samples_per_base = $samples/$length; for (my $i=0;$i<$samples;$i++) { my $offset = $i/$samples_per_base; my $v = $array->[$offset/$bases_per_bin]; push @parts,$v; } my ($x1,$y1,$x2,$y2) = $self->bounds($left,$top); $self->draw_segment($gd, $start,$end, \@parts, $start,$end, 1,1, $x1,$y1,$x2,$y2); } sub effective_bounds { # copied from wiggle_xyplot -- ouch! my $self = shift; my $feature = shift; my $panel_start = $self->panel->start; my $panel_end = $self->panel->end; my $start = $feature->start>$panel_start ? $feature->start : $panel_start; my $end = $feature->end<$panel_end ? $feature->end : $panel_end; return ($start,$end); } sub _draw_wigfile { my $self = shift; my $wig = $self->wig; my ($gd,$left,$top) = @_; my $smoothing = $self->get_smoothing; my $smooth_window = $self->smooth_window; my $start = $self->smooth_start; my $end = $self->smooth_end; $wig->window($smooth_window); $wig->smoothing($smoothing); my ($x1,$y1,$x2,$y2) = $self->bounds($left,$top); $self->draw_segment($gd, $start,$end, $wig,$start,$end, 1,1, $x1,$y1,$x2,$y2); } sub draw_densefile { my $self = shift; my $feature = shift; my $densefile = shift; my ($gd,$left,$top) = @_; my ($denseoffset) = eval{$feature->get_tag_values('denseoffset')}; my ($densesize) = eval{$feature->get_tag_values('densesize')}; $denseoffset ||= 0; $densesize ||= 1; my $smoothing = $self->get_smoothing; my $smooth_window = $self->smooth_window; my $start = $self->smooth_start; my $end = $self->smooth_end; my $fh = IO::File->new($densefile) or die "can't open $densefile: $!"; eval "require Bio::Graphics::DenseFeature" unless Bio::Graphics::DenseFeature->can('new'); my $dense = Bio::Graphics::DenseFeature->new(-fh=>$fh, -fh_offset => $denseoffset, -start => $feature->start, -smooth => $smoothing, -recsize => $densesize, -window => $smooth_window, ) or die "Can't initialize DenseFeature: $!"; my ($x1,$y1,$x2,$y2) = $self->bounds($left,$top); $self->draw_segment($gd, $start,$end, $dense,$start,$end, 1,1, $x1,$y1,$x2,$y2); } sub draw_segment { my $self = shift; my ($gd, $start,$end, $seg_data, $seg_start,$seg_end, $step,$span, $x1,$y1,$x2,$y2) = @_; # clip, because wig files do no clipping $seg_start = $start if $seg_start < $start; $seg_end = $end if $seg_end > $end; # figure out where we're going to start my $scale = $self->scale; # pixels per base pair my $pixels_per_span = $scale * $span + 1; my $pixels_per_step = 1; my $length = $end-$start+1; # if the feature starts before the data starts, then we need to draw # a line indicating missing data (this only happens if something went # wrong upstream) if ($seg_start > $start) { my $terminus = $self->map_pt($seg_start); $start = $seg_start; $x1 = $terminus; } # if the data ends before the feature ends, then we need to draw # a line indicating missing data (this only happens if something went # wrong upstream) if ($seg_end < $end) { my $terminus = $self->map_pt($seg_end); $end = $seg_end; $x2 = $terminus; } return unless $start < $end; # get data values across the area my $samples = $length < $self->panel->width ? $length : $self->panel->width; my $data = ref $seg_data eq 'ARRAY' ? $seg_data : $seg_data->values($start,$end,$samples); # scale the glyph if the data end before the panel does my $data_width = $end - $start; my $data_width_ratio; if ($data_width < $self->panel->length) { $data_width_ratio = $data_width/$self->panel->length; } else { $data_width_ratio = 1; } return unless $data && ref $data && @$data > 0; my $min_value = $self->min_score; my $max_value = $self->max_score; my ($min,$max,$mean,$stdev) = $self->minmax($data); unless (defined $min_value && defined $max_value) { $min_value ||= $min; $max_value ||= $max; } my $rescale = $self->option('autoscale') eq 'z_score'; my ($scaled_min,$scaled_max); if ($rescale) { my $bound = $self->z_score_bound; $scaled_min = -$bound; $scaled_max = +$bound; } else { ($scaled_min,$scaled_max) = ($min_value,$max_value); } my $t = 0; for (@$data) {$t+=$_} # allocate colors # There are two ways to do this. One is a scale from min to max. The other is a # bipartite scale using one color range from zero to min, and another color range # from 0 to max. The latter behavior is triggered when the config file contains # entries for "pos_color" and "neg_color" and the data ranges from < 0 to > 0. my $poscolor = $self->pos_color; my $negcolor = $self->neg_color; my $data_midpoint = $self->midpoint; $data_midpoint = 0 if $rescale; my $bicolor = $poscolor != $negcolor && $scaled_min < $data_midpoint && $scaled_max > $data_midpoint; my ($rgb_pos,$rgb_neg,$rgb); if ($bicolor) { $rgb_pos = [$self->panel->rgb($poscolor)]; $rgb_neg = [$self->panel->rgb($negcolor)]; } else { $rgb = $scaled_max > $scaled_min ? ([$self->panel->rgb($poscolor)] || [$self->panel->rgb($self->bgcolor)]) : ([$self->panel->rgb($negcolor)] || [$self->panel->rgb($self->bgcolor)]); } my %color_cache; @$data = reverse @$data if $self->flip; if (@$data <= $self->panel->width) { # data fits in width, so just draw it $pixels_per_step = $scale * $step; $pixels_per_step = 1 if $pixels_per_step < 1; my $datapoints_per_base = @$data/$length; my $pixels_per_datapoint = $self->panel->width/@$data * $data_width_ratio; for (my $i = 0; $i <= @$data ; $i++) { my $x = $x1 + $pixels_per_datapoint * $i; my $data_point = $data->[$i]; defined $data_point || next; $data_point = ($data_point-$mean)/$stdev if $rescale; $data_point = $scaled_min if $scaled_min > $data_point; $data_point = $scaled_max if $scaled_max < $data_point; my ($r,$g,$b) = $bicolor ? $data_point > $data_midpoint ? $self->calculate_color($data_point,$rgb_pos, $data_midpoint,$scaled_max) : $self->calculate_color($data_point,$rgb_neg, $data_midpoint,$scaled_min) : $self->calculate_color($data_point,$rgb, $scaled_min,$scaled_max); my $idx = $color_cache{$r,$g,$b} ||= $self->panel->translate_color($r,$g,$b); $self->filled_box($gd,$x,$y1,$x+$pixels_per_datapoint,$y2,$idx,$idx); } } else { # use Sheldon's code to subsample data $pixels_per_step = $scale * $step; my $pixels = 0; # only draw boxes 2 pixels wide, so take the mean value # for n data points that span a 2 pixel interval my $binsize = 2/$pixels_per_step; my $pixelstep = $pixels_per_step; $pixels_per_step *= $binsize; $pixels_per_step *= $data_width_ratio; $pixels_per_span = 2; my $scores = 0; my $defined; for (my $i = $start; $i < $end ; $i += $step) { # draw the box if we have accumulated >= 2 pixel's worth of data. if ($pixels >= 2) { my $data_point = $defined ? $scores/$defined : 0; $scores = 0; $defined = 0; $data_point = $scaled_min if $scaled_min > $data_point; $data_point = $scaled_max if $scaled_max < $data_point; my ($r,$g,$b) = $bicolor ? $data_point > $data_midpoint ? $self->calculate_color($data_point,$rgb_pos, $data_midpoint,$scaled_max) : $self->calculate_color($data_point,$rgb_neg, $data_midpoint,$scaled_min) : $self->calculate_color($data_point,$rgb, $scaled_min,$max_value); my $idx = $color_cache{$r,$g,$b} ||= $self->panel->translate_color($r,$g,$b); $self->filled_box($gd,$x1,$y1,$x1+$pixels_per_span,$y2,$idx,$idx); $x1 += $pixels; $pixels = 0; } my $val = shift @$data; # don't include undef scores in the mean calculation # $scores is the numerator; $defined is the denominator $scores += $val if defined $val; $defined++ if defined $val; # keep incrementing until we exceed 2 pixels # the step is a fraction of a pixel, not an integer $pixels += $pixelstep; } } } sub calculate_color { my $self = shift; my ($s,$rgb,$min_score,$max_score) = @_; $s ||= $min_score; return 0 if $max_score==$min_score; # avoid div by zero my $relative_score = ($s-$min_score)/($max_score-$min_score); $relative_score -= .1 if $relative_score == 1; return map { int(254.9 - (255-$_) * min(max( $relative_score, 0), 1)) } @$rgb; } sub min { $_[0] < $_[1] ? $_[0] : $_[1] } sub max { $_[0] > $_[1] ? $_[0] : $_[1] } # repeated in wiggle_xyplot.pm! sub rel2abs { my $self = shift; my $wig = shift; return $wig if ref $wig; my $path = $self->option('basedir'); return File::Spec->rel2abs($wig,$path); } sub record_label_positions { my $self = shift; my $rlp = $self->option('record_label_positions'); return $rlp if defined $rlp; return 1; } 1; __END__