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

tweaked pods to make pdoc parser happier

parent 0ecc7327
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,7 @@ Handles mapping between two coordinate systems using the information stored in
the assembly table
=head1 SYNOPSIS
$db = Bio::EnsEMBL::DBSQL::DBAdaptor->new(...);
$asma = $db->get_AssemblyMapperAdaptor();
$csa = $db->get_CoordSystemAdaptor();
......@@ -74,8 +75,11 @@ use Bio::EnsEMBL::Mapper;
use Bio::EnsEMBL::Mapper::RangeRegistry;
use Bio::EnsEMBL::Utils::Exception qw(throw deprecate);
my $CHUNKFACTOR = 20; #2^20 = approx 10^6
my $MAX_PAIR_COUNT = 6000; # max size of the pair cache in the mappers
#2^20 = approx 10^6
my $CHUNKFACTOR = 20;
# max size of the pair cache in the mappers
my $MAX_PAIR_COUNT = 6000;
=head2 new
......
......@@ -33,8 +33,6 @@ Post questions/comments to the Ensembl dev list: ensembl-dev@ebi.ac.uk
=cut
package Bio::EnsEMBL::DBSQL::ExonAdaptor;
use vars qw( @ISA );
......@@ -69,7 +67,7 @@ sub _tables {
}
#=head2 _columns
# _columns
#
# Arg [1] : none
# Example : none
......
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