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
97a3eb44
Commit
97a3eb44
authored
20 years ago
by
Ian Longden
Browse files
Options
Downloads
Patches
Plain Diff
configuration scripts for the registry
parent
4d89cbc7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/Bio/EnsEMBL/Utils/ConfigRegistry.pm
+731
-0
731 additions, 0 deletions
modules/Bio/EnsEMBL/Utils/ConfigRegistry.pm
modules/Bio/EnsEMBL/Utils/User_defined_load.pm
+88
-0
88 additions, 0 deletions
modules/Bio/EnsEMBL/Utils/User_defined_load.pm
with
819 additions
and
0 deletions
modules/Bio/EnsEMBL/Utils/ConfigRegistry.pm
0 → 100644
+
731
−
0
View file @
97a3eb44
This diff is collapsed.
Click to expand it.
modules/Bio/EnsEMBL/Utils/User_defined_load.pm
0 → 100644
+
88
−
0
View file @
97a3eb44
use
strict
;
use
warnings
;
use
Bio::EnsEMBL::
Registry
;
use
Bio::EnsEMBL::Utils::
Argument
qw(rearrange)
;
use
Bio::EnsEMBL::DBSQL::
DBConnection
;
use
Bio::EnsEMBL::DBSQL::
DBAdaptor
;
use
Bio::EnsEMBL::Utils::
Exception
qw(warning throw)
;
=head2 Example off user defined loading
Add new databases by creating the load method and use it by setting
ENSEMBL_REGISTRY to your configuration file.
sub load_dupgene{
my ($class, @args) = @_;
my ($species) = rearrange([qw(SPECIES)],@args);
my $group = 'dupgene';
push (@args, '-group');
push (@args, $group);
my ($spec,$gro) = Bio::EnsEMBL::Registry->check_if_already_there(@args);
if($spec){
print STDERR "already defined returning\n";
return;
}
my $dbc = new Bio::EnsEMBL::DBSQL::DBConnection(@args);
my $dba = new_fast Bio::EnsEMBL::DBSQL::DBAdaptor('-con' => $dbc);
Bio::EnsEMBL::Registry->add_DBAdaptor($species, $group, $dba);
my %pairs = ( 'Analysis' => 'Bio::EnsEMBL::DBSQL::AnalysisAdaptor',
'ArchiveStableId' => 'Bio::EnsEMBL::DBSQL::ArchiveStableIdAdaptor',
'Attribute' => 'Bio::EnsEMBL::DBSQL::AttributeAdaptor',
'AssemblyExceptionFeature' => 'Bio::EnsEMBL::DBSQL::AssemblyExceptionFeatureAdaptor',
'AssemblyMapper' => 'Bio::EnsEMBL::DBSQL::AssemblyMapperAdaptor',
'Blast' => 'Bio::EnsEMBL::External::BlastAdaptor',
'MetaContainer' => 'Bio::EnsEMBL::DBSQL::MetaContainer',
'CoordSystem' => 'Bio::EnsEMBL::DBSQL::CoordSystemAdaptor',
'CompressedSequence' => 'Bio::EnsEMBL::DBSQL::CompressedSequenceAdaptor',
'DBEntry' => 'Bio::EnsEMBL::DBSQL::DBEntryAdaptor',
'DnaAlignFeature' => 'Bio::EnsEMBL::DBSQL::DnaAlignFeatureAdaptor',
'DensityFeature' => 'Bio::EnsEMBL::DBSQL::DensityFeatureAdaptor',
'DensityType' => 'Bio::EnsEMBL::DBSQL::DensityTypeAdaptor',
'Exon' => 'Bio::EnsEMBL::DBSQL::ExonAdaptor',
'Gene' => 'Bio::EnsEMBL::DBSQL::GeneAdaptor',
'KaryotypeBand' => 'Bio::EnsEMBL::DBSQL::KaryotypeBandAdaptor',
'Marker' => 'Bio::EnsEMBL::Map::DBSQL::MarkerAdaptor',
'MarkerFeature' =>
'Bio::EnsEMBL::Map::DBSQL::MarkerFeatureAdaptor',
'MetaCoordContainer' => 'Bio::EnsEMBL::DBSQL::MetaCoordContainer',
'MiscSet' => 'Bio::EnsEMBL::DBSQL::MiscSetAdaptor',
'MiscFeature' => 'Bio::EnsEMBL::DBSQL::MiscFeatureAdaptor',
'PredictionTranscript' =>
'Bio::EnsEMBL::DBSQL::PredictionTranscriptAdaptor',
'PredictionExon' => 'Bio::EnsEMBL::DBSQL::PredictionExonAdaptor',
'ProteinFeature' => 'Bio::EnsEMBL::DBSQL::ProteinFeatureAdaptor',
'ProteinAlignFeature' =>
'Bio::EnsEMBL::DBSQL::ProteinAlignFeatureAdaptor',
'ProxySNP' => 'Bio::EnsEMBL::DBSQL::ProxySNPAdaptor',
'QtlFeature' => 'Bio::EnsEMBL::Map::DBSQL::QtlFeatureAdaptor',
'Qtl' => 'Bio::EnsEMBL::Map::DBSQL::QtlAdaptor',
'RepeatConsensus' => 'Bio::EnsEMBL::DBSQL::RepeatConsensusAdaptor',
'RepeatFeature' => 'Bio::EnsEMBL::DBSQL::RepeatFeatureAdaptor',
'Sequence' => 'Bio::EnsEMBL::DBSQL::SequenceAdaptor',
'SimpleFeature' => 'Bio::EnsEMBL::DBSQL::SimpleFeatureAdaptor',
'Slice' => 'Bio::EnsEMBL::DBSQL::SliceAdaptor',
'SupportingFeature' =>
'Bio::EnsEMBL::DBSQL::SupportingFeatureAdaptor',
'Transcript' => 'Bio::EnsEMBL::DBSQL::TranscriptAdaptor',
'Translation' => 'Bio::EnsEMBL::DBSQL::TranslationAdaptor' );
foreach my $key (keys %pairs){
Bio::EnsEMBL::Registry->add_adaptor($species, $group, $key, $pairs{$key});
}
#if dnadb has been set then for the follwing use it.
foreach my $type (qw(Sequence AssemblyMapper KaryotypeBand RepeatFeature CoordSystem AssemblyExceptionFeature)){
Bio::EnsEMBL::Registry->set_get_via_dnadb_if_set($species,$type);
}
}
=cut
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