@@ -29,6 +29,8 @@ =head1 DESCRIPTION
29
29
[" start-time=s" => " Limit results to jobs submitted at or after this time" ],
30
30
[" end-time=s" => " Limit results to jobs submitted before this time" ],
31
31
[" genome-id" => " For genome annotation jobs, look up the genome ID if possible" ],
32
+ [" show-output-file" => " Show the output filename" ],
33
+ [" show-output-path" => " Show the output path" ],
32
34
[" user|u=s" => " Limit results to the given user" ],
33
35
[" cluster|c=s" => " Limit results to the given cluster" ],
34
36
[" compute-node|N=s\@ " => " Limit results to the given compute node" , { default => [] }],
@@ -203,6 +205,16 @@ =head1 DESCRIPTION
203
205
push (@cols , { title => " Indexing skipped" });
204
206
}
205
207
208
+ if ($opt -> show_output_file)
209
+ {
210
+ push (@cols , { title => " Ouput file" });
211
+ }
212
+
213
+ if ($opt -> show_output_path)
214
+ {
215
+ push (@cols , { title => " Ouput path" });
216
+ }
217
+
206
218
if ($opt -> parsable && !$opt -> no_header)
207
219
{
208
220
say join (" \t " , map { $_ -> {title } } @cols );
@@ -269,6 +281,8 @@ =head1 DESCRIPTION
269
281
$task -> {req_cpu }, $task -> {req_memory }, $task -> {req_runtime },
270
282
$task -> {nodelist }, int ($task -> {maxrss })) : ());
271
283
push (@row , $genome_id , $indexing_skipped ) if $opt -> genome_id;
284
+ push (@row , $task -> {output_file }) if $opt -> show_output_file;
285
+ push (@row , $task -> {output_path }) if $opt -> show_output_path;
272
286
push (@rows , \@row );
273
287
274
288
if ($opt -> parsable)
0 commit comments