Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
ensembl-gh-mirror
ensembl-hive
Commits
09649a2e
Commit
09649a2e
authored
Aug 20, 2010
by
Leo Gordon
Browse files
typo fix
parent
ba833be5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
1 deletion
+3
-1
modules/Bio/EnsEMBL/Hive/DBSQL/AnalysisStatsAdaptor.pm
modules/Bio/EnsEMBL/Hive/DBSQL/AnalysisStatsAdaptor.pm
+1
-1
modules/Bio/EnsEMBL/Hive/Utils/Stopwatch.pm
modules/Bio/EnsEMBL/Hive/Utils/Stopwatch.pm
+1
-0
modules/Bio/EnsEMBL/Hive/Worker.pm
modules/Bio/EnsEMBL/Hive/Worker.pm
+1
-0
No files found.
modules/Bio/EnsEMBL/Hive/DBSQL/AnalysisStatsAdaptor.pm
View file @
09649a2e
...
...
@@ -267,7 +267,7 @@ sub interval_update_work_done {
avg_input_msec_per_job = (((done_job_count*avg_input_msec_per_job)/$weight_factor + $fetching_msec) / (done_job_count/$weight_factor + $job_count)),
avg_run_msec_per_job = (((done_job_count*avg_run_msec_per_job)/$weight_factor + $running_msec) / (done_job_count/$weight_factor + $job_count)),
avg_output_msec_per_job = (((done_job_count*avg_output_msec_per_job)/$weight_factor + $writing_msec) / (done_job_count/$weight_factor + $job_count)),
done_job_count = done_job_count + $job_count
".
done_job_count = done_job_count + $job_count
WHERE analysis_id= $analysis_id
}
;
...
...
modules/Bio/EnsEMBL/Hive/Utils/Stopwatch.pm
View file @
09649a2e
...
...
@@ -85,6 +85,7 @@ sub restart {
$self
->
accumulated
(
0
);
$self
->
continue
;
return
$self
;
}
sub
get_elapsed
{
# peek without stopping (in case it was running)
...
...
modules/Bio/EnsEMBL/Hive/Worker.pm
View file @
09649a2e
...
...
@@ -646,6 +646,7 @@ sub run_module_with_job {
my
$native_hive_process
=
$runObj
->
isa
("
Bio::EnsEMBL::Hive::Process
");
my
$job_stopwatch
=
Bio::EnsEMBL::Hive::Utils::
Stopwatch
->
new
()
->
restart
();
$self
->
queen
->
dbc
->
query_count
(
0
);
#pass the input_id from the job into the Process object
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment