Bio::EnsEMBL::DensityPlot
BinValue
Toolbar
Summary
Bio::EnsEMBL::DensityPlot::BinValue
Package variables
No package variables defined.
Included modules
Inherit
Synopsis
Description
This object deals with the raw data to built the density plots
Methods
Methods description
Title : chromosomesnd Usage : $obj->chromosomeend($newval) Function: Returns : value of chromosomeend Args : newvalue (optional) |
Title : ChromosomeStart Usage : $obj->ChromosomeStart($newval) Function: Returns : value of ChromosomeStart Args : newvalue (optional) |
Title : scaledvalue Usage : $obj->scaledvalue($newval) Function: Returns : this object's scaled value Args : newvalue (optional) |
Title : url Usage : $obj->url($newval) Function: Returns : this object's url Args : newvalue (optional) |
Title : value Usage : $obj->value($newval) Function: Returns : value of value Args : newvalue (optional) |
Methods code
sub chromosomeend
{ my $obj = shift;
if( @_ ) {
my $value = shift;
$obj->{'chromosomeend'} = $value;
}
return $obj->{'chromosomeend'}; } |
sub chromosomestart
{ my $obj = shift;
if( @_ ) {
my $value = shift;
$obj->{'chromosomestart'} = $value;
}
return $obj->{'chromosomestart'}; } |
sub new
{ my ($class,@args) = @_;
my $self = {};
bless $self,$class;
return $self; } |
sub scaledvalue
{ my $obj = shift;
if( @_ ) {
my $scaledvalue = shift;
$obj->{'scaledvalue'} = $scaledvalue;
}
return $obj->{'scaledvalue'}; } |
sub url
{ my $obj = shift;
if( @_ ) {
my $url = shift;
$obj->{'url'} = $url;
}
return $obj->{'url'};
}
1; } |
sub value
{ my $obj = shift;
if( @_ ) {
my $value = shift;
$obj->{'value'} = $value;
}
return $obj->{'value'}; } |
General documentation
Copyright (c) 1999-2009 The European Bioinformatics Institute and
Genome Research Limited. All rights reserved.
This software is distributed under a modified Apache license.
For license details, please see
/info/about/code_licence.html