Skip to content
Snippets Groups Projects
Commit e9be4d92 authored by Steve Trevanion's avatar Steve Trevanion
Browse files

tidier

parent f236fd57
No related branches found
No related tags found
No related merge requests found
......@@ -1172,16 +1172,15 @@ sub split_chromosomes_by_size {
# push small chromosomes onto $small_chr
push @{ $small_chr }, $slice;
}
if (! $min_big_chr or ($min_big_chr > $slice->length) && $slice->length > $cutoff) {
elsif (! $min_big_chr or ($min_big_chr > $slice->length) ){
$min_big_chr = $slice->length;
}
# push _all_ chromosomes onto $big_chr
push @{ $big_chr }, $slice;
}
my $chr_slices;
$chr_slices->{int($min_big_chr/150)} = $big_chr if $min_big_chr;
$chr_slices->{int($min_big_chr/150)} = $big_chr if $min_big_chr;
$chr_slices->{int($min_small_chr/150)} = $small_chr if $min_small_chr;
return $chr_slices;
}
......
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