Skip to content
Snippets Groups Projects
Commit 5c9d3aa0 authored by Magali Ruffier's avatar Magali Ruffier
Browse files

added info about nonsense run

parent 8c903d60
No related branches found
No related tags found
No related merge requests found
......@@ -12,15 +12,19 @@ sub fetch_input {
my $snp_density = $self->jobs('SnpDensity');
my $snp_count = $self->jobs('SnpCount');
my $nonsense = $self->jobs('NonSense');
my @args = (
$snp_density->{successful_jobs},
$snp_density->{failed_jobs},
$snp_count->{successful_jobs},
$snp_count->{failed_jobs},
$nonsense->{successful_jobs},
$nonsense->{failed_jobs},
$self->failed(),
$self->summary($snp_density),
$self->summary($snp_count),
$self->summary($nonsense),
);
my $msg = sprintf(<<'MSG', @args);
......@@ -28,6 +32,7 @@ Your FASTA Pipeline has finished. We have:
* %d species with snp density (%d failed)
* %d species with snp count (%d failed)
* %d species with nonsense attributes (%d failed)
%s
......@@ -39,6 +44,8 @@ Full breakdown follows ...
%s
%s
MSG
$self->param('text', $msg);
return;
......
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