Skip to content
Snippets Groups Projects
Commit 6927f7c7 authored by Ian Longden's avatar Ian Longden
Browse files

small doc changes

parent c9a7c751
No related branches found
No related tags found
No related merge requests found
......@@ -161,12 +161,12 @@ sub prepare{
=head2 db
Arg [1] : (optional) Bio::EnsEMBL::DBSQL::DBConnection $obj
Arg [1] : (optional) Bio::EnsEMBL::DBSQL::DBAdaptor $obj
the database this adaptor is using.
Example : $db = $adaptor->db();
Description: Getter/Setter for the DatabaseConnection that this adaptor is
using.
Returntype : Bio::EnsEMBL::DBSQL::DBConnection
Returntype : Bio::EnsEMBL::DBSQL::DBAdaptor
Exceptions : none
Caller : Adaptors inherited fro BaseAdaptor
......@@ -180,6 +180,19 @@ sub db{
}
=head2 dbc
Arg [1] : (optional) Bio::EnsEMBL::DBSQL::DBConnection $obj
the database this adaptor is using.
Example : $db = $adaptor->db();
Description: Getter/Setter for the DatabaseConnection that this adaptor is
using.
Returntype : Bio::EnsEMBL::DBSQL::DBConnection
Exceptions : none
Caller : Adaptors inherited fro BaseAdaptor
=cut
sub dbc{
my $self = shift;
$self->{'dbc'} = shift if(@_);
......
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