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
474eb0d1
Commit
474eb0d1
authored
13 years ago
by
Kieron Taylor
Browse files
Options
Downloads
Patches
Plain Diff
Major POD update, removal of reference to Ensembl::Lite
parent
c996feea
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/Utils/ConfigRegistry.pm
+48
-16
48 additions, 16 deletions
modules/Bio/EnsEMBL/Utils/ConfigRegistry.pm
with
48 additions
and
16 deletions
modules/Bio/EnsEMBL/Utils/ConfigRegistry.pm
+
48
−
16
View file @
474eb0d1
...
...
@@ -50,18 +50,6 @@ use Bio::EnsEMBL::DBSQL::DBAdaptor;
use
Bio::EnsEMBL::Utils::
Exception
qw(warning throw deprecate stack_trace_dump)
;
=head2 load_core, load_otherfeatures, load_vega, load_compara, load_pipeline, load_SNP, load_lite
Arg [1] : DBAdaptor with DBConnection alredy attached
Returntype : DBAdaptor;
Exceptions : none
=cut
#
# 1) core. no need to add dnadb
# 2) not core add dnadb
# 3)
#
sub
gen_load
{
...
...
@@ -252,22 +240,66 @@ sub load_and_attach_dnadb_to_core {
}
=head2 load_core
Arg [1] : DBAdaptor with DBConnection already attached
Returntype : DBAdaptor
Exceptions : none
=cut
sub
load_core
{
load_adaptors
(
@
_
)
}
#
# 1) core. no need to add dnadb
# 2) not core add dnadb
# 3)
#
=head2 load_compara
Arg [1] : DBAdaptor with DBConnection already attached
Returntype : DBAdaptor
Exceptions : none
=cut
sub
load_compara
{
load_adaptors
(
@
_
)
}
=head2 load_hive
Arg [1] : DBAdaptor with DBConnection already attached
Returntype : DBAdaptor
Exceptions : none
=cut
sub
load_hive
{
load_adaptors
(
@
_
)
}
=head2 load_pipeline
Arg [1] : DBAdaptor with DBConnection already attached
Returntype : DBAdaptor
Exceptions : none
=cut
sub
load_pipeline
{
load_adaptors
(
@
_
)
}
sub
load_lite
{
load_adaptors
(
@
_
)
}
=head2 load_SNP
Arg [1] : DBAdaptor with DBConnection already attached
Returntype : DBAdaptor
Exceptions : none
=cut
sub
load_SNP
{
load_adaptors
(
@
_
)
}
sub
load_variation
{
load_and_attach_dnadb_to_core
(
@
_
)
}
sub
load_funcgen
{
load_and_attach_dnadb_to_core
(
@
_
)
}
sub
load_haplotype
{
load_adaptors
(
@
_
)
}
sub
load_ontology
{
load_adaptors
(
@
_
)
}
# these that need to attach to the core to get the sequen
s
e data
# these that need to attach to the core to get the sequen
c
e data
sub
load_estgene
{
load_and_attach_dnadb_to_core
(
@
_
)
}
sub
load_variation
{
load_and_attach_dnadb_to_core
(
@
_
)
}
sub
load_funcgen
{
load_and_attach_dnadb_to_core
(
@
_
)
}
=head2 load_otherfeatures
Arg [1] : DBAdaptor with DBConnection alredy attached
Returntype : DBAdaptor
Exceptions : none
=cut
sub
load_otherfeatures
{
load_and_attach_dnadb_to_core
(
@
_
)
}
=head2 load_vega
Arg [1] : DBAdaptor with DBConnection already attached
Returntype : DBAdaptor
Exceptions : none
=cut
sub
load_vega
{
load_and_attach_dnadb_to_core
(
@
_
)
}
...
...
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