Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl-hive
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
7
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-hive
Commits
c0cf3a6b
Commit
c0cf3a6b
authored
10 years ago
by
Leo Gordon
Browse files
Options
Downloads
Patches
Plain Diff
bugfix: make sure "foreign" stats are cached as objects
parent
9b4677b9
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/Hive/Utils/Graph.pm
+4
-0
4 additions, 0 deletions
modules/Bio/EnsEMBL/Hive/Utils/Graph.pm
with
4 additions
and
0 deletions
modules/Bio/EnsEMBL/Hive/Utils/Graph.pm
+
4
−
0
View file @
c0cf3a6b
...
...
@@ -189,6 +189,8 @@ sub build {
$target_object
=
$df_rule
->
to_analysis
();
$target_object
->
{'
_foreign
'}
=
1
;
Bio::EnsEMBL::Hive::
Analysis
->
collection
()
->
add
(
$target_object
);
# add it to the collection
my
$foreign_stats
=
$target_object
->
stats
or
die
"
Could not fetch foreign stats for
"
.
$target_object
->
display_name
(
$self
->
hive_dba
);
Bio::EnsEMBL::Hive::
AnalysisStats
->
collection
()
->
add
(
$foreign_stats
);
# add it to the collection
}
if
(
my
$funnel_dataflow_rule
=
$df_rule
->
funnel_dataflow_rule
)
{
...
...
@@ -201,6 +203,8 @@ sub build {
my
$condition_analysis
=
$c_rule
->
condition_analysis
();
$condition_analysis
->
{'
_foreign
'}
=
1
;
Bio::EnsEMBL::Hive::
Analysis
->
collection
()
->
add
(
$condition_analysis
);
# add it to the collection
my
$foreign_stats
=
$condition_analysis
->
stats
or
die
"
Could not fetch foreign stats for
"
.
$condition_analysis
->
display_name
(
$self
->
hive_dba
);
Bio::EnsEMBL::Hive::
AnalysisStats
->
collection
()
->
add
(
$foreign_stats
);
# add it to the collection
}
}
...
...
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