Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
ensembl
Commits
cdea112b
Commit
cdea112b
authored
23 years ago
by
Web Admin
Browse files
Options
Downloads
Patches
Plain Diff
Added get_LiteAdaptor - a way into the lite database to speed up calls
parent
518df55f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/Bio/EnsEMBL/DBSQL/DBAdaptor.pm
+36
-7
36 additions, 7 deletions
modules/Bio/EnsEMBL/DBSQL/DBAdaptor.pm
with
36 additions
and
7 deletions
modules/Bio/EnsEMBL/DBSQL/DBAdaptor.pm
+
36
−
7
View file @
cdea112b
...
...
@@ -82,7 +82,8 @@ sub new {
my
(
$db
,
$mapdbname
,
$dnadb
,
$litedbname
,
$dnadb
,
$host
,
$driver
,
$user
,
...
...
@@ -92,9 +93,10 @@ sub new {
$perlonlysequences
,
$external
,
$port
,
)
=
$self
->
_rearrange
([
qw(
DBNAME
)
=
$self
->
_rearrange
([
qw(
DBNAME
MAPDBNAME
LITEDBNAME
DNADB
HOST
DRIVER
...
...
@@ -105,7 +107,7 @@ sub new {
PERLONLYSEQUENCES
EXTERNAL
PORT
)
],
@args
);
)
],
@args
);
$db
||
$self
->
throw
("
Database object must have a database name
");
$user
||
$self
->
throw
("
Database object must have a user
");
...
...
@@ -168,6 +170,7 @@ sub new {
$self
->
password
(
$password
);
# following was added on branch; unclear if it is needed:
$self
->
mapdbname
(
$mapdbname
);
# $self->litedbname( $litedbname );
if
(
$perl
&&
$perl
==
1
)
{
$
Bio::EnsEMBL::FeatureFactory::
USE_PERL_ONLY
=
1
;
...
...
@@ -195,6 +198,11 @@ sub new {
};
}
# Store info for connecting to a litedb.
{
$litedbname
||=
'
lite
';
$self
->
{'
_lite_db_name
'}
=
$litedbname
;
}
return
$self
;
# success - we hope!
}
...
...
@@ -773,7 +781,7 @@ sub mapdb {
# mapdb is called), connect to the map database.
if
(
ref
(
$map
)
eq
'
HASH
')
{
require
Bio::EnsEMBL::Map::DBSQL::
Obj
;
$self
->
{'
_mapdb
'}
=
Bio::EnsEMBL::Map::DBSQL::
Obj
->
new
(
%$map
);
$self
->
{'
_mapdb
'}
=
Bio::EnsEMBL::Map::DBSQL::
Obj
->
new
(
%$map
);
}
}
return
$self
->
{'
_mapdb
'};
...
...
@@ -790,8 +798,6 @@ sub mapdbname {
return
$self
->
{
_mapdbname
};
}
=head2 write_Species
Title : write_Species
...
...
@@ -2277,6 +2283,29 @@ sub get_GeneAdaptor {
return
$ga
;
}
=head2 get_LiteAdaptor;
Title : get_LiteAdaptor
Usage : my $la = $db->get_LiteAdaptor;
Function: Returns the lite database object handler
Example :
Returns : Bio::EnsEMBL::DBSQL::LiteAdaptor
Args :
=cut
sub
get_LiteAdaptor
{
my
(
$self
)
=
@_
;
my
$la
;
unless
(
$la
=
$self
->
{'
_lite_adaptor
'})
{
require
Bio::EnsEMBL::DBSQL::
LiteAdaptor
;
$la
=
Bio::EnsEMBL::DBSQL::
LiteAdaptor
->
new
(
$self
);
# $la->{'lite_db_name'} = $self->{'lite_db_name'};
$self
->
{'
_lite_adaptor
'}
=
$la
;
}
return
$la
;
}
sub
get_ExonAdaptor
{
my
(
$self
)
=
@_
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment