Skip to content
Snippets Groups Projects
Commit fdb511c8 authored by Graham McVicker's avatar Graham McVicker
Browse files

corrected arithmetic error in fetch_all pointed out by vivek

parent 9e824608
No related branches found
No related tags found
No related merge requests found
......@@ -63,6 +63,8 @@ use Bio::EnsEMBL::Slice;
use Bio::EnsEMBL::DBSQL::DBAdaptor;
use Bio::EnsEMBL::Mapper;
use POSIX qw(ceil floor);
use Bio::EnsEMBL::Utils::Exception qw(throw deprecate warning);
use Bio::EnsEMBL::Utils::Cache; #CPAN LRU cache
......@@ -579,11 +581,11 @@ sub fetch_all {
#calculate number of slices to create
$number = ($length-$overlap) / ($max_length-$overlap);
$number = int($number + 1.0); #round up to int (ceiling)
$number = ceil($number); #round up to int
#calculate length of created slices
$multiple = $length / $number;
$multiple = int($multiple); #round down to int (floor)
$multiple = floor($multiple); #round down to int
} else {
#just one slice of the whole seq_region
$number = 1;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment