Bio-EnsEMBL
view release on metacpan or search on metacpan
lib/Bio/EnsEMBL/DensityType.pm view on Meta::CPAN
=head1 LICENSE
See the NOTICE file distributed with this work for additional information
regarding copyright ownership.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
=cut
=head1 CONTACT
Please email comments or questions to the public Ensembl
developers list at <http://lists.ensembl.org/mailman/listinfo/dev>.
Questions may also be sent to the Ensembl help desk at
<http://www.ensembl.org/Help/Contact>.
=cut
=head1 NAME
Bio::EnsEMBL::DensityType - A type representing a density, or percentage
coverage etc. in a given region.
=head1 SYNOPSIS
use Bio::EnsEMBL::DensityType;
$type = Bio::EnsEMBL::DensityType->new(
-analysis => $analysis,
-blocksize => 1000000,
-value_type => $type
);
=head1 DESCRIPTION
A density type represents a density, or percentage coverage etc. in a
given region.
=head1 METHODS
=cut
use strict;
use warnings;
package Bio::EnsEMBL::DensityType;
$Bio::EnsEMBL::DensityType::VERSION = '114.0.0';
use Bio::EnsEMBL::Storable;
use Bio::EnsEMBL::Utils::Argument qw(rearrange);
use Bio::EnsEMBL::Utils::Exception qw(throw);
use vars qw(@ISA);
@ISA = qw(Bio::EnsEMBL::Storable);
=head2 new
Arg [..] : Takes a set of named arguments
Example : $dt = new Bio::EnsEMBL::DensityType::DensityType(
-analysis => $analysis,
-blocksize => 1e6,
-value_type => 'sum')
Description: Creates a new Density Type object
Returntype : Bio::EnsEMBL::DensityType
Exceptions : blocksize > 0,
valuetype must be 'sum' or 'ratio',
valid analysis object must be passed
Caller : general
Status : Stable
=cut
sub new {
my $class = shift;
my $self = $class->SUPER::new(@_);
my ($analysis, $block_size, $value_type, $region_features) =
rearrange(['ANALYSIS','BLOCK_SIZE','VALUE_TYPE','REGION_FEATURES'],@_);
if($analysis) {
if(!ref($analysis) || !$analysis->isa('Bio::EnsEMBL::Analysis')) {
throw('-ANALYSIS argument must be a Bio::EnsEMBL::Analysis not '.
$analysis);
}
}
if($value_type ne "sum" and $value_type ne "ratio"){
throw('-VALUE_TYPE argument must be "ratio" or "sum" not *'.
$value_type."*");
}
$block_size ||= 0;
$region_features ||= 0;
( run in 3.172 seconds using v1.01-cache-2.11-cpan-75ffa21a3d4 )