Skip to content
Snippets Groups Projects
Commit b41e1b64 authored by Leo Gordon's avatar Leo Gordon
Browse files

allow the script to run even if the pipeline has not finished (thanks, Matthieu!)

parent 8384b375
No related branches found
No related tags found
No related merge requests found
......@@ -178,7 +178,7 @@ sub main {
}
}
$events{$birth_date}{$analysis_id} += $offset if $offset > 0;
$events{$death_date}{$analysis_id} -= $offset if $offset > 0;
$events{$death_date}{$analysis_id} -= $offset if ($offset > 0) and $death_date;
}
} else {
my @tmp_dates = @{$dbh->selectall_arrayref('SELECT DATE_FORMAT(DATE_SUB(born, INTERVAL pending_sec SECOND), "%Y-%m-%dT%T"), DATE_FORMAT(born, "%Y-%m-%dT%T"), analysis_id FROM worker JOIN lsf_report USING (meadow_name, process_id) WHERE analysis_id IS NOT NULL AND meadow_type = "LSF" AND pending_sec > 0')};
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment