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
d5455aeb
Commit
d5455aeb
authored
17 years ago
by
Patrick Meidl
Browse files
Options
Downloads
Patches
Plain Diff
added matrix autoload capabilities
parent
c3ae0887
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/IdMapping/ScoreBuilder.pm
+25
-13
25 additions, 13 deletions
modules/Bio/EnsEMBL/IdMapping/ScoreBuilder.pm
with
25 additions
and
13 deletions
modules/Bio/EnsEMBL/IdMapping/ScoreBuilder.pm
+
25
−
13
View file @
d5455aeb
...
...
@@ -49,7 +49,7 @@ sub create_shrinked_matrix {
my
$self
=
shift
;
my
$matrix
=
shift
;
my
$mappings
=
shift
;
my
$cache_file
=
shift
;
my
$cache_file
=
shift
;
# base name, extension '.ser' will be added
# argument checks
unless
(
$matrix
and
...
...
@@ -65,26 +65,37 @@ sub create_shrinked_matrix {
throw
('
Need a cache file name.
')
unless
(
$cache_file
);
my
$dump_path
=
path_append
(
$self
->
conf
->
param
('
dumppath
'),
'
matrix
');
$cache_file
.=
'
.ser
';
my
$shrinked_matrix
=
Bio::EnsEMBL::IdMapping::
ScoredMappingMatrix
->
new
(
-
DUMP_PATH
=>
$dump_path
,
-
CACHE_FILE
=>
$cache_file
,
-
AUTO_LOAD
=>
1
,
);
# create lookup hashes for sources and targets in the MappingList
my
%sources
=
();
my
%targets
=
();
# if we already found a saved matrix, just return it
if
(
$shrinked_matrix
->
loaded
)
{
$self
->
logger
->
info
("
Read existing scoring matrix from
$cache_file
.
\n
");
}
else
{
# create lookup hashes for sources and targets in the MappingList
my
%sources
=
();
my
%targets
=
();
foreach
my
$entry
(
@
{
$mappings
->
get_all_Entries
})
{
$sources
{
$entry
->
source
}
=
1
;
$targets
{
$entry
->
target
}
=
1
;
}
foreach
my
$entry
(
@
{
$mappings
->
get_all_Entries
})
{
$sources
{
$entry
->
source
}
=
1
;
$targets
{
$entry
->
target
}
=
1
;
}
# add all entries to shrinked matrix which are not in the MappingList
foreach
my
$entry
(
@
{
$matrix
->
get_all_Entries
})
{
unless
(
$sources
{
$entry
->
source
}
or
$targets
{
$entry
->
target
})
{
$shrinked_matrix
->
add_Entry
(
$entry
);
# add all entries to shrinked matrix which are not in the MappingList
foreach
my
$entry
(
@
{
$matrix
->
get_all_Entries
})
{
unless
(
$sources
{
$entry
->
source
}
or
$targets
{
$entry
->
target
})
{
$shrinked_matrix
->
add_Entry
(
$entry
);
}
}
}
# log shrinking stats
...
...
@@ -94,6 +105,7 @@ sub create_shrinked_matrix {
$shrinked_matrix
->
get_target_count
.
"
\n
");
$self
->
logger
->
info
('
Entries
'
.
$matrix
->
get_entry_count
.
'
-->
'
.
$shrinked_matrix
->
get_entry_count
.
"
\n
");
$self
->
logger
->
info
('
New mappings:
'
.
$mappings
->
get_entry_count
.
"
\n\n
");
return
$shrinked_matrix
;
}
...
...
@@ -156,7 +168,7 @@ sub log_matrix_stats {
}
my
$fmt1
=
"
%-40s%10.0f
\n
";
my
$fmt2
=
"
%-40s%10.
2
f
\n
";
my
$fmt2
=
"
%-40s%10.
5
f
\n
";
$self
->
logger
->
info
(
sprintf
(
$fmt1
,
"
Scoring matrix entries:
",
$matrix
->
get_entry_count
),
1
);
...
...
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